wireshark-filter - Wireshark filter syntax and reference
wireshark [other options] [ -R "filter expression" ]
tshark [other options] [ -R "filter expression" ]
Wireshark and TShark share a powerful filter engine that helps remove the noise from a packet trace and lets you see only the packets that interest you. If a packet meets the requirements expressed in your filter, then it is displayed in the list of packets. Display filters let you compare the fields within a protocol against a specific value, compare fields against fields, and check the existence of specified fields or protocols.
Filters are also used by other features such as statistics generation and packet list colorization (the latter is only available to Wireshark). This manual page describes their syntax and provides a comprehensive reference of filter fields.
The simplest filter allows you to check for the existence of a protocol or field. If you want to see all packets which contain the IP protocol, the filter would be "ip" (without the quotation marks). To see all packets that contain a Token-Ring RIF field, use "tr.rif".
Think of a protocol or field in a filter as implicitly having the "exists" operator.
Note: all protocol and field names that are available in Wireshark and TShark filters are listed in the comprehensive FILTER PROTOCOL REFERENCE (see below).
Fields can also be compared against values. The comparison operators can be expressed either through English-like abbreviations or through C-like symbols:
eq, == Equal
ne, != Not Equal
gt, > Greater Than
lt, < Less Than
ge, >= Greater than or Equal to
le, <= Less than or Equal to
Additional operators exist expressed only in English, not C-like syntax:
contains Does the protocol, field or slice contain a value
matches Does the protocol or text string match the given Perl
regular expression
The "contains" operator allows a filter to search for a sequence of characters, expressed as a string (quoted or unquoted), or bytes, expressed as a byte array. For example, to search for a given HTTP URL in a capture, the following filter can be used:
http contains "http://www.wireshark.org"
The "contains" operator cannot be used on atomic fields, such as numbers or IP addresses.
The "matches" operator allows a filter to apply to a specified Perl-compatible regular expression (PCRE). The "matches" operator is only implemented for protocols and for protocol fields with a text string representation. For example, to search for a given WAP WSP User-Agent, you can write:
wsp.user_agent matches "(?i)cldc"
This example shows an interesting PCRE feature: pattern match options have to
be specified with the (?option) construct. For instance, (?i) performs
a case-insensitive pattern match. More information on PCRE can be found in the
pcrepattern(3) man page (Perl Regular Expressions are explained in
http://www.perldoc.com/perl5.8.0/pod/perlre.html).
Note: the "matches" operator is only available if Wireshark or TShark have been compiled with the PCRE library. This can be checked by running:
wireshark -v
tshark -v
or selecting the "About Wireshark" item from the "Help" menu in Wireshark.
The filter language has the following functions:
upper(string-field) - converts a string field to uppercase
lower(string-field) - converts a string field to lowercase
upper() and lower() are useful for performing case-insensitive string
comparisons. For example:
upper(ncp.nds_stream_name) contains "MACRO"
lower(mount.dump.hostname) == "angel"
Each protocol field is typed. The types are:
Unsigned integer (8-bit, 16-bit, 24-bit, or 32-bit)
Signed integer (8-bit, 16-bit, 24-bit, or 32-bit)
Boolean
Ethernet address (6 bytes)
Byte array
IPv4 address
IPv6 address
IPX network number
Text string
Double-precision floating point number
An integer may be expressed in decimal, octal, or hexadecimal notation. The following three display filters are equivalent:
frame.pkt_len > 10
frame.pkt_len > 012
frame.pkt_len > 0xa
Boolean values are either true or false. In a display filter expression testing the value of a Boolean field, "true" is expressed as 1 or any other non-zero value, and "false" is expressed as zero. For example, a token-ring packet's source route field is Boolean. To find any source-routed packets, a display filter would be:
tr.sr == 1
Non source-routed packets can be found with:
tr.sr == 0
Ethernet addresses and byte arrays are represented by hex digits. The hex digits may be separated by colons, periods, or hyphens:
eth.dst eq ff:ff:ff:ff:ff:ff
aim.data == 0.1.0.d
fddi.src == aa-aa-aa-aa-aa-aa
echo.data == 7a
IPv4 addresses can be represented in either dotted decimal notation or by using the hostname:
ip.dst eq www.mit.edu
ip.src == 192.168.1.1
IPv4 addresses can be compared with the same logical relations as numbers: eq, ne, gt, ge, lt, and le. The IPv4 address is stored in host order, so you do not have to worry about the endianness of an IPv4 address when using it in a display filter.
Classless InterDomain Routing (CIDR) notation can be used to test if an IPv4 address is in a certain subnet. For example, this display filter will find all packets in the 129.111 Class-B network:
ip.addr == 129.111.0.0/16
Remember, the number after the slash represents the number of bits used to represent the network. CIDR notation can also be used with hostnames, as in this example of finding IP addresses on the same Class C network as 'sneezy':
ip.addr eq sneezy/24
The CIDR notation can only be used on IP addresses or hostnames, not in variable names. So, a display filter like "ip.src/24 == ip.dst/24" is not valid (yet).
IPX networks are represented by unsigned 32-bit integers. Most likely you will be using hexadecimal when testing IPX network values:
ipx.src.net == 0xc0a82c00
Strings are enclosed in double quotes:
http.request.method == "POST"
Inside double quotes, you may use a backslash to embed a double quote or an arbitrary byte represented in either octal or hexadecimal.
browser.comment == "An embedded \" double-quote"
Use of hexadecimal to look for "HEAD":
http.request.method == "\x48EAD"
Use of octal to look for "HEAD":
http.request.method == "\110EAD"
This means that you must escape backslashes with backslashes inside double quotes.
smb.path contains "\\\\SERVER\\SHARE"
looks for \\SERVER\SHARE in "smb.path".
You can take a slice of a field if the field is a text string or a byte array. For example, you can filter on the vendor portion of an ethernet address (the first three bytes) like this:
eth.src[0:3] == 00:00:83
Another example is:
http.content_type[0:4] == "text"
You can use the slice operator on a protocol name, too. The "frame" protocol can be useful, encompassing all the data captured by Wireshark or TShark.
token[0:5] ne 0.0.0.1.1
llc[0] eq aa
frame[100-199] contains "wireshark"
The following syntax governs slices:
[i:j] i = start_offset, j = length
[i-j] i = start_offset, j = end_offset, inclusive.
[i] i = start_offset, length = 1
[:j] start_offset = 0, length = j
[i:] start_offset = i, end_offset = end_of_field
Offsets can be negative, in which case they indicate the offset from the end of the field. The last byte of the field is at offset -1, the last but one byte is at offset -2, and so on. Here's how to check the last four bytes of a frame:
frame[-4:4] == 0.1.2.3
or
frame[-4:] == 0.1.2.3
You can concatenate slices using the comma operator:
ftp[1,3-5,9:] == 01:03:04:05:09:0a:0b
This concatenates offset 1, offsets 3-5, and offset 9 to the end of the ftp data.
If a field is a text string or a byte array, it can be expressed in whichever way is most convenient.
So, for instance, the following filters are equivalent:
http.request.method == "GET"
http.request.method == 47.45.54
A range can also be expressed in either way:
frame[60:2] gt 50.51
frame[60:2] gt "PQ"
It is also possible to define tests with bit field operations. Currently the following bit field operation is supported:
bitwise_and, & Bitwise AND
The bitwise AND operation allows testing to see if one or more bits are set. Bitwise AND operates on integer protocol fields and slices.
When testing for TCP SYN packets, you can write:
tcp.flags & 0x02
That expression will match all packets that contain a "tcp.flags" field with the 0x02 bit, i.e. the SYN bit, set.
Similarly, filtering for all WSP GET and extended GET methods is achieved with:
wsp.pdu_type & 0x40
When using slices, the bit mask must be specified as a byte string, and it must have the same number of bytes as the slice itself, as in:
ip[42:2] & 40:ff
Tests can be combined using logical expressions. These too are expressable in C-like syntax or with English-like abbreviations:
and, && Logical AND
or, || Logical OR
not, ! Logical NOT
Expressions can be grouped by parentheses as well. The following are all valid display filter expressions:
tcp.port == 80 and ip.src == 192.168.2.1
not llc
http and frame[100-199] contains "wireshark"
(ipx.src.net == 0xbad && ipx.src.node == 0.0.0.0.0.1) || ip
Remember that whenever a protocol or field name occurs in an expression, the "exists" operator is implicitly called. The "exists" operator has the highest priority. This means that the first filter expression must be read as "show me the packets for which tcp.port exists and equals 80, and ip.src exists and equals 192.168.2.1". The second filter expression means "show me the packets where not (llc exists)", or in other words "where llc does not exist" and hence will match all packets that do not contain the llc protocol. The third filter expression includes the constraint that offset 199 in the frame exists, in other words the length of the frame is at least 200.
A special caveat must be given regarding fields that occur more than once per packet. "ip.addr" occurs twice per IP packet, once for the source address, and once for the destination address. Likewise, "tr.rif.ring" fields can occur more than once per packet. The following two expressions are not equivalent:
ip.addr ne 192.168.4.1
not ip.addr eq 192.168.4.1
The first filter says "show me packets where an ip.addr exists that does not equal 192.168.4.1". That is, as long as one ip.addr in the packet does not equal 192.168.4.1, the packet passes the display filter. The other ip.addr could equal 192.168.4.1 and the packet would still be displayed. The second filter says "don't show me any packets that have an ip.addr field equal to 192.168.4.1". If one ip.addr is 192.168.4.1, the packet does not pass. If neither ip.addr field is 192.168.4.1, then the packet is displayed.
It is easy to think of the 'ne' and 'eq' operators as having an implict "exists" modifier when dealing with multiply-recurring fields. "ip.addr ne 192.168.4.1" can be thought of as "there exists an ip.addr that does not equal 192.168.4.1". "not ip.addr eq 192.168.4.1" can be thought of as "there does not exist an ip.addr equal to 192.168.4.1".
Be careful with multiply-recurring fields; they can be confusing.
Care must also be taken when using the display filter to remove noise from the packet trace. If, for example, you want to filter out all IP multicast packets to address 224.1.2.3, then using:
ip.dst ne 224.1.2.3
may be too restrictive. Filtering with "ip.dst" selects only those IP packets that satisfy the rule. Any other packets, including all non-IP packets, will not be displayed. To display the non-IP packets as well, you can use one of the following two expressions:
not ip or ip.dst ne 224.1.2.3
not ip.addr eq 224.1.2.3
The first filter uses "not ip" to include all non-IP packets and then lets "ip.dst ne 224.1.2.3" filter out the unwanted IP packets. The second filter has already been explained above where filtering with multiply occuring fields was discussed.
Each entry below provides an abbreviated protocol or field name. Every one of these fields can be used in a display filter. The type of the field is also given.
3comxns.type Type
Unsigned 16-bit integer
a11.ackstat Reply Status
Unsigned 8-bit integer
A11 Registration Ack Status.
a11.auth.auth Authenticator
Byte array
Authenticator.
a11.auth.spi SPI
Unsigned 32-bit integer
Authentication Header Security Parameter Index.
a11.b Broadcast Datagrams
Boolean
Broadcast Datagrams requested
a11.coa Care of Address
IPv4 address
Care of Address.
a11.code Reply Code
Unsigned 8-bit integer
A11 Registration Reply code.
a11.d Co-located Care-of Address
Boolean
MN using Co-located Care-of address
a11.ext.apptype Application Type
Unsigned 8-bit integer
Application Type.
a11.ext.ase.key GRE Key
Unsigned 32-bit integer
GRE Key.
a11.ext.ase.len Entry Length
Unsigned 8-bit integer
Entry Length.
a11.ext.ase.pcfip PCF IP Address
IPv4 address
PCF IP Address.
a11.ext.ase.ptype GRE Protocol Type
Unsigned 16-bit integer
GRE Protocol Type.
a11.ext.ase.srid Service Reference ID (SRID)
Unsigned 8-bit integer
Service Reference ID (SRID).
a11.ext.ase.srvopt Service Option
Unsigned 16-bit integer
Service Option.
a11.ext.auth.subtype Gen Auth Ext SubType
Unsigned 8-bit integer
Mobile IP Auth Extension Sub Type.
a11.ext.canid CANID
Byte array
CANID
a11.ext.code Reply Code
Unsigned 8-bit integer
PDSN Code.
a11.ext.dormant All Dormant Indicator
Unsigned 16-bit integer
All Dormant Indicator.
a11.ext.fqi.dscp Forward DSCP
Unsigned 8-bit integer
Forward Flow DSCP.
a11.ext.fqi.entrylen Entry Length
Unsigned 8-bit integer
Forward Entry Length.
a11.ext.fqi.flags Flags
Unsigned 8-bit integer
Forward Flow Entry Flags.
a11.ext.fqi.flowcount Forward Flow Count
Unsigned 8-bit integer
Forward Flow Count.
a11.ext.fqi.flowid Forward Flow Id
Unsigned 8-bit integer
Forward Flow Id.
a11.ext.fqi.flowstate Forward Flow State
Unsigned 8-bit integer
Forward Flow State.
a11.ext.fqi.graqos Granted QoS
Byte array
Forward Granted QoS.
a11.ext.fqi.graqoslen Granted QoS Length
Unsigned 8-bit integer
Forward Granted QoS Length.
a11.ext.fqi.length Length
Unsigned 16-bit integer
a11.ext.fqi.reqqos Requested QoS
Byte array
Forward Requested QoS.
a11.ext.fqi.reqqoslen Requested QoS Length
Unsigned 8-bit integer
Forward Requested QoS Length.
a11.ext.fqi.srid SRID
Unsigned 8-bit integer
Forward Flow Entry SRID.
a11.ext.fqui.flowcount Forward QoS Update Flow Count
Unsigned 8-bit integer
Forward QoS Update Flow Count.
a11.ext.fqui.updatedqos Foward Updated QoS Sub-Blob
Byte array
Foward Updated QoS Sub-Blob.
a11.ext.fqui.updatedqoslen Foward Updated QoS Sub-Blob Length
Unsigned 8-bit integer
Foward Updated QoS Sub-Blob Length.
a11.ext.key Key
Unsigned 32-bit integer
Session Key.
a11.ext.len Extension Length
Unsigned 16-bit integer
Mobile IP Extension Length.
a11.ext.mnsrid MNSR-ID
Unsigned 16-bit integer
MNSR-ID
a11.ext.msid MSID(BCD)
String
MSID(BCD).
a11.ext.msid_len MSID Length
Unsigned 8-bit integer
MSID Length.
a11.ext.msid_type MSID Type
Unsigned 16-bit integer
MSID Type.
a11.ext.panid PANID
Byte array
PANID
a11.ext.ppaddr Anchor P-P Address
IPv4 address
Anchor P-P Address.
a11.ext.ptype Protocol Type
Unsigned 16-bit integer
Protocol Type.
a11.ext.qosmode QoS Mode
Unsigned 8-bit integer
QoS Mode.
a11.ext.rqi.entrylen Entry Length
Unsigned 8-bit integer
Reverse Flow Entry Length.
a11.ext.rqi.flowcount Reverse Flow Count
Unsigned 8-bit integer
Reverse Flow Count.
a11.ext.rqi.flowid Reverse Flow Id
Unsigned 8-bit integer
Reverse Flow Id.
a11.ext.rqi.flowstate Flow State
Unsigned 8-bit integer
Reverse Flow State.
a11.ext.rqi.graqos Granted QoS
Byte array
Reverse Granted QoS.
a11.ext.rqi.graqoslen Granted QoS Length
Unsigned 8-bit integer
Reverse Granted QoS Length.
a11.ext.rqi.length Length
Unsigned 16-bit integer
a11.ext.rqi.reqqos Requested QoS
Byte array
Reverse Requested QoS.
a11.ext.rqi.reqqoslen Requested QoS Length
Unsigned 8-bit integer
Reverse Requested QoS Length.
a11.ext.rqi.srid SRID
Unsigned 8-bit integer
Reverse Flow Entry SRID.
a11.ext.rqui.flowcount Reverse QoS Update Flow Count
Unsigned 8-bit integer
Reverse QoS Update Flow Count.
a11.ext.rqui.updatedqos Reverse Updated QoS Sub-Blob
Byte array
Reverse Updated QoS Sub-Blob.
a11.ext.rqui.updatedqoslen Reverse Updated QoS Sub-Blob Length
Unsigned 8-bit integer
Reverse Updated QoS Sub-Blob Length.
a11.ext.sidver Session ID Version
Unsigned 8-bit integer
Session ID Version
a11.ext.sqp.profile Subscriber QoS Profile
Byte array
Subscriber QoS Profile.
a11.ext.sqp.profilelen Subscriber QoS Profile Length
Byte array
Subscriber QoS Profile Length.
a11.ext.srvopt Service Option
Unsigned 16-bit integer
Service Option.
a11.ext.type Extension Type
Unsigned 8-bit integer
Mobile IP Extension Type.
a11.ext.vid Vendor ID
Unsigned 32-bit integer
Vendor ID.
a11.extension Extension
Byte array
Extension
a11.flags Flags
Unsigned 8-bit integer
a11.g GRE
Boolean
MN wants GRE encapsulation
a11.haaddr Home Agent
IPv4 address
Home agent IP Address.
a11.homeaddr Home Address
IPv4 address
Mobile Node's home address.
a11.ident Identification
Byte array
MN Identification.
a11.life Lifetime
Unsigned 16-bit integer
A11 Registration Lifetime.
a11.m Minimal Encapsulation
Boolean
MN wants Minimal encapsulation
a11.nai NAI
String
NAI
a11.s Simultaneous Bindings
Boolean
Simultaneous Bindings Allowed
a11.t Reverse Tunneling
Boolean
Reverse tunneling requested
a11.type Message Type
Unsigned 8-bit integer
A11 Message type.
a11.v Van Jacobson
Boolean
Van Jacobson
njack.getresp.unknown1 Unknown1
Unsigned 8-bit integer
njack.magic Magic
String
njack.set.length SetLength
Unsigned 16-bit integer
njack.set.salt Salt
Unsigned 32-bit integer
njack.setresult SetResult
Unsigned 8-bit integer
njack.tlv.addtagscheme TlvAddTagScheme
Unsigned 8-bit integer
njack.tlv.authdata Authdata
Byte array
njack.tlv.contermode TlvTypeCountermode
Unsigned 8-bit integer
njack.tlv.data TlvData
Byte array
njack.tlv.devicemac TlvTypeDeviceMAC
6-byte Hardware (MAC) Address
njack.tlv.dhcpcontrol TlvTypeDhcpControl
Unsigned 8-bit integer
njack.tlv.length TlvLength
Unsigned 8-bit integer
njack.tlv.maxframesize TlvTypeMaxframesize
Unsigned 8-bit integer
njack.tlv.portingressmode TlvTypePortingressmode
Unsigned 8-bit integer
njack.tlv.powerforwarding TlvTypePowerforwarding
Unsigned 8-bit integer
njack.tlv.scheduling TlvTypeScheduling
Unsigned 8-bit integer
njack.tlv.snmpwrite TlvTypeSnmpwrite
Unsigned 8-bit integer
njack.tlv.type TlvType
Unsigned 8-bit integer
njack.tlv.typeip TlvTypeIP
IPv4 address
njack.tlv.typestring TlvTypeString
String
njack.tlv.version TlvFwVersion
IPv4 address
njack.type Type
Unsigned 8-bit integer
vlan.cfi CFI
Unsigned 16-bit integer
Canonical Format Identifier
vlan.etype Type
Unsigned 16-bit integer
Ethertype
vlan.id ID
Unsigned 16-bit integer
VLAN ID
vlan.len Length
Unsigned 16-bit integer
vlan.priority Priority
Unsigned 16-bit integer
User Priority
vlan.trailer Trailer
Byte array
VLAN Trailer
eapol.keydes.data WPA Key
Byte array
WPA Key Data
eapol.keydes.datalen WPA Key Length
Unsigned 16-bit integer
WPA Key Data Length
eapol.keydes.id WPA Key ID
Byte array
WPA Key ID(RSN Reserved)
eapol.keydes.index.indexnum Index Number
Unsigned 8-bit integer
Key Index number
eapol.keydes.index.keytype Key Type
Boolean
Key Type (unicast/broadcast)
eapol.keydes.key Key
Byte array
Key
eapol.keydes.key_info Key Information
Unsigned 16-bit integer
WPA key info
eapol.keydes.key_info.encr_key_data Encrypted Key Data flag
Boolean
Encrypted Key Data flag
eapol.keydes.key_info.error Error flag
Boolean
Error flag
eapol.keydes.key_info.install Install flag
Boolean
Install flag
eapol.keydes.key_info.key_ack Key Ack flag
Boolean
Key Ack flag
eapol.keydes.key_info.key_index Key Index
Unsigned 16-bit integer
Key Index (0-3) (RSN: Reserved)
eapol.keydes.key_info.key_mic Key MIC flag
Boolean
Key MIC flag
eapol.keydes.key_info.key_type Key Type
Boolean
Key Type (Pairwise or Group)
eapol.keydes.key_info.keydes_ver Key Descriptor Version
Unsigned 16-bit integer
Key Descriptor Version Type
eapol.keydes.key_info.request Request flag
Boolean
Request flag
eapol.keydes.key_info.secure Secure flag
Boolean
Secure flag
eapol.keydes.key_iv Key IV
Byte array
Key Initialization Vector
eapol.keydes.key_signature Key Signature
Byte array
Key Signature
eapol.keydes.keylen Key Length
Unsigned 16-bit integer
Key Length
eapol.keydes.mic WPA Key MIC
Byte array
WPA Key Message Integrity Check
eapol.keydes.nonce Nonce
Byte array
WPA Key Nonce
eapol.keydes.replay_counter Replay Counter
Unsigned 64-bit integer
Replay Counter
eapol.keydes.rsc WPA Key RSC
Byte array
WPA Key Receive Sequence Counter
eapol.keydes.type Descriptor Type
Unsigned 8-bit integer
Key Descriptor Type
eapol.len Length
Unsigned 16-bit integer
Length
eapol.type Type
Unsigned 8-bit integer
eapol.version Version
Unsigned 8-bit integer
alcap.acc.level Congestion Level
Unsigned 8-bit integer
alcap.alc.bitrate.avg.bw Average Backwards Bit Rate
Unsigned 16-bit integer
alcap.alc.bitrate.avg.fw Average Forward Bit Rate
Unsigned 16-bit integer
alcap.alc.bitrate.max.bw Maximum Backwards Bit Rate
Unsigned 16-bit integer
alcap.alc.bitrate.max.fw Maximum Forward Bit Rate
Unsigned 16-bit integer
alcap.alc.sdusize.avg.bw Average Backwards CPS SDU Size
Unsigned 8-bit integer
alcap.alc.sdusize.avg.fw Average Forward CPS SDU Size
Unsigned 8-bit integer
alcap.alc.sdusize.max.bw Maximum Backwards CPS SDU Size
Unsigned 8-bit integer
alcap.alc.sdusize.max.fw Maximum Forward CPS SDU Size
Unsigned 8-bit integer
alcap.cau.coding Cause Coding
Unsigned 8-bit integer
alcap.cau.diag Diagnostic
Byte array
alcap.cau.diag.field_num Field Number
Unsigned 8-bit integer
alcap.cau.diag.len Length
Unsigned 8-bit integer
Diagnostics Length
alcap.cau.diag.msg Message Identifier
Unsigned 8-bit integer
alcap.cau.diag.param Parameter Identifier
Unsigned 8-bit integer
alcap.cau.value Cause Value (ITU)
Unsigned 8-bit integer
alcap.ceid.cid CID
Unsigned 8-bit integer
alcap.ceid.pathid Path ID
Unsigned 32-bit integer
alcap.compat Message Compatibility
Byte array
alcap.compat.general.ii General II
Unsigned 8-bit integer
Instruction Indicator
alcap.compat.general.sni General SNI
Unsigned 8-bit integer
Send Notificaation Indicator
alcap.compat.pass.ii Pass-On II
Unsigned 8-bit integer
Instruction Indicator
alcap.compat.pass.sni Pass-On SNI
Unsigned 8-bit integer
Send Notificaation Indicator
alcap.cp.level Level
Unsigned 8-bit integer
alcap.dnsea.addr Address
Byte array
alcap.dsaid DSAID
Unsigned 32-bit integer
Destination Service Association ID
alcap.fbw.bitrate.bw CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.fbw.bitrate.fw CPS Forward Bitrate
Unsigned 24-bit integer
alcap.fbw.bucket_size.bw Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.fbw.bucket_size.fw Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.fbw.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.fbw.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
alcap.hc.codepoint Codepoint
Unsigned 8-bit integer
alcap.leg.cause Leg's cause value in REL
Unsigned 8-bit integer
alcap.leg.cid Leg's channel id
Unsigned 32-bit integer
alcap.leg.dnsea Leg's destination NSAP
String
alcap.leg.dsaid Leg's ECF OSA id
Unsigned 32-bit integer
alcap.leg.msg a message of this leg
Frame number
alcap.leg.onsea Leg's originating NSAP
String
alcap.leg.osaid Leg's ERQ OSA id
Unsigned 32-bit integer
alcap.leg.pathid Leg's path id
Unsigned 32-bit integer
alcap.leg.sugr Leg's SUGR
Unsigned 32-bit integer
alcap.msg_type Message Type
Unsigned 8-bit integer
alcap.onsea.addr Address
Byte array
alcap.osaid OSAID
Unsigned 32-bit integer
Originating Service Association ID
alcap.param Parameter
Unsigned 8-bit integer
Parameter Id
alcap.param.len Length
Unsigned 8-bit integer
Parameter Length
alcap.pfbw.bitrate.bw CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.pfbw.bitrate.fw CPS Forward Bitrate
Unsigned 24-bit integer
alcap.pfbw.bucket_size.bw Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.pfbw.bucket_size.fw Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.pfbw.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.pfbw.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
alcap.plc.bitrate.avg.bw Average Backwards Bit Rate
Unsigned 16-bit integer
alcap.plc.bitrate.avg.fw Average Forward Bit Rate
Unsigned 16-bit integer
alcap.plc.bitrate.max.bw Maximum Backwards Bit Rate
Unsigned 16-bit integer
alcap.plc.bitrate.max.fw Maximum Forward Bit Rate
Unsigned 16-bit integer
alcap.plc.sdusize.max.bw Maximum Backwards CPS SDU Size
Unsigned 8-bit integer
alcap.plc.sdusize.max.fw Maximum Forward CPS SDU Size
Unsigned 8-bit integer
alcap.pssiae.cas CAS
Unsigned 8-bit integer
Channel Associated Signalling
alcap.pssiae.cmd Circuit Mode
Unsigned 8-bit integer
alcap.pssiae.dtmf DTMF
Unsigned 8-bit integer
alcap.pssiae.fax Fax
Unsigned 8-bit integer
Facsimile
alcap.pssiae.frm Frame Mode
Unsigned 8-bit integer
alcap.pssiae.lb Loopback
Unsigned 8-bit integer
alcap.pssiae.max_fmdata_len Max Len of FM Data
Unsigned 16-bit integer
alcap.pssiae.mfr1 Multi-Frequency R1
Unsigned 8-bit integer
alcap.pssiae.mfr2 Multi-Frequency R2
Unsigned 8-bit integer
alcap.pssiae.oui OUI
Byte array
Organizational Unique Identifier
alcap.pssiae.pcm PCM Mode
Unsigned 8-bit integer
alcap.pssiae.profile.id Profile Id
Unsigned 8-bit integer
alcap.pssiae.profile.type Profile Type
Unsigned 8-bit integer
I.366.2 Profile Type
alcap.pssiae.rc Rate Conctrol
Unsigned 8-bit integer
alcap.pssiae.syn Syncronization
Unsigned 8-bit integer
Transport of synchronization of change in SSCS operation
alcap.pssime.frm Frame Mode
Unsigned 8-bit integer
alcap.pssime.lb Loopback
Unsigned 8-bit integer
alcap.pssime.max Max Len
Unsigned 16-bit integer
alcap.pssime.mult Multiplier
Unsigned 8-bit integer
alcap.pt.codepoint QoS Codepoint
Unsigned 8-bit integer
alcap.pvbws.bitrate.bw Peak CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.pvbws.bitrate.fw Peak CPS Forward Bitrate
Unsigned 24-bit integer
alcap.pvbws.bucket_size.bw Peak Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.pvbws.bucket_size.fw Peak Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.pvbws.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.pvbws.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
alcap.pvbws.stt Source Traffic Type
Unsigned 8-bit integer
alcap.pvbwt.bitrate.bw Peak CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.pvbwt.bitrate.fw Peak CPS Forward Bitrate
Unsigned 24-bit integer
alcap.pvbwt.bucket_size.bw Peak Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.pvbwt.bucket_size.fw Peak Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.pvbwt.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.pvbwt.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
alcap.ssia.cas CAS
Unsigned 8-bit integer
Channel Associated Signalling
alcap.ssia.cmd Circuit Mode
Unsigned 8-bit integer
alcap.ssia.dtmf DTMF
Unsigned 8-bit integer
alcap.ssia.fax Fax
Unsigned 8-bit integer
Facsimile
alcap.ssia.frm Frame Mode
Unsigned 8-bit integer
alcap.ssia.max_fmdata_len Max Len of FM Data
Unsigned 16-bit integer
alcap.ssia.mfr1 Multi-Frequency R1
Unsigned 8-bit integer
alcap.ssia.mfr2 Multi-Frequency R2
Unsigned 8-bit integer
alcap.ssia.oui OUI
Byte array
Organizational Unique Identifier
alcap.ssia.pcm PCM Mode
Unsigned 8-bit integer
alcap.ssia.profile.id Profile Id
Unsigned 8-bit integer
alcap.ssia.profile.type Profile Type
Unsigned 8-bit integer
I.366.2 Profile Type
alcap.ssiae.cas CAS
Unsigned 8-bit integer
Channel Associated Signalling
alcap.ssiae.cmd Circuit Mode
Unsigned 8-bit integer
alcap.ssiae.dtmf DTMF
Unsigned 8-bit integer
alcap.ssiae.fax Fax
Unsigned 8-bit integer
Facsimile
alcap.ssiae.frm Frame Mode
Unsigned 8-bit integer
alcap.ssiae.lb Loopback
Unsigned 8-bit integer
alcap.ssiae.max_fmdata_len Max Len of FM Data
Unsigned 16-bit integer
alcap.ssiae.mfr1 Multi-Frequency R1
Unsigned 8-bit integer
alcap.ssiae.mfr2 Multi-Frequency R2
Unsigned 8-bit integer
alcap.ssiae.oui OUI
Byte array
Organizational Unique Identifier
alcap.ssiae.pcm PCM Mode
Unsigned 8-bit integer
alcap.ssiae.profile.id Profile Id
Unsigned 8-bit integer
alcap.ssiae.profile.type Profile Type
Unsigned 8-bit integer
I.366.2 Profile Type
alcap.ssiae.rc Rate Conctrol
Unsigned 8-bit integer
alcap.ssiae.syn Syncronization
Unsigned 8-bit integer
Transport of synchronization of change in SSCS operation
alcap.ssim.frm Frame Mode
Unsigned 8-bit integer
alcap.ssim.max Max Len
Unsigned 16-bit integer
alcap.ssim.mult Multiplier
Unsigned 8-bit integer
alcap.ssime.frm Frame Mode
Unsigned 8-bit integer
alcap.ssime.lb Loopback
Unsigned 8-bit integer
alcap.ssime.max Max Len
Unsigned 16-bit integer
alcap.ssime.mult Multiplier
Unsigned 8-bit integer
alcap.ssisa.sscop.max_sdu_len.bw Maximum Len of SSSAR-SDU Backwards
Unsigned 16-bit integer
alcap.ssisa.sscop.max_sdu_len.fw Maximum Len of SSSAR-SDU Forward
Unsigned 16-bit integer
alcap.ssisa.sscop.max_uu_len.bw Maximum Len of SSSAR-SDU Backwards
Unsigned 16-bit integer
alcap.ssisa.sscop.max_uu_len.fw Maximum Len of SSSAR-SDU Forward
Unsigned 16-bit integer
alcap.ssisa.sssar.max_len.fw Maximum Len of SSSAR-SDU Forward
Unsigned 24-bit integer
alcap.ssisu.sssar.max_len.fw Maximum Len of SSSAR-SDU Forward
Unsigned 24-bit integer
alcap.ssisu.ted Transmission Error Detection
Unsigned 8-bit integer
alcap.suci SUCI
Unsigned 8-bit integer
Served User Correlation Id
alcap.sugr SUGR
Byte array
Served User Generated Reference
alcap.sut.sut_len SUT Length
Unsigned 8-bit integer
alcap.sut.transport SUT
Byte array
Served User Transport
alcap.unknown.field Unknown Field Data
Byte array
alcap.vbws.bitrate.bw CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.vbws.bitrate.fw CPS Forward Bitrate
Unsigned 24-bit integer
alcap.vbws.bucket_size.bw Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.vbws.bucket_size.fw Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.vbws.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.vbws.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
alcap.vbws.stt Source Traffic Type
Unsigned 8-bit integer
alcap.vbwt.bitrate.bw Peak CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.vbwt.bitrate.fw Peak CPS Forward Bitrate
Unsigned 24-bit integer
alcap.vbwt.bucket_size.bw Peak Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.vbwt.bucket_size.fw Peak Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.vbwt.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.vbwt.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
acp133.ACPLegacyFormat ACPLegacyFormat
Signed 32-bit integer
acp133.ACPLegacyFormat
acp133.ACPPreferredDelivery ACPPreferredDelivery
Unsigned 32-bit integer
acp133.ACPPreferredDelivery
acp133.ALType ALType
Signed 32-bit integer
acp133.ALType
acp133.AddressCapabilities AddressCapabilities
No value
acp133.AddressCapabilities
acp133.Addressees Addressees
Unsigned 32-bit integer
acp133.Addressees
acp133.Addressees_item Item
String
acp133.PrintableString_SIZE_1_55
acp133.Capability Capability
No value
acp133.Capability
acp133.Classification Classification
Unsigned 32-bit integer
acp133.Classification
acp133.Community Community
Unsigned 32-bit integer
acp133.Community
acp133.DLPolicy DLPolicy
No value
acp133.DLPolicy
acp133.DLSubmitPermission DLSubmitPermission
Unsigned 32-bit integer
acp133.DLSubmitPermission
acp133.DistributionCode DistributionCode
String
acp133.DistributionCode
acp133.JPEG JPEG
Byte array
acp133.JPEG
acp133.Kmid Kmid
Byte array
acp133.Kmid
acp133.MLReceiptPolicy MLReceiptPolicy
Unsigned 32-bit integer
acp133.MLReceiptPolicy
acp133.MonthlyUKMs MonthlyUKMs
No value
acp133.MonthlyUKMs
acp133.OnSupported OnSupported
Byte array
acp133.OnSupported
acp133.RIParameters RIParameters
No value
acp133.RIParameters
acp133.Remarks Remarks
Unsigned 32-bit integer
acp133.Remarks
acp133.Remarks_item Item
String
acp133.PrintableString
acp133.acp127-nn acp127-nn
Boolean
acp133.acp127-pn acp127-pn
Boolean
acp133.acp127-tn acp127-tn
Boolean
acp133.address address
No value
x411.ORAddress
acp133.algorithm_identifier algorithm-identifier
No value
x509af.AlgorithmIdentifier
acp133.capabilities capabilities
Unsigned 32-bit integer
acp133.SET_OF_Capability
acp133.capabilities_item Item
No value
acp133.Capability
acp133.classification classification
Unsigned 32-bit integer
acp133.Classification
acp133.content_types content-types
Unsigned 32-bit integer
acp133.SET_OF_ExtendedContentType
acp133.content_types_item Item
x411.ExtendedContentType
acp133.conversion_with_loss_prohibited conversion-with-loss-prohibited
Unsigned 32-bit integer
acp133.T_conversion_with_loss_prohibited
acp133.date date
String
acp133.UTCTime
acp133.description description
String
acp133.GeneralString
acp133.disclosure_of_other_recipients disclosure-of-other-recipients
Unsigned 32-bit integer
acp133.T_disclosure_of_other_recipients
acp133.edition edition
Signed 32-bit integer
acp133.INTEGER
acp133.encoded_information_types_constraints encoded-information-types-constraints
No value
x411.EncodedInformationTypesConstraints
acp133.encrypted encrypted
Byte array
acp133.BIT_STRING
acp133.further_dl_expansion_allowed further-dl-expansion-allowed
Boolean
acp133.BOOLEAN
acp133.implicit_conversion_prohibited implicit-conversion-prohibited
Unsigned 32-bit integer
acp133.T_implicit_conversion_prohibited
acp133.inAdditionTo inAdditionTo
Unsigned 32-bit integer
acp133.SEQUENCE_OF_GeneralNames
acp133.inAdditionTo_item Item
Unsigned 32-bit integer
x509ce.GeneralNames
acp133.individual individual
No value
x411.ORName
acp133.insteadOf insteadOf
Unsigned 32-bit integer
acp133.SEQUENCE_OF_GeneralNames
acp133.insteadOf_item Item
Unsigned 32-bit integer
x509ce.GeneralNames
acp133.kmid kmid
Byte array
acp133.Kmid
acp133.maximum_content_length maximum-content-length
Unsigned 32-bit integer
x411.ContentLength
acp133.member_of_dl member-of-dl
No value
x411.ORName
acp133.member_of_group member-of-group
Unsigned 32-bit integer
x509if.Name
acp133.minimize minimize
Boolean
acp133.BOOLEAN
acp133.none none
No value
acp133.NULL
acp133.originating_MTA_report originating-MTA-report
Signed 32-bit integer
acp133.T_originating_MTA_report
acp133.originator_certificate_selector originator-certificate-selector
No value
x509ce.CertificateAssertion
acp133.originator_report originator-report
Signed 32-bit integer
acp133.T_originator_report
acp133.originator_requested_alternate_recipient_removed originator-requested-alternate-recipient-removed
Boolean
acp133.BOOLEAN
acp133.pattern_match pattern-match
No value
acp133.ORNamePattern
acp133.priority priority
Signed 32-bit integer
acp133.T_priority
acp133.proof_of_delivery proof-of-delivery
Signed 32-bit integer
acp133.T_proof_of_delivery
acp133.rI rI
String
acp133.PrintableString
acp133.rIType rIType
Unsigned 32-bit integer
acp133.T_rIType
acp133.recipient_certificate_selector recipient-certificate-selector
No value
x509ce.CertificateAssertion
acp133.removed removed
No value
acp133.NULL
acp133.replaced replaced
Unsigned 32-bit integer
x411.RequestedDeliveryMethod
acp133.report_from_dl report-from-dl
Signed 32-bit integer
acp133.T_report_from_dl
acp133.report_propagation report-propagation
Signed 32-bit integer
acp133.T_report_propagation
acp133.requested_delivery_method requested-delivery-method
Unsigned 32-bit integer
acp133.T_requested_delivery_method
acp133.return_of_content return-of-content
Unsigned 32-bit integer
acp133.T_return_of_content
acp133.sHD sHD
String
acp133.PrintableString
acp133.security_labels security-labels
Unsigned 32-bit integer
x411.SecurityContext
acp133.tag tag
No value
acp133.PairwiseTag
acp133.token_encryption_algorithm_preference token-encryption-algorithm-preference
Unsigned 32-bit integer
acp133.SEQUENCE_OF_AlgorithmInformation
acp133.token_encryption_algorithm_preference_item Item
No value
acp133.AlgorithmInformation
acp133.token_signature_algorithm_preference token-signature-algorithm-preference
Unsigned 32-bit integer
acp133.SEQUENCE_OF_AlgorithmInformation
acp133.token_signature_algorithm_preference_item Item
No value
acp133.AlgorithmInformation
acp133.ukm ukm
Byte array
acp133.OCTET_STRING
acp133.ukm_entries ukm-entries
Unsigned 32-bit integer
acp133.SEQUENCE_OF_UKMEntry
acp133.ukm_entries_item Item
No value
acp133.UKMEntry
acp133.unchanged unchanged
No value
acp133.NULL
aim_admin.acctinfo.code Account Information Request Code
Unsigned 16-bit integer
aim_admin.acctinfo.permissions Account Permissions
Unsigned 16-bit integer
aim_admin.confirm_status Confirmation status
Unsigned 16-bit integer
aim_buddylist.userinfo.warninglevel Warning Level
Unsigned 16-bit integer
aim_generic.client_verification.hash Client Verification MD5 Hash
Byte array
aim_generic.client_verification.length Client Verification Request Length
Unsigned 32-bit integer
aim_generic.client_verification.offset Client Verification Request Offset
Unsigned 32-bit integer
aim_generic.evil.new_warn_level New warning level
Unsigned 16-bit integer
aim_generic.ext_status.data Extended Status Data
Byte array
aim_generic.ext_status.flags Extended Status Flags
Unsigned 8-bit integer
aim_generic.ext_status.length Extended Status Length
Unsigned 8-bit integer
aim_generic.ext_status.type Extended Status Type
Unsigned 16-bit integer
aim_generic.idle_time Idle time (seconds)
Unsigned 32-bit integer
aim_generic.migrate.numfams Number of families to migrate
Unsigned 16-bit integer
aim_generic.motd.motdtype MOTD Type
Unsigned 16-bit integer
aim_generic.privilege_flags Privilege flags
Unsigned 32-bit integer
aim_generic.privilege_flags.allow_idle Allow other users to see idle time
Boolean
aim_generic.privilege_flags.allow_member Allow other users to see how long account has been a member
Boolean
aim_generic.ratechange.msg Rate Change Message
Unsigned 16-bit integer
aim_generic.rateinfo.class.alertlevel Alert Level
Unsigned 32-bit integer
aim_generic.rateinfo.class.clearlevel Clear Level
Unsigned 32-bit integer
aim_generic.rateinfo.class.currentlevel Current Level
Unsigned 32-bit integer
aim_generic.rateinfo.class.curstate Current State
Unsigned 8-bit integer
aim_generic.rateinfo.class.disconnectlevel Disconnect Level
Unsigned 32-bit integer
aim_generic.rateinfo.class.id Class ID
Unsigned 16-bit integer
aim_generic.rateinfo.class.lasttime Last Time
Unsigned 32-bit integer
aim_generic.rateinfo.class.limitlevel Limit Level
Unsigned 32-bit integer
aim_generic.rateinfo.class.maxlevel Max Level
Unsigned 32-bit integer
aim_generic.rateinfo.class.numpairs Number of Family/Subtype pairs
Unsigned 16-bit integer
aim_generic.rateinfo.class.window_size Window Size
Unsigned 32-bit integer
aim_generic.rateinfo.numclasses Number of Rateinfo Classes
Unsigned 16-bit integer
aim_generic.rateinfoack.class Acknowledged Rate Class
Unsigned 16-bit integer
aim_generic.selfinfo.warn_level Warning level
Unsigned 16-bit integer
aim_generic.servicereq.service Requested Service
Unsigned 16-bit integer
aim_icq.chunk_size Data chunk size
Unsigned 16-bit integer
aim_icq.offline_msgs.dropped_flag Dropped messages flag
Unsigned 8-bit integer
aim_icq.owner_uid Owner UID
Unsigned 32-bit integer
aim_icq.request_seq_number Request Sequence Number
Unsigned 16-bit integer
aim_icq.request_type Request Type
Unsigned 16-bit integer
aim_icq.subtype Meta Request Subtype
Unsigned 16-bit integer
aim_location.buddyname Buddy Name
String
aim_location.buddynamelen Buddyname len
Unsigned 8-bit integer
aim_location.snac.request_user_info.infotype Infotype
Unsigned 16-bit integer
aim_location.userinfo.warninglevel Warning Level
Unsigned 16-bit integer
aim_messaging.channelid Message Channel ID
Unsigned 16-bit integer
aim_messaging.clientautoresp.client_caps_flags Client Capabilities Flags
Unsigned 32-bit integer
aim_messaging.clientautoresp.protocol_version Version
Unsigned 16-bit integer
aim_messaging.clientautoresp.reason Reason
Unsigned 16-bit integer
aim_messaging.evil.new_warn_level New warning level
Unsigned 16-bit integer
aim_messaging.evil.warn_level Old warning level
Unsigned 16-bit integer
aim_messaging.evilreq.origin Send Evil Bit As
Unsigned 16-bit integer
aim_messaging.icbm.channel Channel to setup
Unsigned 16-bit integer
aim_messaging.icbm.extended_data.message.flags Message Flags
Unsigned 8-bit integer
aim_messaging.icbm.extended_data.message.flags.auto Auto Message
Boolean
aim_messaging.icbm.extended_data.message.flags.normal Normal Message
Boolean
aim_messaging.icbm.extended_data.message.priority_code Priority Code
Unsigned 16-bit integer
aim_messaging.icbm.extended_data.message.status_code Status Code
Unsigned 16-bit integer
aim_messaging.icbm.extended_data.message.text Text
String
aim_messaging.icbm.extended_data.message.text_length Text Length
Unsigned 16-bit integer
aim_messaging.icbm.extended_data.message.type Message Type
Unsigned 8-bit integer
aim_messaging.icbm.flags Message Flags
Unsigned 32-bit integer
aim_messaging.icbm.max_receiver_warnlevel max receiver warn level
Unsigned 16-bit integer
aim_messaging.icbm.max_sender_warn-level Max sender warn level
Unsigned 16-bit integer
aim_messaging.icbm.max_snac Max SNAC Size
Unsigned 16-bit integer
aim_messaging.icbm.min_msg_interval Minimum message interval (seconds)
Unsigned 16-bit integer
aim_messaging.icbm.rendezvous.extended_data.message.flags.multi Multiple Recipients Message
Boolean
aim_messaging.icbm.unknown Unknown parameter
Unsigned 16-bit integer
aim_messaging.icbmcookie ICBM Cookie
Byte array
aim_messaging.notification.channel Notification Channel
Unsigned 16-bit integer
aim_messaging.notification.cookie Notification Cookie
Byte array
aim_messaging.notification.type Notification Type
Unsigned 16-bit integer
aim_messaging.rendezvous.msg_type Message Type
Unsigned 16-bit integer
aim_bos.data Data
Byte array
aim_bos.userclass User class
Unsigned 32-bit integer
aim_ssi.fnac.bid SSI Buddy ID
Unsigned 16-bit integer
aim_ssi.fnac.buddyname Buddy Name
String
aim_ssi.fnac.buddyname_len SSI Buddy Name length
Unsigned 16-bit integer
aim_ssi.fnac.data SSI Buddy Data
Unsigned 16-bit integer
aim_ssi.fnac.gid SSI Buddy Group ID
Unsigned 16-bit integer
aim_ssi.fnac.last_change_time SSI Last Change Time
Unsigned 32-bit integer
aim_ssi.fnac.numitems SSI Object count
Unsigned 16-bit integer
aim_ssi.fnac.tlvlen SSI TLV Len
Unsigned 16-bit integer
aim_ssi.fnac.type SSI Buddy type
Unsigned 16-bit integer
aim_ssi.fnac.version SSI Version
Unsigned 8-bit integer
aim_sst.icon Icon
Byte array
aim_sst.icon_size Icon Size
Unsigned 16-bit integer
aim_sst.md5 MD5 Hash
Byte array
aim_sst.md5.size MD5 Hash Size
Unsigned 8-bit integer
aim_sst.ref_num Reference Number
Unsigned 16-bit integer
aim_sst.unknown Unknown Data
Byte array
aim_signon.challenge Signon challenge
String
aim_signon.challengelen Signon challenge length
Unsigned 16-bit integer
aim_signon.infotype Infotype
Unsigned 16-bit integer
aim_lookup.email Email address looked for
String
Email address
ams.ads_adddn_req ADS Add Device Notification Request
No value
ams.ads_adddn_res ADS Add Device Notification Response
No value
ams.ads_cblength CbLength
Unsigned 32-bit integer
ams.ads_cbreadlength CBReadLength
Unsigned 32-bit integer
ams.ads_cbwritelength CBWriteLength
Unsigned 32-bit integer
ams.ads_cmpmax Cmp Mad
No value
ams.ads_cmpmin Cmp Min
No value
ams.ads_cycletime Cycle Time
Unsigned 32-bit integer
ams.ads_data Data
No value
ams.ads_deldn_req ADS Delete Device Notification Request
No value
ams.ads_deldn_res ADS Delete Device Notification Response
No value
ams.ads_devicename Device Name
String
ams.ads_devicestate DeviceState
Unsigned 16-bit integer
ams.ads_dn_req ADS Device Notification Request
No value
ams.ads_dn_res ADS Device Notification Response
No value
ams.ads_indexgroup IndexGroup
Unsigned 32-bit integer
ams.ads_indexoffset IndexOffset
Unsigned 32-bit integer
ams.ads_invokeid InvokeId
Unsigned 32-bit integer
ams.ads_maxdelay Max Delay
Unsigned 32-bit integer
ams.ads_noteattrib InvokeId
No value
ams.ads_noteblocks InvokeId
No value
ams.ads_noteblockssample Notification Sample
No value
ams.ads_noteblocksstamp Notification Stamp
No value
ams.ads_noteblocksstamps Count of Stamps
Unsigned 32-bit integer
ams.ads_notificationhandle NotificationHandle
Unsigned 32-bit integer
ams.ads_read_req ADS Read Request
No value
ams.ads_read_res ADS Read Respone
No value
ams.ads_readdinfo_req ADS Read Device Info Request
No value
ams.ads_readdinfo_res ADS Read Device Info Response
No value
ams.ads_readstate_req ADS Read State Request
No value
ams.ads_readstate_res ADS Read State Response
No value
ams.ads_readwrite_req ADS ReadWrite Request
No value
ams.ads_readwrite_res ADS ReadWrite Response
No value
ams.ads_samplecnt Count of Stamps
Unsigned 32-bit integer
ams.ads_state AdsState
Unsigned 16-bit integer
ams.ads_timestamp Time Stamp
Unsigned 64-bit integer
ams.ads_transmode Trans Mode
Unsigned 32-bit integer
ams.ads_version ADS Version
Unsigned 32-bit integer
ams.ads_versionbuild ADS Version Build
Unsigned 16-bit integer
ams.ads_versionrevision ADS Minor Version
Unsigned 8-bit integer
ams.ads_versionversion ADS Major Version
Unsigned 8-bit integer
ams.ads_write_req ADS Write Request
No value
ams.ads_write_res ADS Write Response
No value
ams.ads_writectrl_req ADS Write Ctrl Request
No value
ams.ads_writectrl_res ADS Write Ctrl Response
No value
ams.adsresult Result
Unsigned 32-bit integer
ams.cbdata cbData
Unsigned 32-bit integer
ams.cmdid CmdId
Unsigned 16-bit integer
ams.data Data
No value
ams.errorcode ErrorCode
Unsigned 32-bit integer
ams.invokeid InvokeId
Unsigned 32-bit integer
ams.sendernetid AMS Sender Net Id
String
ams.senderport AMS Sender port
Unsigned 16-bit integer
ams.state_adscmd ADS COMMAND
Boolean
ams.state_broadcast BROADCAST
Boolean
ams.state_highprio HIGH PRIORITY COMMAND
Boolean
ams.state_initcmd INIT COMMAND
Boolean
ams.state_noreturn NO RETURN
Boolean
ams.state_response RESPONSE
Boolean
ams.state_syscmd SYSTEM COMMAND
Boolean
ams.state_timestampadded TIMESTAMP ADDED
Boolean
ams.state_udp UDP COMMAND
Boolean
ams.stateflags StateFlags
Unsigned 16-bit integer
ams.targetnetid AMS Target Net Id
String
ams.targetport AMS Target port
Unsigned 16-bit integer
ansi_a_bsmap.a2p_bearer_ipv4_addr A2p Bearer IP Address
IPv4 address
ansi_a_bsmap.a2p_bearer_ipv6_addr A2p Bearer IP Address
IPv6 address
ansi_a_bsmap.a2p_bearer_udp_port A2p Bearer UDP Port
Unsigned 16-bit integer
ansi_a_bsmap.anchor_pdsn_ip_addr Anchor PDSN Address
IPv4 address
IP Address
ansi_a_bsmap.anchor_pp_ip_addr Anchor P-P Address
IPv4 address
IP Address
ansi_a_bsmap.cell_ci Cell CI
Unsigned 16-bit integer
ansi_a_bsmap.cell_lac Cell LAC
Unsigned 16-bit integer
ansi_a_bsmap.cell_mscid Cell MSCID
Unsigned 24-bit integer
ansi_a_bsmap.cld_party_ascii_num Called Party ASCII Number
String
ansi_a_bsmap.cld_party_bcd_num Called Party BCD Number
String
ansi_a_bsmap.clg_party_ascii_num Calling Party ASCII Number
String
ansi_a_bsmap.clg_party_bcd_num Calling Party BCD Number
String
ansi_a_bsmap.dtap_msgtype DTAP Message Type
Unsigned 8-bit integer
ansi_a_bsmap.elem_id Element ID
Unsigned 8-bit integer
ansi_a_bsmap.esn ESN
Unsigned 32-bit integer
ansi_a_bsmap.imsi IMSI
String
ansi_a_bsmap.len Length
Unsigned 8-bit integer
ansi_a_bsmap.meid MEID
String
ansi_a_bsmap.min MIN
String
ansi_a_bsmap.msgtype BSMAP Message Type
Unsigned 8-bit integer
ansi_a_bsmap.none Sub tree
No value
ansi_a_bsmap.pdsn_ip_addr PDSN IP Address
IPv4 address
IP Address
ansi_a_bsmap.s_pdsn_ip_addr Source PDSN Address
IPv4 address
IP Address
ansi_637_tele.len Length
Unsigned 8-bit integer
ansi_637_tele.msg_id Message ID
Unsigned 24-bit integer
ansi_637_tele.msg_rsvd Reserved
Unsigned 24-bit integer
ansi_637_tele.msg_type Message Type
Unsigned 24-bit integer
ansi_637_tele.subparam_id Teleservice Subparam ID
Unsigned 8-bit integer
ansi_637_trans.bin_addr Binary Address
Byte array
ansi_637_trans.len Length
Unsigned 8-bit integer
ansi_637_trans.msg_type Message Type
Unsigned 24-bit integer
ansi_637_trans.param_id Transport Param ID
Unsigned 8-bit integer
ansi_683.for_msg_type Forward Link Message Type
Unsigned 8-bit integer
ansi_683.len Length
Unsigned 8-bit integer
ansi_683.none Sub tree
No value
ansi_683.rev_msg_type Reverse Link Message Type
Unsigned 8-bit integer
ansi_801.for_req_type Forward Request Type
Unsigned 8-bit integer
ansi_801.for_rsp_type Forward Response Type
Unsigned 8-bit integer
ansi_801.for_sess_tag Forward Session Tag
Unsigned 8-bit integer
ansi_801.rev_req_type Reverse Request Type
Unsigned 8-bit integer
ansi_801.rev_rsp_type Reverse Response Type
Unsigned 8-bit integer
ansi_801.rev_sess_tag Reverse Session Tag
Unsigned 8-bit integer
ansi_801.sess_tag Session Tag
Unsigned 8-bit integer
ansi_map.CDMABandClassList_item Item
No value
ansi_map.CDMABandClassInformation
ansi_map.CDMAChannelNumberList_item Item
No value
ansi_map.CDMAChannelNumberList_item
ansi_map.CDMACodeChannelList_item Item
No value
ansi_map.CDMACodeChannelInformation
ansi_map.CDMAConnectionReferenceList_item Item
No value
ansi_map.CDMAConnectionReferenceList_item
ansi_map.CDMAPSMMList_item Item
No value
ansi_map.CDMAPSMMList_item
ansi_map.CDMAServiceOptionList_item Item
Byte array
ansi_map.CDMAServiceOption
ansi_map.CDMATargetMAHOList_item Item
No value
ansi_map.CDMATargetMAHOInformation
ansi_map.CDMATargetMeasurementList_item Item
No value
ansi_map.CDMATargetMeasurementInformation
ansi_map.CallRecoveryIDList_item Item
No value
ansi_map.CallRecoveryID
ansi_map.DataAccessElementList_item Item
No value
ansi_map.DataAccessElementList_item
ansi_map.DataUpdateResultList_item Item
No value
ansi_map.DataUpdateResult
ansi_map.ModificationRequestList_item Item
No value
ansi_map.ModificationRequest
ansi_map.ModificationResultList_item Item
Unsigned 32-bit integer
ansi_map.ModificationResult
ansi_map.PACA_Level PACA Level
Unsigned 8-bit integer
PACA Level
ansi_map.ServiceDataAccessElementList_item Item
No value
ansi_map.ServiceDataAccessElement
ansi_map.ServiceDataResultList_item Item
No value
ansi_map.ServiceDataResult
ansi_map.TargetMeasurementList_item Item
No value
ansi_map.TargetMeasurementInformation
ansi_map.TerminationList_item Item
Unsigned 32-bit integer
ansi_map.TerminationList_item
ansi_map.aCGDirective aCGDirective
No value
ansi_map.ACGDirective
ansi_map.aKeyProtocolVersion aKeyProtocolVersion
Byte array
ansi_map.AKeyProtocolVersion
ansi_map.accessDeniedReason accessDeniedReason
Unsigned 32-bit integer
ansi_map.AccessDeniedReason
ansi_map.acgencountered acgencountered
Byte array
ansi_map.ACGEncountered
ansi_map.actionCode actionCode
Unsigned 8-bit integer
ansi_map.ActionCode
ansi_map.addService addService
No value
ansi_map.AddService
ansi_map.addServiceRes addServiceRes
No value
ansi_map.AddServiceRes
ansi_map.alertCode alertCode
Byte array
ansi_map.AlertCode
ansi_map.alertResult alertResult
Unsigned 8-bit integer
ansi_map.AlertResult
ansi_map.alertcode.alertaction Alert Action
Unsigned 8-bit integer
Alert Action
ansi_map.alertcode.cadence Cadence
Unsigned 8-bit integer
Cadence
ansi_map.alertcode.pitch Pitch
Unsigned 8-bit integer
Pitch
ansi_map.allOrNone allOrNone
Unsigned 32-bit integer
ansi_map.AllOrNone
ansi_map.analogRedirectInfo analogRedirectInfo
Byte array
ansi_map.AnalogRedirectInfo
ansi_map.analogRedirectRecord analogRedirectRecord
No value
ansi_map.AnalogRedirectRecord
ansi_map.analyzedInformation analyzedInformation
No value
ansi_map.AnalyzedInformation
ansi_map.analyzedInformationRes analyzedInformationRes
No value
ansi_map.AnalyzedInformationRes
ansi_map.announcementCode1 announcementCode1
Byte array
ansi_map.AnnouncementCode
ansi_map.announcementCode2 announcementCode2
Byte array
ansi_map.AnnouncementCode
ansi_map.announcementList announcementList
No value
ansi_map.AnnouncementList
ansi_map.announcementcode.class Tone
Unsigned 8-bit integer
Tone
ansi_map.announcementcode.cust_ann Custom Announcement
Unsigned 8-bit integer
Custom Announcement
ansi_map.announcementcode.std_ann Standard Announcement
Unsigned 8-bit integer
Standard Announcement
ansi_map.announcementcode.tone Tone
Unsigned 8-bit integer
Tone
ansi_map.authenticationAlgorithmVersion authenticationAlgorithmVersion
Byte array
ansi_map.AuthenticationAlgorithmVersion
ansi_map.authenticationCapability authenticationCapability
Unsigned 8-bit integer
ansi_map.AuthenticationCapability
ansi_map.authenticationData authenticationData
Byte array
ansi_map.AuthenticationData
ansi_map.authenticationDirective authenticationDirective
No value
ansi_map.AuthenticationDirective
ansi_map.authenticationDirectiveForward authenticationDirectiveForward
No value
ansi_map.AuthenticationDirectiveForward
ansi_map.authenticationDirectiveForwardRes authenticationDirectiveForwardRes
No value
ansi_map.AuthenticationDirectiveForwardRes
ansi_map.authenticationDirectiveRes authenticationDirectiveRes
No value
ansi_map.AuthenticationDirectiveRes
ansi_map.authenticationFailureReport authenticationFailureReport
No value
ansi_map.AuthenticationFailureReport
ansi_map.authenticationFailureReportRes authenticationFailureReportRes
No value
ansi_map.AuthenticationFailureReportRes
ansi_map.authenticationRequest authenticationRequest
No value
ansi_map.AuthenticationRequest
ansi_map.authenticationRequestRes authenticationRequestRes
No value
ansi_map.AuthenticationRequestRes
ansi_map.authenticationResponse authenticationResponse
Byte array
ansi_map.AuthenticationResponse
ansi_map.authenticationResponseBaseStation authenticationResponseBaseStation
Byte array
ansi_map.AuthenticationResponseBaseStation
ansi_map.authenticationResponseReauthentication authenticationResponseReauthentication
Byte array
ansi_map.AuthenticationResponseReauthentication
ansi_map.authenticationResponseUniqueChallenge authenticationResponseUniqueChallenge
Byte array
ansi_map.AuthenticationResponseUniqueChallenge
ansi_map.authenticationStatusReport authenticationStatusReport
No value
ansi_map.AuthenticationStatusReport
ansi_map.authenticationStatusReportRes authenticationStatusReportRes
No value
ansi_map.AuthenticationStatusReportRes
ansi_map.authorizationDenied authorizationDenied
Unsigned 32-bit integer
ansi_map.AuthorizationDenied
ansi_map.authorizationPeriod authorizationPeriod
Byte array
ansi_map.AuthorizationPeriod
ansi_map.authorizationperiod.period Period
Unsigned 8-bit integer
Period
ansi_map.availabilityType availabilityType
Unsigned 8-bit integer
ansi_map.AvailabilityType
ansi_map.baseStationChallenge baseStationChallenge
No value
ansi_map.BaseStationChallenge
ansi_map.baseStationChallengeRes baseStationChallengeRes
No value
ansi_map.BaseStationChallengeRes
ansi_map.baseStationManufacturerCode baseStationManufacturerCode
Byte array
ansi_map.BaseStationManufacturerCode
ansi_map.baseStationPartialKey baseStationPartialKey
Byte array
ansi_map.BaseStationPartialKey
ansi_map.bcd_digits BCD digits
String
BCD digits
ansi_map.billingID billingID
Byte array
ansi_map.BillingID
ansi_map.blocking blocking
No value
ansi_map.Blocking
ansi_map.borderCellAccess borderCellAccess
Unsigned 32-bit integer
ansi_map.BorderCellAccess
ansi_map.bsmcstatus bsmcstatus
Unsigned 8-bit integer
ansi_map.BSMCStatus
ansi_map.bulkDeregistration bulkDeregistration
No value
ansi_map.BulkDeregistration
ansi_map.bulkDisconnection bulkDisconnection
No value
ansi_map.BulkDisconnection
ansi_map.callControlDirective callControlDirective
No value
ansi_map.CallControlDirective
ansi_map.callControlDirectiveRes callControlDirectiveRes
No value
ansi_map.CallControlDirectiveRes
ansi_map.callHistoryCount callHistoryCount
Unsigned 32-bit integer
ansi_map.CallHistoryCount
ansi_map.callHistoryCountExpected callHistoryCountExpected
Unsigned 32-bit integer
ansi_map.CallHistoryCountExpected
ansi_map.callRecoveryIDList callRecoveryIDList
Unsigned 32-bit integer
ansi_map.CallRecoveryIDList
ansi_map.callRecoveryReport callRecoveryReport
No value
ansi_map.CallRecoveryReport
ansi_map.callStatus callStatus
Unsigned 32-bit integer
ansi_map.CallStatus
ansi_map.callTerminationReport callTerminationReport
No value
ansi_map.CallTerminationReport
ansi_map.callingFeaturesIndicator callingFeaturesIndicator
Byte array
ansi_map.CallingFeaturesIndicator
ansi_map.callingPartyCategory callingPartyCategory
Byte array
ansi_map.CallingPartyCategory
ansi_map.callingPartyName callingPartyName
Byte array
ansi_map.CallingPartyName
ansi_map.callingPartyNumberDigits1 callingPartyNumberDigits1
Byte array
ansi_map.CallingPartyNumberDigits1
ansi_map.callingPartyNumberDigits2 callingPartyNumberDigits2
Byte array
ansi_map.CallingPartyNumberDigits2
ansi_map.callingPartyNumberString1 callingPartyNumberString1
No value
ansi_map.CallingPartyNumberString1
ansi_map.callingPartyNumberString2 callingPartyNumberString2
No value
ansi_map.CallingPartyNumberString2
ansi_map.callingPartySubaddress callingPartySubaddress
Byte array
ansi_map.CallingPartySubaddress
ansi_map.callingfeaturesindicator.3wcfa Three-Way Calling FeatureActivity, 3WC-FA
Unsigned 8-bit integer
Three-Way Calling FeatureActivity, 3WC-FA
ansi_map.callingfeaturesindicator.ahfa Answer Hold: FeatureActivity AH-FA
Unsigned 8-bit integer
Answer Hold: FeatureActivity AH-FA
ansi_map.callingfeaturesindicator.ccsfa CDMA-Concurrent Service:FeatureActivity. CCS-FA
Unsigned 8-bit integer
CDMA-Concurrent Service:FeatureActivity. CCS-FA
ansi_map.callingfeaturesindicator.cdfa Call Delivery: FeatureActivity, CD-FA
Unsigned 8-bit integer
Call Delivery: FeatureActivity, CD-FA
ansi_map.callingfeaturesindicator.cfbafa Call Forwarding Busy FeatureActivity, CFB-FA
Unsigned 8-bit integer
Call Forwarding Busy FeatureActivity, CFB-FA
ansi_map.callingfeaturesindicator.cfnafa Call Forwarding No Answer FeatureActivity, CFNA-FA
Unsigned 8-bit integer
Call Forwarding No Answer FeatureActivity, CFNA-FA
ansi_map.callingfeaturesindicator.cfufa Call Forwarding Unconditional FeatureActivity, CFU-FA
Unsigned 8-bit integer
Call Forwarding Unconditional FeatureActivity, CFU-FA
ansi_map.callingfeaturesindicator.cnip1fa One number (network-provided only) Calling Number Identification Presentation: FeatureActivity CNIP1-FA
Unsigned 8-bit integer
One number (network-provided only) Calling Number Identification Presentation: FeatureActivity CNIP1-FA
ansi_map.callingfeaturesindicator.cnip2fa Two number (network-provided and user-provided) Calling Number Identification Presentation: FeatureActivity CNIP2-FA
Unsigned 8-bit integer
Two number (network-provided and user-provided) Calling Number Identification Presentation: FeatureActivity CNIP2-FA
ansi_map.callingfeaturesindicator.cnirfa Calling Number Identification Restriction: FeatureActivity CNIR-FA
Unsigned 8-bit integer
Calling Number Identification Restriction: FeatureActivity CNIR-FA
ansi_map.callingfeaturesindicator.cniroverfa Calling Number Identification Restriction Override FeatureActivity CNIROver-FA
Unsigned 8-bit integer
ansi_map.callingfeaturesindicator.cpdfa CDMA-Packet Data Service: FeatureActivity. CPDS-FA
Unsigned 8-bit integer
CDMA-Packet Data Service: FeatureActivity. CPDS-FA
ansi_map.callingfeaturesindicator.ctfa Call Transfer: FeatureActivity, CT-FA
Unsigned 8-bit integer
Call Transfer: FeatureActivity, CT-FA
ansi_map.callingfeaturesindicator.cwfa Call Waiting: FeatureActivity, CW-FA
Unsigned 8-bit integer
Call Waiting: FeatureActivity, CW-FA
ansi_map.callingfeaturesindicator.dpfa Data Privacy Feature Activity DP-FA
Unsigned 8-bit integer
Data Privacy Feature Activity DP-FA
ansi_map.callingfeaturesindicator.epefa TDMA Enhanced Privacy and Encryption:FeatureActivity.TDMA EPE-FA
Unsigned 8-bit integer
TDMA Enhanced Privacy and Encryption:FeatureActivity.TDMA EPE-FA
ansi_map.callingfeaturesindicator.pcwfa Priority Call Waiting FeatureActivity PCW-FA
Unsigned 8-bit integer
Priority Call Waiting FeatureActivity PCW-FA
ansi_map.callingfeaturesindicator.uscfmsfa USCF divert to mobile station provided DN:FeatureActivity.USCFms-FA
Unsigned 8-bit integer
USCF divert to mobile station provided DN:FeatureActivity.USCFms-FA
ansi_map.callingfeaturesindicator.uscfvmfa USCF divert to voice mail: FeatureActivity USCFvm-FA
Unsigned 8-bit integer
USCF divert to voice mail: FeatureActivity USCFvm-FA
ansi_map.callingfeaturesindicator.vpfa Voice Privacy FeatureActivity, VP-FA
Unsigned 8-bit integer
Voice Privacy FeatureActivity, VP-FA
ansi_map.cancellationDenied cancellationDenied
Unsigned 32-bit integer
ansi_map.CancellationDenied
ansi_map.cancellationType cancellationType
Unsigned 8-bit integer
ansi_map.CancellationType
ansi_map.carrierDigits carrierDigits
Byte array
ansi_map.CarrierDigits
ansi_map.cdma2000HandoffInvokeIOSData cdma2000HandoffInvokeIOSData
Byte array
ansi_map.CDMA2000HandoffInvokeIOSData
ansi_map.cdma2000HandoffResponseIOSData cdma2000HandoffResponseIOSData
Byte array
ansi_map.CDMA2000HandoffResponseIOSData
ansi_map.cdmaBandClass cdmaBandClass
Byte array
ansi_map.CDMABandClass
ansi_map.cdmaBandClassList cdmaBandClassList
Unsigned 32-bit integer
ansi_map.CDMABandClassList
ansi_map.cdmaCallMode cdmaCallMode
Byte array
ansi_map.CDMACallMode
ansi_map.cdmaChannelData cdmaChannelData
Byte array
ansi_map.CDMAChannelData
ansi_map.cdmaChannelNumber cdmaChannelNumber
Byte array
ansi_map.CDMAChannelNumber
ansi_map.cdmaChannelNumber2 cdmaChannelNumber2
Byte array
ansi_map.CDMAChannelNumber
ansi_map.cdmaChannelNumberList cdmaChannelNumberList
Unsigned 32-bit integer
ansi_map.CDMAChannelNumberList
ansi_map.cdmaCodeChannel cdmaCodeChannel
Byte array
ansi_map.CDMACodeChannel
ansi_map.cdmaCodeChannelList cdmaCodeChannelList
Unsigned 32-bit integer
ansi_map.CDMACodeChannelList
ansi_map.cdmaConnectionReference cdmaConnectionReference
Byte array
ansi_map.CDMAConnectionReference
ansi_map.cdmaConnectionReferenceInformation cdmaConnectionReferenceInformation
No value
ansi_map.CDMAConnectionReferenceInformation
ansi_map.cdmaConnectionReferenceInformation2 cdmaConnectionReferenceInformation2
No value
ansi_map.CDMAConnectionReferenceInformation
ansi_map.cdmaConnectionReferenceList cdmaConnectionReferenceList
Unsigned 32-bit integer
ansi_map.CDMAConnectionReferenceList
ansi_map.cdmaMSMeasuredChannelIdentity cdmaMSMeasuredChannelIdentity
Byte array
ansi_map.CDMAMSMeasuredChannelIdentity
ansi_map.cdmaMobileCapabilities cdmaMobileCapabilities
Byte array
ansi_map.CDMAMobileCapabilities
ansi_map.cdmaMobileProtocolRevision cdmaMobileProtocolRevision
Byte array
ansi_map.CDMAMobileProtocolRevision
ansi_map.cdmaNetworkIdentification cdmaNetworkIdentification
Byte array
ansi_map.CDMANetworkIdentification
ansi_map.cdmaPSMMCount cdmaPSMMCount
Byte array
ansi_map.CDMAPSMMCount
ansi_map.cdmaPSMMList cdmaPSMMList
Unsigned 32-bit integer
ansi_map.CDMAPSMMList
ansi_map.cdmaPilotPN cdmaPilotPN
Byte array
ansi_map.CDMAPilotPN
ansi_map.cdmaPilotStrength cdmaPilotStrength
Byte array
ansi_map.CDMAPilotStrength
ansi_map.cdmaPowerCombinedIndicator cdmaPowerCombinedIndicator
Byte array
ansi_map.CDMAPowerCombinedIndicator
ansi_map.cdmaPrivateLongCodeMask cdmaPrivateLongCodeMask
Byte array
ansi_map.CDMAPrivateLongCodeMask
ansi_map.cdmaRedirectRecord cdmaRedirectRecord
No value
ansi_map.CDMARedirectRecord
ansi_map.cdmaSearchParameters cdmaSearchParameters
Byte array
ansi_map.CDMASearchParameters
ansi_map.cdmaSearchWindow cdmaSearchWindow
Byte array
ansi_map.CDMASearchWindow
ansi_map.cdmaServiceConfigurationRecord cdmaServiceConfigurationRecord
Byte array
ansi_map.CDMAServiceConfigurationRecord
ansi_map.cdmaServiceOption cdmaServiceOption
Byte array
ansi_map.CDMAServiceOption
ansi_map.cdmaServiceOptionConnectionIdentifier cdmaServiceOptionConnectionIdentifier
Byte array
ansi_map.CDMAServiceOptionConnectionIdentifier
ansi_map.cdmaServiceOptionList cdmaServiceOptionList
Unsigned 32-bit integer
ansi_map.CDMAServiceOptionList
ansi_map.cdmaServingOneWayDelay cdmaServingOneWayDelay
Byte array
ansi_map.CDMAServingOneWayDelay
ansi_map.cdmaServingOneWayDelay2 cdmaServingOneWayDelay2
Byte array
ansi_map.CDMAServingOneWayDelay2
ansi_map.cdmaSignalQuality cdmaSignalQuality
Byte array
ansi_map.CDMASignalQuality
ansi_map.cdmaSlotCycleIndex cdmaSlotCycleIndex
Byte array
ansi_map.CDMASlotCycleIndex
ansi_map.cdmaState cdmaState
Byte array
ansi_map.CDMAState
ansi_map.cdmaStationClassMark cdmaStationClassMark
Byte array
ansi_map.CDMAStationClassMark
ansi_map.cdmaStationClassMark2 cdmaStationClassMark2
Byte array
ansi_map.CDMAStationClassMark2
ansi_map.cdmaTargetMAHOList cdmaTargetMAHOList
Unsigned 32-bit integer
ansi_map.CDMATargetMAHOList
ansi_map.cdmaTargetMAHOList2 cdmaTargetMAHOList2
Unsigned 32-bit integer
ansi_map.CDMATargetMAHOList
ansi_map.cdmaTargetMeasurementList cdmaTargetMeasurementList
Unsigned 32-bit integer
ansi_map.CDMATargetMeasurementList
ansi_map.cdmaTargetOneWayDelay cdmaTargetOneWayDelay
Byte array
ansi_map.CDMATargetOneWayDelay
ansi_map.cdmacallmode.cdma Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls1 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls10 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls2 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls3 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls4 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls5 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls6 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls7 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls8 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls9 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.namps Call Mode
Boolean
Call Mode
ansi_map.cdmachanneldata.band_cls Band Class
Unsigned 8-bit integer
Band Class
ansi_map.cdmachanneldata.cdma_ch_no CDMA Channel Number
Unsigned 16-bit integer
CDMA Channel Number
ansi_map.cdmachanneldata.frameoffset Frame Offset
Unsigned 8-bit integer
Frame Offset
ansi_map.cdmachanneldata.lc_mask_b1 Long Code Mask LSB(byte 1)
Unsigned 8-bit integer
Long Code Mask (byte 1)LSB
ansi_map.cdmachanneldata.lc_mask_b2 Long Code Mask (byte 2)
Unsigned 8-bit integer
Long Code Mask (byte 2)
ansi_map.cdmachanneldata.lc_mask_b3 Long Code Mask (byte 3)
Unsigned 8-bit integer
Long Code Mask (byte 3)
ansi_map.cdmachanneldata.lc_mask_b4 Long Code Mask (byte 4)
Unsigned 8-bit integer
Long Code Mask (byte 4)
ansi_map.cdmachanneldata.lc_mask_b5 Long Code Mask (byte 5)
Unsigned 8-bit integer
Long Code Mask (byte 5)
ansi_map.cdmachanneldata.lc_mask_b6 Long Code Mask (byte 6) MSB
Unsigned 8-bit integer
Long Code Mask MSB (byte 6)
ansi_map.cdmachanneldata.nominal_pwr Nominal Power
Unsigned 8-bit integer
Nominal Power
ansi_map.cdmachanneldata.np_ext NP EXT
Boolean
NP EXT
ansi_map.cdmachanneldata.nr_preamble Number Preamble
Unsigned 8-bit integer
Number Preamble
ansi_map.cdmaserviceoption CDMAServiceOption
Unsigned 16-bit integer
CDMAServiceOption
ansi_map.cdmastationclassmark.dmi Dual-mode Indicator(DMI)
Boolean
Dual-mode Indicator(DMI)
ansi_map.cdmastationclassmark.dtx Analog Transmission: (DTX)
Boolean
Analog Transmission: (DTX)
ansi_map.cdmastationclassmark.pc Power Class(PC)
Unsigned 8-bit integer
Power Class(PC)
ansi_map.cdmastationclassmark.smi Slotted Mode Indicator: (SMI)
Boolean
Slotted Mode Indicator: (SMI)
ansi_map.change change
Unsigned 32-bit integer
ansi_map.Change
ansi_map.changeFacilities changeFacilities
No value
ansi_map.ChangeFacilities
ansi_map.changeFacilitiesRes changeFacilitiesRes
No value
ansi_map.ChangeFacilitiesRes
ansi_map.changeService changeService
No value
ansi_map.ChangeService
ansi_map.changeServiceAttributes changeServiceAttributes
Byte array
ansi_map.ChangeServiceAttributes
ansi_map.changeServiceRes changeServiceRes
No value
ansi_map.ChangeServiceRes
ansi_map.channelData channelData
Byte array
ansi_map.ChannelData
ansi_map.channeldata.chno Channel Number (CHNO)
Unsigned 16-bit integer
Channel Number (CHNO)
ansi_map.channeldata.dtx Discontinuous Transmission Mode (DTX)
Unsigned 8-bit integer
Discontinuous Transmission Mode (DTX)
ansi_map.channeldata.scc SAT Color Code (SCC)
Unsigned 8-bit integer
SAT Color Code (SCC)
ansi_map.channeldata.vmac Voice Mobile Attenuation Code (VMAC)
Unsigned 8-bit integer
Voice Mobile Attenuation Code (VMAC)
ansi_map.checkMEID checkMEID
No value
ansi_map.CheckMEID
ansi_map.checkMEIDRes checkMEIDRes
No value
ansi_map.CheckMEIDRes
ansi_map.conditionallyDeniedReason conditionallyDeniedReason
Unsigned 32-bit integer
ansi_map.ConditionallyDeniedReason
ansi_map.conferenceCallingIndicator conferenceCallingIndicator
Byte array
ansi_map.ConferenceCallingIndicator
ansi_map.confidentialityModes confidentialityModes
Byte array
ansi_map.ConfidentialityModes
ansi_map.confidentialitymodes.dp DataPrivacy (DP) Confidentiality Status
Boolean
DataPrivacy (DP) Confidentiality Status
ansi_map.confidentialitymodes.se Signaling Message Encryption (SE) Confidentiality Status
Boolean
Signaling Message Encryption (SE) Confidentiality Status
ansi_map.confidentialitymodes.vp Voice Privacy (VP) Confidentiality Status
Boolean
Voice Privacy (VP) Confidentiality Status
ansi_map.connectResource connectResource
No value
ansi_map.ConnectResource
ansi_map.connectionFailureReport connectionFailureReport
No value
ansi_map.ConnectionFailureReport
ansi_map.controlChannelData controlChannelData
Byte array
ansi_map.ControlChannelData
ansi_map.controlChannelMode controlChannelMode
Unsigned 8-bit integer
ansi_map.ControlChannelMode
ansi_map.controlNetworkID controlNetworkID
Byte array
ansi_map.ControlNetworkID
ansi_map.controlType controlType
Byte array
ansi_map.ControlType
ansi_map.controlchanneldata.cmac Control Mobile Attenuation Code (CMAC)
Unsigned 8-bit integer
Control Mobile Attenuation Code (CMAC)
ansi_map.controlchanneldata.dcc Digital Color Code (DCC)
Unsigned 8-bit integer
Digital Color Code (DCC)
ansi_map.controlchanneldata.ssdc1 Supplementary Digital Color Codes (SDCC1)
Unsigned 8-bit integer
Supplementary Digital Color Codes (SDCC1)
ansi_map.controlchanneldata.ssdc2 Supplementary Digital Color Codes (SDCC2)
Unsigned 8-bit integer
Supplementary Digital Color Codes (SDCC2)
ansi_map.countRequest countRequest
No value
ansi_map.CountRequest
ansi_map.countRequestRes countRequestRes
No value
ansi_map.CountRequestRes
ansi_map.countUpdateReport countUpdateReport
Unsigned 8-bit integer
ansi_map.CountUpdateReport
ansi_map.dataAccessElement1 dataAccessElement1
No value
ansi_map.DataAccessElement
ansi_map.dataAccessElement2 dataAccessElement2
No value
ansi_map.DataAccessElement
ansi_map.dataAccessElementList dataAccessElementList
Unsigned 32-bit integer
ansi_map.DataAccessElementList
ansi_map.dataID dataID
Byte array
ansi_map.DataID
ansi_map.dataKey dataKey
Byte array
ansi_map.DataKey
ansi_map.dataPrivacyParameters dataPrivacyParameters
Byte array
ansi_map.DataPrivacyParameters
ansi_map.dataResult dataResult
Unsigned 32-bit integer
ansi_map.DataResult
ansi_map.dataUpdateResultList dataUpdateResultList
Unsigned 32-bit integer
ansi_map.DataUpdateResultList
ansi_map.dataValue dataValue
Byte array
ansi_map.DataValue
ansi_map.databaseKey databaseKey
Byte array
ansi_map.DatabaseKey
ansi_map.deniedAuthorizationPeriod deniedAuthorizationPeriod
Byte array
ansi_map.DeniedAuthorizationPeriod
ansi_map.deniedauthorizationperiod.period Period
Unsigned 8-bit integer
Period
ansi_map.denyAccess denyAccess
Unsigned 32-bit integer
ansi_map.DenyAccess
ansi_map.deregistrationType deregistrationType
Unsigned 32-bit integer
ansi_map.DeregistrationType
ansi_map.destinationAddress destinationAddress
Unsigned 32-bit integer
ansi_map.DestinationAddress
ansi_map.destinationDigits destinationDigits
Byte array
ansi_map.DestinationDigits
ansi_map.digitCollectionControl digitCollectionControl
Byte array
ansi_map.DigitCollectionControl
ansi_map.digits digits
No value
ansi_map.Digits
ansi_map.digits_Carrier digits-Carrier
No value
ansi_map.Digits
ansi_map.digits_Destination digits-Destination
No value
ansi_map.Digits
ansi_map.digits_carrier digits-carrier
No value
ansi_map.Digits
ansi_map.digits_dest digits-dest
No value
ansi_map.Digits
ansi_map.displayText displayText
Byte array
ansi_map.DisplayText
ansi_map.displayText2 displayText2
Byte array
ansi_map.DisplayText2
ansi_map.dmd_BillingIndicator dmd-BillingIndicator
Unsigned 32-bit integer
ansi_map.DMH_BillingIndicator
ansi_map.dmh_AccountCodeDigits dmh-AccountCodeDigits
Byte array
ansi_map.DMH_AccountCodeDigits
ansi_map.dmh_AlternateBillingDigits dmh-AlternateBillingDigits
Byte array
ansi_map.DMH_AlternateBillingDigits
ansi_map.dmh_BillingDigits dmh-BillingDigits
Byte array
ansi_map.DMH_BillingDigits
ansi_map.dmh_ChargeInformation dmh-ChargeInformation
Byte array
ansi_map.DMH_ChargeInformation
ansi_map.dmh_RedirectionIndicator dmh-RedirectionIndicator
Unsigned 32-bit integer
ansi_map.DMH_RedirectionIndicator
ansi_map.dmh_ServiceID dmh-ServiceID
Byte array
ansi_map.DMH_ServiceID
ansi_map.dropService dropService
No value
ansi_map.DropService
ansi_map.dropServiceRes dropServiceRes
No value
ansi_map.DropServiceRes
ansi_map.dtxIndication dtxIndication
Byte array
ansi_map.DTXIndication
ansi_map.edirectingSubaddress edirectingSubaddress
Byte array
ansi_map.RedirectingSubaddress
ansi_map.electronicSerialNumber electronicSerialNumber
Byte array
ansi_map.ElectronicSerialNumber
ansi_map.emergencyServicesRoutingDigits emergencyServicesRoutingDigits
Byte array
ansi_map.EmergencyServicesRoutingDigits
ansi_map.enc Encoding
Unsigned 8-bit integer
Encoding
ansi_map.executeScript executeScript
No value
ansi_map.ExecuteScript
ansi_map.extendedMSCID extendedMSCID
Byte array
ansi_map.ExtendedMSCID
ansi_map.extendedSystemMyTypeCode extendedSystemMyTypeCode
Byte array
ansi_map.ExtendedSystemMyTypeCode
ansi_map.extendedmscid.type Type
Unsigned 8-bit integer
Type
ansi_map.facilitiesDirective facilitiesDirective
No value
ansi_map.FacilitiesDirective
ansi_map.facilitiesDirective2 facilitiesDirective2
No value
ansi_map.FacilitiesDirective2
ansi_map.facilitiesDirective2Res facilitiesDirective2Res
No value
ansi_map.FacilitiesDirective2Res
ansi_map.facilitiesDirectiveRes facilitiesDirectiveRes
No value
ansi_map.FacilitiesDirectiveRes
ansi_map.facilitiesRelease facilitiesRelease
No value
ansi_map.FacilitiesRelease
ansi_map.facilitiesReleaseRes facilitiesReleaseRes
No value
ansi_map.FacilitiesReleaseRes
ansi_map.facilitySelectedAndAvailable facilitySelectedAndAvailable
No value
ansi_map.FacilitySelectedAndAvailable
ansi_map.facilitySelectedAndAvailableRes facilitySelectedAndAvailableRes
No value
ansi_map.FacilitySelectedAndAvailableRes
ansi_map.failureCause failureCause
Byte array
ansi_map.FailureCause
ansi_map.failureType failureType
Unsigned 32-bit integer
ansi_map.FailureType
ansi_map.featureIndicator featureIndicator
Unsigned 32-bit integer
ansi_map.FeatureIndicator
ansi_map.featureRequest featureRequest
No value
ansi_map.FeatureRequest
ansi_map.featureRequestRes featureRequestRes
No value
ansi_map.FeatureRequestRes
ansi_map.featureResult featureResult
Unsigned 32-bit integer
ansi_map.FeatureResult
ansi_map.flashRequest flashRequest
No value
ansi_map.FlashRequest
ansi_map.gapDuration gapDuration
Unsigned 32-bit integer
ansi_map.GapDuration
ansi_map.gapInterval gapInterval
Unsigned 32-bit integer
ansi_map.GapInterval
ansi_map.generalizedTime generalizedTime
String
ansi_map.GeneralizedTime
ansi_map.geoPositionRequest geoPositionRequest
No value
ansi_map.GeoPositionRequest
ansi_map.geographicAuthorization geographicAuthorization
Unsigned 8-bit integer
ansi_map.GeographicAuthorization
ansi_map.geographicPosition geographicPosition
Byte array
ansi_map.GeographicPosition
ansi_map.globalTitle globalTitle
Byte array
ansi_map.GlobalTitle
ansi_map.groupInformation groupInformation
Byte array
ansi_map.GroupInformation
ansi_map.handoffBack handoffBack
No value
ansi_map.HandoffBack
ansi_map.handoffBack2 handoffBack2
No value
ansi_map.HandoffBack2
ansi_map.handoffBack2Res handoffBack2Res
No value
ansi_map.HandoffBack2Res
ansi_map.handoffBackRes handoffBackRes
No value
ansi_map.HandoffBackRes
ansi_map.handoffMeasurementRequest handoffMeasurementRequest
No value
ansi_map.HandoffMeasurementRequest
ansi_map.handoffMeasurementRequest2 handoffMeasurementRequest2
No value
ansi_map.HandoffMeasurementRequest2
ansi_map.handoffMeasurementRequest2Res handoffMeasurementRequest2Res
No value
ansi_map.HandoffMeasurementRequest2Res
ansi_map.handoffMeasurementRequestRes handoffMeasurementRequestRes
No value
ansi_map.HandoffMeasurementRequestRes
ansi_map.handoffReason handoffReason
Unsigned 32-bit integer
ansi_map.HandoffReason
ansi_map.handoffState handoffState
Byte array
ansi_map.HandoffState
ansi_map.handoffToThird handoffToThird
No value
ansi_map.HandoffToThird
ansi_map.handoffToThird2 handoffToThird2
No value
ansi_map.HandoffToThird2
ansi_map.handoffToThird2Res handoffToThird2Res
No value
ansi_map.HandoffToThird2Res
ansi_map.handoffToThirdRes handoffToThirdRes
No value
ansi_map.HandoffToThirdRes
ansi_map.handoffstate.pi Party Involved (PI)
Boolean
Party Involved (PI)
ansi_map.horizontal_Velocity horizontal-Velocity
Byte array
ansi_map.Horizontal_Velocity
ansi_map.ia5_digits IA5 digits
String
IA5 digits
ansi_map.idno ID Number
Unsigned 32-bit integer
ID Number
ansi_map.ilspInformation ilspInformation
Unsigned 8-bit integer
ansi_map.ISLPInformation
ansi_map.imsi imsi
Byte array
gsm_map.IMSI
ansi_map.informationDirective informationDirective
No value
ansi_map.InformationDirective
ansi_map.informationDirectiveRes informationDirectiveRes
No value
ansi_map.InformationDirectiveRes
ansi_map.informationForward informationForward
No value
ansi_map.InformationForward
ansi_map.informationForwardRes informationForwardRes
No value
ansi_map.InformationForwardRes
ansi_map.information_Record information-Record
Byte array
ansi_map.Information_Record
ansi_map.interMSCCircuitID interMSCCircuitID
No value
ansi_map.InterMSCCircuitID
ansi_map.interMessageTime interMessageTime
Byte array
ansi_map.InterMessageTime
ansi_map.interSwitchCount interSwitchCount
Unsigned 32-bit integer
ansi_map.InterSwitchCount
ansi_map.interSystemAnswer interSystemAnswer
No value
ansi_map.InterSystemAnswer
ansi_map.interSystemPage interSystemPage
No value
ansi_map.InterSystemPage
ansi_map.interSystemPage2 interSystemPage2
No value
ansi_map.InterSystemPage2
ansi_map.interSystemPage2Res interSystemPage2Res
No value
ansi_map.InterSystemPage2Res
ansi_map.interSystemPageRes interSystemPageRes
No value
ansi_map.InterSystemPageRes
ansi_map.interSystemPositionRequest interSystemPositionRequest
No value
ansi_map.InterSystemPositionRequest
ansi_map.interSystemPositionRequestForward interSystemPositionRequestForward
No value
ansi_map.InterSystemPositionRequestForward
ansi_map.interSystemPositionRequestForwardRes interSystemPositionRequestForwardRes
No value
ansi_map.InterSystemPositionRequestForwardRes
ansi_map.interSystemPositionRequestRes interSystemPositionRequestRes
No value
ansi_map.InterSystemPositionRequestRes
ansi_map.interSystemSetup interSystemSetup
No value
ansi_map.InterSystemSetup
ansi_map.interSystemSetupRes interSystemSetupRes
No value
ansi_map.InterSystemSetupRes
ansi_map.intersystemTermination intersystemTermination
No value
ansi_map.IntersystemTermination
ansi_map.invokingNEType invokingNEType
Signed 32-bit integer
ansi_map.InvokingNEType
ansi_map.lcsBillingID lcsBillingID
Byte array
ansi_map.LCSBillingID
ansi_map.lcsParameterRequest lcsParameterRequest
No value
ansi_map.LCSParameterRequest
ansi_map.lcsParameterRequestRes lcsParameterRequestRes
No value
ansi_map.LCSParameterRequestRes
ansi_map.lcs_Client_ID lcs-Client-ID
Byte array
ansi_map.LCS_Client_ID
ansi_map.lectronicSerialNumber lectronicSerialNumber
Byte array
ansi_map.ElectronicSerialNumber
ansi_map.legInformation legInformation
Byte array
ansi_map.LegInformation
ansi_map.lirAuthorization lirAuthorization
Unsigned 32-bit integer
ansi_map.LIRAuthorization
ansi_map.lirMode lirMode
Unsigned 32-bit integer
ansi_map.LIRMode
ansi_map.localTermination localTermination
No value
ansi_map.LocalTermination
ansi_map.locationAreaID locationAreaID
Byte array
ansi_map.LocationAreaID
ansi_map.locationRequest locationRequest
No value
ansi_map.LocationRequest
ansi_map.locationRequestRes locationRequestRes
No value
ansi_map.LocationRequestRes
ansi_map.mSCIdentificationNumber mSCIdentificationNumber
No value
ansi_map.MSCIdentificationNumber
ansi_map.mSIDUsage mSIDUsage
Unsigned 8-bit integer
ansi_map.MSIDUsage
ansi_map.mSInactive mSInactive
No value
ansi_map.MSInactive
ansi_map.mSStatus mSStatus
Byte array
ansi_map.MSStatus
ansi_map.marketid MarketID
Unsigned 16-bit integer
MarketID
ansi_map.meid meid
Byte array
ansi_map.MEID
ansi_map.meidStatus meidStatus
Byte array
ansi_map.MEIDStatus
ansi_map.meidValidated meidValidated
No value
ansi_map.MEIDValidated
ansi_map.messageDirective messageDirective
No value
ansi_map.MessageDirective
ansi_map.messageWaitingNotificationCount messageWaitingNotificationCount
Byte array
ansi_map.MessageWaitingNotificationCount
ansi_map.messageWaitingNotificationType messageWaitingNotificationType
Byte array
ansi_map.MessageWaitingNotificationType
ansi_map.messagewaitingnotificationcount.mwi Message Waiting Indication (MWI)
Unsigned 8-bit integer
Message Waiting Indication (MWI)
ansi_map.messagewaitingnotificationcount.nomw Number of Messages Waiting
Unsigned 8-bit integer
Number of Messages Waiting
ansi_map.messagewaitingnotificationcount.tom Type of messages
Unsigned 8-bit integer
Type of messages
ansi_map.messagewaitingnotificationtype.apt Alert Pip Tone (APT)
Boolean
Alert Pip Tone (APT)
ansi_map.messagewaitingnotificationtype.pt Pip Tone (PT)
Unsigned 8-bit integer
Pip Tone (PT)
ansi_map.mobileDirectoryNumber mobileDirectoryNumber
No value
ansi_map.MobileDirectoryNumber
ansi_map.mobileIdentificationNumber mobileIdentificationNumber
No value
ansi_map.MobileIdentificationNumber
ansi_map.mobilePositionCapability mobilePositionCapability
Byte array
ansi_map.MobilePositionCapability
ansi_map.mobileStationIMSI mobileStationIMSI
Byte array
ansi_map.MobileStationIMSI
ansi_map.mobileStationMIN mobileStationMIN
No value
ansi_map.MobileStationMIN
ansi_map.mobileStationMSID mobileStationMSID
Unsigned 32-bit integer
ansi_map.MobileStationMSID
ansi_map.mobileStationPartialKey mobileStationPartialKey
Byte array
ansi_map.MobileStationPartialKey
ansi_map.modificationRequestList modificationRequestList
Unsigned 32-bit integer
ansi_map.ModificationRequestList
ansi_map.modificationResultList modificationResultList
Unsigned 32-bit integer
ansi_map.ModificationResultList
ansi_map.modify modify
No value
ansi_map.Modify
ansi_map.modifyRes modifyRes
No value
ansi_map.ModifyRes
ansi_map.modulusValue modulusValue
Byte array
ansi_map.ModulusValue
ansi_map.mpcAddress mpcAddress
Byte array
ansi_map.MPCAddress
ansi_map.mpcAddress2 mpcAddress2
Byte array
ansi_map.MPCAddress
ansi_map.mpcAddressList mpcAddressList
No value
ansi_map.MPCAddressList
ansi_map.mpcid mpcid
Byte array
ansi_map.MPCID
ansi_map.msLocation msLocation
Byte array
ansi_map.MSLocation
ansi_map.msc_Address msc-Address
Byte array
ansi_map.MSC_Address
ansi_map.mscid mscid
Byte array
ansi_map.MSCID
ansi_map.msid msid
Unsigned 32-bit integer
ansi_map.MSID
ansi_map.mslocation.lat Latitude in tenths of a second
Unsigned 8-bit integer
Latitude in tenths of a second
ansi_map.mslocation.long Longitude in tenths of a second
Unsigned 8-bit integer
Switch Number (SWNO)
ansi_map.mslocation.res Resolution in units of 1 foot
Unsigned 8-bit integer
Resolution in units of 1 foot
ansi_map.na Nature of Number
Boolean
Nature of Number
ansi_map.nampsCallMode nampsCallMode
Byte array
ansi_map.NAMPSCallMode
ansi_map.nampsChannelData nampsChannelData
Byte array
ansi_map.NAMPSChannelData
ansi_map.nampscallmode.amps Call Mode
Boolean
Call Mode
ansi_map.nampscallmode.namps Call Mode
Boolean
Call Mode
ansi_map.nampschanneldata.ccindicator Color Code Indicator (CCIndicator)
Unsigned 8-bit integer
Color Code Indicator (CCIndicator)
ansi_map.nampschanneldata.navca Narrow Analog Voice Channel Assignment (NAVCA)
Unsigned 8-bit integer
Narrow Analog Voice Channel Assignment (NAVCA)
ansi_map.navail Numer available indication
Boolean
Numer available indication
ansi_map.networkTMSI networkTMSI
Byte array
ansi_map.NetworkTMSI
ansi_map.networkTMSIExpirationTime networkTMSIExpirationTime
Byte array
ansi_map.NetworkTMSIExpirationTime
ansi_map.newMINExtension newMINExtension
Byte array
ansi_map.NewMINExtension
ansi_map.newNetworkTMSI newNetworkTMSI
Byte array
ansi_map.NewNetworkTMSI
ansi_map.newlyAssignedIMSI newlyAssignedIMSI
Byte array
ansi_map.NewlyAssignedIMSI
ansi_map.newlyAssignedMIN newlyAssignedMIN
No value
ansi_map.NewlyAssignedMIN
ansi_map.newlyAssignedMSID newlyAssignedMSID
Unsigned 32-bit integer
ansi_map.NewlyAssignedMSID
ansi_map.noAnswerTime noAnswerTime
Byte array
ansi_map.NoAnswerTime
ansi_map.nonPublicData nonPublicData
Byte array
ansi_map.NonPublicData
ansi_map.np Numbering Plan
Unsigned 8-bit integer
Numbering Plan
ansi_map.nr_digits Number of Digits
Unsigned 8-bit integer
Number of Digits
ansi_map.numberPortabilityRequest numberPortabilityRequest
No value
ansi_map.NumberPortabilityRequest
ansi_map.oAnswer oAnswer
No value
ansi_map.OAnswer
ansi_map.oCalledPartyBusy oCalledPartyBusy
No value
ansi_map.OCalledPartyBusy
ansi_map.oCalledPartyBusyRes oCalledPartyBusyRes
No value
ansi_map.OCalledPartyBusyRes
ansi_map.oDisconnect oDisconnect
No value
ansi_map.ODisconnect
ansi_map.oDisconnectRes oDisconnectRes
No value
ansi_map.ODisconnectRes
ansi_map.oNoAnswer oNoAnswer
No value
ansi_map.ONoAnswer
ansi_map.oNoAnswerRes oNoAnswerRes
No value
ansi_map.ONoAnswerRes
ansi_map.oTASPRequest oTASPRequest
No value
ansi_map.OTASPRequest
ansi_map.oTASPRequestRes oTASPRequestRes
No value
ansi_map.OTASPRequestRes
ansi_map.ocdmacallmode.amps Call Mode
Boolean
Call Mode
ansi_map.oneTimeFeatureIndicator oneTimeFeatureIndicator
Byte array
ansi_map.OneTimeFeatureIndicator
ansi_map.op_code Operation Code
Unsigned 8-bit integer
Operation Code
ansi_map.op_code_fam Operation Code Family
Unsigned 8-bit integer
Operation Code Family
ansi_map.originationIndicator originationIndicator
Unsigned 32-bit integer
ansi_map.OriginationIndicator
ansi_map.originationRequest originationRequest
No value
ansi_map.OriginationRequest
ansi_map.originationRequestRes originationRequestRes
No value
ansi_map.OriginationRequestRes
ansi_map.originationTriggers originationTriggers
Byte array
ansi_map.OriginationTriggers
ansi_map.originationrestrictions.default DEFAULT
Unsigned 8-bit integer
DEFAULT
ansi_map.originationrestrictions.direct DIRECT
Boolean
DIRECT
ansi_map.originationrestrictions.fmc Force Message Center (FMC)
Boolean
Force Message Center (FMC)
ansi_map.originationtriggers.all All Origination (All)
Boolean
All Origination (All)
ansi_map.originationtriggers.dp Double Pound (DP)
Boolean
Double Pound (DP)
ansi_map.originationtriggers.ds Double Star (DS)
Boolean
Double Star (DS)
ansi_map.originationtriggers.eight 8 digits
Boolean
8 digits
ansi_map.originationtriggers.eleven 11 digits
Boolean
11 digits
ansi_map.originationtriggers.fifteen 15 digits
Boolean
15 digits
ansi_map.originationtriggers.fivedig 5 digits
Boolean
5 digits
ansi_map.originationtriggers.fourdig 4 digits
Boolean
4 digits
ansi_map.originationtriggers.fourteen 14 digits
Boolean
14 digits
ansi_map.originationtriggers.ilata Intra-LATA Toll (ILATA)
Boolean
Intra-LATA Toll (ILATA)
ansi_map.originationtriggers.int International (Int'l )
Boolean
International (Int'l )
ansi_map.originationtriggers.nine 9 digits
Boolean
9 digits
ansi_map.originationtriggers.nodig No digits
Boolean
No digits
ansi_map.originationtriggers.olata Inter-LATA Toll (OLATA)
Boolean
Inter-LATA Toll (OLATA)
ansi_map.originationtriggers.onedig 1 digit
Boolean
1 digit
ansi_map.originationtriggers.pa Prior Agreement (PA)
Boolean
Prior Agreement (PA)
ansi_map.originationtriggers.pound Pound
Boolean
Pound
ansi_map.originationtriggers.rvtc Revertive Call (RvtC)
Boolean
Revertive Call (RvtC)
ansi_map.originationtriggers.sevendig 7 digits
Boolean
7 digits
ansi_map.originationtriggers.sixdig 6 digits
Boolean
6 digits
ansi_map.originationtriggers.star Star
Boolean
Star
ansi_map.originationtriggers.ten 10 digits
Boolean
10 digits
ansi_map.originationtriggers.thirteen 13 digits
Boolean
13 digits
ansi_map.originationtriggers.threedig 3 digits
Boolean
3 digits
ansi_map.originationtriggers.thwelv 12 digits
Boolean
12 digits
ansi_map.originationtriggers.twodig 2 digits
Boolean
2 digits
ansi_map.originationtriggers.unrec Unrecognized Number (Unrec)
Boolean
Unrecognized Number (Unrec)
ansi_map.originationtriggers.wz World Zone (WZ)
Boolean
World Zone (WZ)
ansi_map.otasp_ResultCode otasp-ResultCode
Unsigned 8-bit integer
ansi_map.OTASP_ResultCode
ansi_map.outingDigits outingDigits
Byte array
ansi_map.RoutingDigits
ansi_map.pACAIndicator pACAIndicator
Byte array
ansi_map.PACAIndicator
ansi_map.pC_SSN pC-SSN
Byte array
ansi_map.PC_SSN
ansi_map.pSID_RSIDInformation pSID-RSIDInformation
Byte array
ansi_map.PSID_RSIDInformation
ansi_map.pSID_RSIDInformation1 pSID-RSIDInformation1
Byte array
ansi_map.PSID_RSIDInformation
ansi_map.pSID_RSIDList pSID-RSIDList
No value
ansi_map.PSID_RSIDList
ansi_map.pacaindicator_pa Permanent Activation (PA)
Boolean
Permanent Activation (PA)
ansi_map.pageCount pageCount
Byte array
ansi_map.PageCount
ansi_map.pageIndicator pageIndicator
Unsigned 8-bit integer
ansi_map.PageIndicator
ansi_map.pageResponseTime pageResponseTime
Byte array
ansi_map.PageResponseTime
ansi_map.pagingFrameClass pagingFrameClass
Unsigned 8-bit integer
ansi_map.PagingFrameClass
ansi_map.parameterRequest parameterRequest
No value
ansi_map.ParameterRequest
ansi_map.parameterRequestRes parameterRequestRes
No value
ansi_map.ParameterRequestRes
ansi_map.pc_ssn pc-ssn
Byte array
ansi_map.PC_SSN
ansi_map.pdsnAddress pdsnAddress
Byte array
ansi_map.PDSNAddress
ansi_map.pdsnProtocolType pdsnProtocolType
Byte array
ansi_map.PDSNProtocolType
ansi_map.pilotBillingID pilotBillingID
Byte array
ansi_map.PilotBillingID
ansi_map.pilotNumber pilotNumber
Byte array
ansi_map.PilotNumber
ansi_map.positionEventNotification positionEventNotification
No value
ansi_map.PositionEventNotification
ansi_map.positionInformation positionInformation
No value
ansi_map.PositionInformation
ansi_map.positionInformationCode positionInformationCode
Byte array
ansi_map.PositionInformationCode
ansi_map.positionRequest positionRequest
No value
ansi_map.PositionRequest
ansi_map.positionRequestForward positionRequestForward
No value
ansi_map.PositionRequestForward
ansi_map.positionRequestForwardRes positionRequestForwardRes
No value
ansi_map.PositionRequestForwardRes
ansi_map.positionRequestRes positionRequestRes
No value
ansi_map.PositionRequestRes
ansi_map.positionRequestType positionRequestType
Byte array
ansi_map.PositionRequestType
ansi_map.positionResult positionResult
Byte array
ansi_map.PositionResult
ansi_map.positionSource positionSource
Byte array
ansi_map.PositionSource
ansi_map.pqos_HorizontalPosition pqos-HorizontalPosition
Byte array
ansi_map.PQOS_HorizontalPosition
ansi_map.pqos_HorizontalVelocity pqos-HorizontalVelocity
Byte array
ansi_map.PQOS_HorizontalVelocity
ansi_map.pqos_MaximumPositionAge pqos-MaximumPositionAge
Byte array
ansi_map.PQOS_MaximumPositionAge
ansi_map.pqos_PositionPriority pqos-PositionPriority
Byte array
ansi_map.PQOS_PositionPriority
ansi_map.pqos_ResponseTime pqos-ResponseTime
Unsigned 32-bit integer
ansi_map.PQOS_ResponseTime
ansi_map.pqos_VerticalPosition pqos-VerticalPosition
Byte array
ansi_map.PQOS_VerticalPosition
ansi_map.pqos_VerticalVelocity pqos-VerticalVelocity
Byte array
ansi_map.PQOS_VerticalVelocity
ansi_map.preferredLanguageIndicator preferredLanguageIndicator
Unsigned 8-bit integer
ansi_map.PreferredLanguageIndicator
ansi_map.primitiveValue primitiveValue
Byte array
ansi_map.PrimitiveValue
ansi_map.privateSpecializedResource privateSpecializedResource
Byte array
ansi_map.PrivateSpecializedResource
ansi_map.pstnTermination pstnTermination
No value
ansi_map.PSTNTermination
ansi_map.qosPriority qosPriority
Byte array
ansi_map.QoSPriority
ansi_map.qualificationDirective qualificationDirective
No value
ansi_map.QualificationDirective
ansi_map.qualificationInformationCode qualificationInformationCode
Unsigned 32-bit integer
ansi_map.QualificationInformationCode
ansi_map.qualificationRequest qualificationRequest
No value
ansi_map.QualificationRequest
ansi_map.qualificationRequestRes qualificationRequestRes
No value
ansi_map.QualificationRequestRes
ansi_map.randValidTime randValidTime
Byte array
ansi_map.RANDValidTime
ansi_map.randc randc
Byte array
ansi_map.RANDC
ansi_map.randomVariable randomVariable
Byte array
ansi_map.RandomVariable
ansi_map.randomVariableBaseStation randomVariableBaseStation
Byte array
ansi_map.RandomVariableBaseStation
ansi_map.randomVariableReauthentication randomVariableReauthentication
Byte array
ansi_map.RandomVariableReauthentication
ansi_map.randomVariableRequest randomVariableRequest
No value
ansi_map.RandomVariableRequest
ansi_map.randomVariableRequestRes randomVariableRequestRes
No value
ansi_map.RandomVariableRequestRes
ansi_map.randomVariableSSD randomVariableSSD
Byte array
ansi_map.RandomVariableSSD
ansi_map.randomVariableUniqueChallenge randomVariableUniqueChallenge
Byte array
ansi_map.RandomVariableUniqueChallenge
ansi_map.range range
Signed 32-bit integer
ansi_map.Range
ansi_map.reasonList reasonList
Unsigned 32-bit integer
ansi_map.ReasonList
ansi_map.reauthenticationReport reauthenticationReport
Unsigned 8-bit integer
ansi_map.ReauthenticationReport
ansi_map.receivedSignalQuality receivedSignalQuality
Unsigned 32-bit integer
ansi_map.ReceivedSignalQuality
ansi_map.record_Type record-Type
Byte array
ansi_map.Record_Type
ansi_map.redirectingNumberDigits redirectingNumberDigits
Byte array
ansi_map.RedirectingNumberDigits
ansi_map.redirectingNumberString redirectingNumberString
Byte array
ansi_map.RedirectingNumberString
ansi_map.redirectingPartyName redirectingPartyName
Byte array
ansi_map.RedirectingPartyName
ansi_map.redirectingSubaddress redirectingSubaddress
Byte array
ansi_map.RedirectingSubaddress
ansi_map.redirectionDirective redirectionDirective
No value
ansi_map.RedirectionDirective
ansi_map.redirectionReason redirectionReason
Unsigned 32-bit integer
ansi_map.RedirectionReason
ansi_map.redirectionRequest redirectionRequest
No value
ansi_map.RedirectionRequest
ansi_map.registrationCancellation registrationCancellation
No value
ansi_map.RegistrationCancellation
ansi_map.registrationCancellationRes registrationCancellationRes
No value
ansi_map.RegistrationCancellationRes
ansi_map.registrationNotification registrationNotification
No value
ansi_map.RegistrationNotification
ansi_map.registrationNotificationRes registrationNotificationRes
No value
ansi_map.RegistrationNotificationRes
ansi_map.releaseCause releaseCause
Unsigned 32-bit integer
ansi_map.ReleaseCause
ansi_map.releaseReason releaseReason
Unsigned 32-bit integer
ansi_map.ReleaseReason
ansi_map.remoteUserInteractionDirective remoteUserInteractionDirective
No value
ansi_map.RemoteUserInteractionDirective
ansi_map.remoteUserInteractionDirectiveRes remoteUserInteractionDirectiveRes
No value
ansi_map.RemoteUserInteractionDirectiveRes
ansi_map.reportType reportType
Unsigned 32-bit integer
ansi_map.ReportType
ansi_map.reportType2 reportType2
Unsigned 32-bit integer
ansi_map.ReportType
ansi_map.requiredParametersMask requiredParametersMask
Byte array
ansi_map.RequiredParametersMask
ansi_map.reserved_bitED Reserved
Unsigned 8-bit integer
Reserved
ansi_map.reserved_bitFED Reserved
Unsigned 8-bit integer
Reserved
ansi_map.reserved_bitH Reserved
Boolean
Reserved
ansi_map.reserved_bitHG Reserved
Unsigned 8-bit integer
Reserved
ansi_map.reserved_bitHGFE Reserved
Unsigned 8-bit integer
Reserved
ansi_map.resetCircuit resetCircuit
No value
ansi_map.ResetCircuit
ansi_map.resetCircuitRes resetCircuitRes
No value
ansi_map.ResetCircuitRes
ansi_map.restrictionDigits restrictionDigits
Byte array
ansi_map.RestrictionDigits
ansi_map.resumePIC resumePIC
Unsigned 32-bit integer
ansi_map.ResumePIC
ansi_map.roamerDatabaseVerificationRequest roamerDatabaseVerificationRequest
No value
ansi_map.RoamerDatabaseVerificationRequest
ansi_map.roamerDatabaseVerificationRequestRes roamerDatabaseVerificationRequestRes
No value
ansi_map.RoamerDatabaseVerificationRequestRes
ansi_map.roamingIndication roamingIndication
Byte array
ansi_map.RoamingIndication
ansi_map.routingDigits routingDigits
Byte array
ansi_map.RoutingDigits
ansi_map.routingRequest routingRequest
No value
ansi_map.RoutingRequest
ansi_map.routingRequestRes routingRequestRes
No value
ansi_map.RoutingRequestRes
ansi_map.sCFOverloadGapInterval sCFOverloadGapInterval
Unsigned 32-bit integer
ansi_map.SCFOverloadGapInterval
ansi_map.sMSDeliveryBackward sMSDeliveryBackward
No value
ansi_map.SMSDeliveryBackward
ansi_map.sMSDeliveryBackwardRes sMSDeliveryBackwardRes
No value
ansi_map.SMSDeliveryBackwardRes
ansi_map.sMSDeliveryForward sMSDeliveryForward
No value
ansi_map.SMSDeliveryForward
ansi_map.sMSDeliveryForwardRes sMSDeliveryForwardRes
No value
ansi_map.SMSDeliveryForwardRes
ansi_map.sMSDeliveryPointToPoint sMSDeliveryPointToPoint
No value
ansi_map.SMSDeliveryPointToPoint
ansi_map.sMSDeliveryPointToPointRes sMSDeliveryPointToPointRes
No value
ansi_map.SMSDeliveryPointToPointRes
ansi_map.sMSNotification sMSNotification
No value
ansi_map.SMSNotification
ansi_map.sMSNotificationRes sMSNotificationRes
No value
ansi_map.SMSNotificationRes
ansi_map.sMSRequest sMSRequest
No value
ansi_map.SMSRequest
ansi_map.sMSRequestRes sMSRequestRes
No value
ansi_map.SMSRequestRes
ansi_map.sOCStatus sOCStatus
Unsigned 8-bit integer
ansi_map.SOCStatus
ansi_map.sRFDirective sRFDirective
No value
ansi_map.SRFDirective
ansi_map.sRFDirectiveRes sRFDirectiveRes
No value
ansi_map.SRFDirectiveRes
ansi_map.scriptArgument scriptArgument
Byte array
ansi_map.ScriptArgument
ansi_map.scriptName scriptName
Byte array
ansi_map.ScriptName
ansi_map.scriptResult scriptResult
Byte array
ansi_map.ScriptResult
ansi_map.search search
No value
ansi_map.Search
ansi_map.searchRes searchRes
No value
ansi_map.SearchRes
ansi_map.segcount Segment Counter
Unsigned 8-bit integer
Segment Counter
ansi_map.seizeResource seizeResource
No value
ansi_map.SeizeResource
ansi_map.seizeResourceRes seizeResourceRes
No value
ansi_map.SeizeResourceRes
ansi_map.seizureType seizureType
Unsigned 32-bit integer
ansi_map.SeizureType
ansi_map.senderIdentificationNumber senderIdentificationNumber
No value
ansi_map.SenderIdentificationNumber
ansi_map.serviceDataAccessElementList serviceDataAccessElementList
Unsigned 32-bit integer
ansi_map.ServiceDataAccessElementList
ansi_map.serviceDataResultList serviceDataResultList
Unsigned 32-bit integer
ansi_map.ServiceDataResultList
ansi_map.serviceID serviceID
Byte array
ansi_map.ServiceID
ansi_map.serviceIndicator serviceIndicator
Unsigned 8-bit integer
ansi_map.ServiceIndicator
ansi_map.serviceManagementSystemGapInterval serviceManagementSystemGapInterval
Unsigned 32-bit integer
ansi_map.ServiceManagementSystemGapInterval
ansi_map.serviceRedirectionCause serviceRedirectionCause
Unsigned 8-bit integer
ansi_map.ServiceRedirectionCause
ansi_map.serviceRedirectionInfo serviceRedirectionInfo
Byte array
ansi_map.ServiceRedirectionInfo
ansi_map.serviceRequest serviceRequest
No value
ansi_map.ServiceRequest
ansi_map.serviceRequestRes serviceRequestRes
No value
ansi_map.ServiceRequestRes
ansi_map.servicesResult servicesResult
Unsigned 8-bit integer
ansi_map.ServicesResult
ansi_map.servingCellID servingCellID
Byte array
ansi_map.ServingCellID
ansi_map.setupResult setupResult
Unsigned 8-bit integer
ansi_map.SetupResult
ansi_map.sharedSecretData sharedSecretData
Byte array
ansi_map.SharedSecretData
ansi_map.si Screening indication
Unsigned 8-bit integer
Screening indication
ansi_map.signalQuality signalQuality
Unsigned 32-bit integer
ansi_map.SignalQuality
ansi_map.signalingMessageEncryptionKey signalingMessageEncryptionKey
Byte array
ansi_map.SignalingMessageEncryptionKey
ansi_map.signalingMessageEncryptionReport signalingMessageEncryptionReport
Unsigned 8-bit integer
ansi_map.SignalingMessageEncryptionReport
ansi_map.sms_AccessDeniedReason sms-AccessDeniedReason
Unsigned 8-bit integer
ansi_map.SMS_AccessDeniedReason
ansi_map.sms_Address sms-Address
No value
ansi_map.SMS_Address
ansi_map.sms_BearerData sms-BearerData
Byte array
ansi_map.SMS_BearerData
ansi_map.sms_CauseCode sms-CauseCode
Unsigned 8-bit integer
ansi_map.SMS_CauseCode
ansi_map.sms_ChargeIndicator sms-ChargeIndicator
Unsigned 8-bit integer
ansi_map.SMS_ChargeIndicator
ansi_map.sms_DestinationAddress sms-DestinationAddress
No value
ansi_map.SMS_DestinationAddress
ansi_map.sms_MessageCount sms-MessageCount
Byte array
ansi_map.SMS_MessageCount
ansi_map.sms_MessageWaitingIndicator sms-MessageWaitingIndicator
No value
ansi_map.SMS_MessageWaitingIndicator
ansi_map.sms_NotificationIndicator sms-NotificationIndicator
Unsigned 8-bit integer
ansi_map.SMS_NotificationIndicator
ansi_map.sms_OriginalDestinationAddress sms-OriginalDestinationAddress
No value
ansi_map.SMS_OriginalDestinationAddress
ansi_map.sms_OriginalDestinationSubaddress sms-OriginalDestinationSubaddress
Byte array
ansi_map.SMS_OriginalDestinationSubaddress
ansi_map.sms_OriginalOriginatingAddress sms-OriginalOriginatingAddress
No value
ansi_map.SMS_OriginalOriginatingAddress
ansi_map.sms_OriginalOriginatingSubaddress sms-OriginalOriginatingSubaddress
Byte array
ansi_map.SMS_OriginalOriginatingSubaddress
ansi_map.sms_OriginatingAddress sms-OriginatingAddress
No value
ansi_map.SMS_OriginatingAddress
ansi_map.sms_OriginationRestrictions sms-OriginationRestrictions
Byte array
ansi_map.SMS_OriginationRestrictions
ansi_map.sms_TeleserviceIdentifier sms-TeleserviceIdentifier
Byte array
ansi_map.SMS_TeleserviceIdentifier
ansi_map.sms_TerminationRestrictions sms-TerminationRestrictions
Byte array
ansi_map.SMS_TerminationRestrictions
ansi_map.specializedResource specializedResource
Byte array
ansi_map.SpecializedResource
ansi_map.spiniTriggers spiniTriggers
Byte array
ansi_map.SPINITriggers
ansi_map.spinipin spinipin
Byte array
ansi_map.SPINIPIN
ansi_map.ssdUpdateReport ssdUpdateReport
Unsigned 16-bit integer
ansi_map.SSDUpdateReport
ansi_map.ssdnotShared ssdnotShared
Unsigned 32-bit integer
ansi_map.SSDNotShared
ansi_map.stationClassMark stationClassMark
Byte array
ansi_map.StationClassMark
ansi_map.statusRequest statusRequest
No value
ansi_map.StatusRequest
ansi_map.statusRequestRes statusRequestRes
No value
ansi_map.StatusRequestRes
ansi_map.subaddr_odd_even Odd/Even Indicator
Boolean
Odd/Even Indicator
ansi_map.subaddr_type Type of Subaddress
Unsigned 8-bit integer
Type of Subaddress
ansi_map.suspiciousAccess suspiciousAccess
Unsigned 32-bit integer
ansi_map.SuspiciousAccess
ansi_map.swno Switch Number (SWNO)
Unsigned 8-bit integer
Switch Number (SWNO)
ansi_map.systemAccessData systemAccessData
Byte array
ansi_map.SystemAccessData
ansi_map.systemAccessType systemAccessType
Unsigned 32-bit integer
ansi_map.SystemAccessType
ansi_map.systemCapabilities systemCapabilities
Byte array
ansi_map.SystemCapabilities
ansi_map.systemMyTypeCode systemMyTypeCode
Unsigned 32-bit integer
ansi_map.SystemMyTypeCode
ansi_map.systemOperatorCode systemOperatorCode
Byte array
ansi_map.SystemOperatorCode
ansi_map.systemcapabilities.auth Authentication Parameters Requested (AUTH)
Boolean
Authentication Parameters Requested (AUTH)
ansi_map.systemcapabilities.cave CAVE Algorithm Capable (CAVE)
Boolean
CAVE Algorithm Capable (CAVE)
ansi_map.systemcapabilities.dp Data Privacy (DP)
Boolean
Data Privacy (DP)
ansi_map.systemcapabilities.se Signaling Message Encryption Capable (SE )
Boolean
Signaling Message Encryption Capable (SE )
ansi_map.systemcapabilities.ssd Shared SSD (SSD)
Boolean
Shared SSD (SSD)
ansi_map.systemcapabilities.vp Voice Privacy Capable (VP )
Boolean
Voice Privacy Capable (VP )
ansi_map.tAnswer tAnswer
No value
ansi_map.TAnswer
ansi_map.tBusy tBusy
No value
ansi_map.TBusy
ansi_map.tBusyRes tBusyRes
No value
ansi_map.TBusyRes
ansi_map.tDisconnect tDisconnect
No value
ansi_map.TDisconnect
ansi_map.tDisconnectRes tDisconnectRes
No value
ansi_map.TDisconnectRes
ansi_map.tMSIDirective tMSIDirective
No value
ansi_map.TMSIDirective
ansi_map.tMSIDirectiveRes tMSIDirectiveRes
No value
ansi_map.TMSIDirectiveRes
ansi_map.tNoAnswer tNoAnswer
No value
ansi_map.TNoAnswer
ansi_map.tNoAnswerRes tNoAnswerRes
No value
ansi_map.TNoAnswerRes
ansi_map.targetCellID targetCellID
Byte array
ansi_map.TargetCellID
ansi_map.targetCellID1 targetCellID1
Byte array
ansi_map.TargetCellID
ansi_map.targetCellIDList targetCellIDList
No value
ansi_map.TargetCellIDList
ansi_map.targetMeasurementList targetMeasurementList
Unsigned 32-bit integer
ansi_map.TargetMeasurementList
ansi_map.tdmaBandwidth tdmaBandwidth
Unsigned 8-bit integer
ansi_map.TDMABandwidth
ansi_map.tdmaBurstIndicator tdmaBurstIndicator
Byte array
ansi_map.TDMABurstIndicator
ansi_map.tdmaCallMode tdmaCallMode
Byte array
ansi_map.TDMACallMode
ansi_map.tdmaChannelData tdmaChannelData
Byte array
ansi_map.TDMAChannelData
ansi_map.tdmaDataFeaturesIndicator tdmaDataFeaturesIndicator
Byte array
ansi_map.TDMADataFeaturesIndicator
ansi_map.tdmaDataMode tdmaDataMode
Byte array
ansi_map.TDMADataMode
ansi_map.tdmaServiceCode tdmaServiceCode
Unsigned 8-bit integer
ansi_map.TDMAServiceCode
ansi_map.tdmaTerminalCapability tdmaTerminalCapability
Byte array
ansi_map.TDMATerminalCapability
ansi_map.tdmaVoiceCoder tdmaVoiceCoder
Byte array
ansi_map.TDMAVoiceCoder
ansi_map.tdmaVoiceMode tdmaVoiceMode
Byte array
ansi_map.TDMAVoiceMode
ansi_map.tdma_MAHORequest tdma-MAHORequest
Byte array
ansi_map.TDMA_MAHORequest
ansi_map.tdma_MAHO_CELLID tdma-MAHO-CELLID
Byte array
ansi_map.TDMA_MAHO_CELLID
ansi_map.tdma_MAHO_CHANNEL tdma-MAHO-CHANNEL
Byte array
ansi_map.TDMA_MAHO_CHANNEL
ansi_map.tdma_TimeAlignment tdma-TimeAlignment
Byte array
ansi_map.TDMA_TimeAlignment
ansi_map.teleservice_Priority teleservice-Priority
Byte array
ansi_map.Teleservice_Priority
ansi_map.temporaryReferenceNumber temporaryReferenceNumber
Byte array
ansi_map.TemporaryReferenceNumber
ansi_map.terminalType terminalType
Unsigned 32-bit integer
ansi_map.TerminalType
ansi_map.terminationAccessType terminationAccessType
Unsigned 8-bit integer
ansi_map.TerminationAccessType
ansi_map.terminationList terminationList
Unsigned 32-bit integer
ansi_map.TerminationList
ansi_map.terminationRestrictionCode terminationRestrictionCode
Unsigned 32-bit integer
ansi_map.TerminationRestrictionCode
ansi_map.terminationTreatment terminationTreatment
Unsigned 8-bit integer
ansi_map.TerminationTreatment
ansi_map.terminationTriggers terminationTriggers
Byte array
ansi_map.TerminationTriggers
ansi_map.terminationtriggers.busy Busy
Unsigned 8-bit integer
Busy
ansi_map.terminationtriggers.na No Answer (NA)
Unsigned 8-bit integer
No Answer (NA)
ansi_map.terminationtriggers.npr No Page Response (NPR)
Unsigned 8-bit integer
No Page Response (NPR)
ansi_map.terminationtriggers.nr None Reachable (NR)
Unsigned 8-bit integer
None Reachable (NR)
ansi_map.terminationtriggers.rf Routing Failure (RF)
Unsigned 8-bit integer
Routing Failure (RF)
ansi_map.tgn Trunk Group Number (G)
Unsigned 8-bit integer
Trunk Group Number (G)
ansi_map.timeDateOffset timeDateOffset
Byte array
ansi_map.TimeDateOffset
ansi_map.timeOfDay timeOfDay
Signed 32-bit integer
ansi_map.TimeOfDay
ansi_map.trans_cap_ann Announcements (ANN)
Boolean
Announcements (ANN)
ansi_map.trans_cap_busy Busy Detection (BUSY)
Boolean
Busy Detection (BUSY)
ansi_map.trans_cap_multerm Multiple Terminations
Unsigned 8-bit integer
Multiple Terminations
ansi_map.trans_cap_nami NAME Capability Indicator (NAMI)
Boolean
NAME Capability Indicator (NAMI)
ansi_map.trans_cap_ndss NDSS Capability (NDSS)
Boolean
NDSS Capability (NDSS)
ansi_map.trans_cap_prof Profile (PROF)
Boolean
Profile (PROF)
ansi_map.trans_cap_rui Remote User Interaction (RUI)
Boolean
Remote User Interaction (RUI)
ansi_map.trans_cap_spini Subscriber PIN Intercept (SPINI)
Boolean
Subscriber PIN Intercept (SPINI)
ansi_map.trans_cap_tl TerminationList (TL)
Boolean
TerminationList (TL)
ansi_map.trans_cap_uzci UZ Capability Indicator (UZCI)
Boolean
UZ Capability Indicator (UZCI)
ansi_map.trans_cap_waddr WIN Addressing (WADDR)
Boolean
WIN Addressing (WADDR)
ansi_map.transactionCapability transactionCapability
Byte array
ansi_map.TransactionCapability
ansi_map.transferToNumberRequest transferToNumberRequest
No value
ansi_map.TransferToNumberRequest
ansi_map.transferToNumberRequestRes transferToNumberRequestRes
No value
ansi_map.TransferToNumberRequestRes
ansi_map.triggerAddressList triggerAddressList
No value
ansi_map.TriggerAddressList
ansi_map.triggerCapability triggerCapability
Byte array
ansi_map.TriggerCapability
ansi_map.triggerList triggerList
No value
ansi_map.TriggerList
ansi_map.triggerListOpt triggerListOpt
No value
ansi_map.TriggerList
ansi_map.triggerType triggerType
Unsigned 32-bit integer
ansi_map.TriggerType
ansi_map.triggercapability.all All_Calls (All)
Boolean
All_Calls (All)
ansi_map.triggercapability.at Advanced_Termination (AT)
Boolean
Advanced_Termination (AT)
ansi_map.triggercapability.cdraa Called_Routing_Address_Available (CdRAA)
Boolean
Called_Routing_Address_Available (CdRAA)
ansi_map.triggercapability.cgraa Calling_Routing_Address_Available (CgRAA)
Boolean
Calling_Routing_Address_Available (CgRAA)
ansi_map.triggercapability.init Introducing Star/Pound (INIT)
Boolean
Introducing Star/Pound (INIT)
ansi_map.triggercapability.it Initial_Termination (IT)
Boolean
Initial_Termination (IT)
ansi_map.triggercapability.kdigit K-digit (K-digit)
Boolean
K-digit (K-digit)
ansi_map.triggercapability.oaa Origination_Attempt_Authorized (OAA)
Boolean
Origination_Attempt_Authorized (OAA)
ansi_map.triggercapability.oans O_Answer (OANS)
Boolean
O_Answer (OANS)
ansi_map.triggercapability.odisc O_Disconnect (ODISC)
Boolean
O_Disconnect (ODISC)
ansi_map.triggercapability.ona O_No_Answer (ONA)
Boolean
O_No_Answer (ONA)
ansi_map.triggercapability.pa Prior_Agreement (PA)
Boolean
Prior_Agreement (PA)
ansi_map.triggercapability.rvtc Revertive_Call (RvtC)
Boolean
Revertive_Call (RvtC)
ansi_map.triggercapability.tans T_Answer (TANS)
Boolean
T_Answer (TANS)
ansi_map.triggercapability.tbusy T_Busy (TBusy)
Boolean
T_Busy (TBusy)
ansi_map.triggercapability.tdisc T_Disconnect (TDISC)
Boolean
T_Disconnect (TDISC)
ansi_map.triggercapability.tna T_No_Answer (TNA)
Boolean
T_No_Answer (TNA)
ansi_map.triggercapability.tra Terminating_Resource_Available (TRA)
Boolean
Terminating_Resource_Available (TRA)
ansi_map.triggercapability.unrec Unrecognized_Number (Unrec)
Boolean
Unrecognized_Number (Unrec)
ansi_map.trunkStatus trunkStatus
Unsigned 32-bit integer
ansi_map.TrunkStatus
ansi_map.trunkTest trunkTest
No value
ansi_map.TrunkTest
ansi_map.trunkTestDisconnect trunkTestDisconnect
No value
ansi_map.TrunkTestDisconnect
ansi_map.type_of_digits Type of Digits
Unsigned 8-bit integer
Type of Digits
ansi_map.type_of_pi Presentation Indication
Boolean
Presentation Indication
ansi_map.unblocking unblocking
No value
ansi_map.Unblocking
ansi_map.uniqueChallengeReport uniqueChallengeReport
Unsigned 8-bit integer
ansi_map.UniqueChallengeReport
ansi_map.unreliableCallData unreliableCallData
No value
ansi_map.UnreliableCallData
ansi_map.unreliableRoamerDataDirective unreliableRoamerDataDirective
No value
ansi_map.UnreliableRoamerDataDirective
ansi_map.unsolicitedResponse unsolicitedResponse
No value
ansi_map.UnsolicitedResponse
ansi_map.unsolicitedResponseRes unsolicitedResponseRes
No value
ansi_map.UnsolicitedResponseRes
ansi_map.updateCount updateCount
Unsigned 32-bit integer
ansi_map.UpdateCount
ansi_map.userGroup userGroup
Byte array
ansi_map.UserGroup
ansi_map.userZoneData userZoneData
Byte array
ansi_map.UserZoneData
ansi_map.value Value
Unsigned 8-bit integer
Value
ansi_map.vertical_Velocity vertical-Velocity
Byte array
ansi_map.Vertical_Velocity
ansi_map.voiceMailboxNumber voiceMailboxNumber
Byte array
ansi_map.VoiceMailboxNumber
ansi_map.voiceMailboxPIN voiceMailboxPIN
Byte array
ansi_map.VoiceMailboxPIN
ansi_map.voicePrivacyMask voicePrivacyMask
Byte array
ansi_map.VoicePrivacyMask
ansi_map.voicePrivacyReport voicePrivacyReport
Unsigned 8-bit integer
ansi_map.VoicePrivacyReport
ansi_map.wINOperationsCapability wINOperationsCapability
Byte array
ansi_map.WINOperationsCapability
ansi_map.wIN_TriggerList wIN-TriggerList
Byte array
ansi_map.WIN_TriggerList
ansi_map.winCapability winCapability
No value
ansi_map.WINCapability
ansi_map.winoperationscapability.ccdir CallControlDirective(CCDIR)
Boolean
CallControlDirective(CCDIR)
ansi_map.winoperationscapability.conn ConnectResource (CONN)
Boolean
ConnectResource (CONN)
ansi_map.winoperationscapability.pos PositionRequest (POS)
Boolean
PositionRequest (POS)
ansi_tcap._untag_item Item
No value
ansi_tcap.EXTERNAL
ansi_tcap.abort abort
No value
ansi_tcap.T_abort
ansi_tcap.abortCause abortCause
Signed 32-bit integer
ansi_tcap.P_Abort_cause
ansi_tcap.applicationContext applicationContext
Unsigned 32-bit integer
ansi_tcap.T_applicationContext
ansi_tcap.causeInformation causeInformation
Unsigned 32-bit integer
ansi_tcap.T_causeInformation
ansi_tcap.componentID componentID
Byte array
ansi_tcap.T_componentID
ansi_tcap.componentIDs componentIDs
Byte array
ansi_tcap.T_componentIDs
ansi_tcap.componentPortion componentPortion
Unsigned 32-bit integer
ansi_tcap.ComponentSequence
ansi_tcap.confidentiality confidentiality
No value
ansi_tcap.Confidentiality
ansi_tcap.confidentialityId confidentialityId
Unsigned 32-bit integer
ansi_tcap.T_confidentialityId
ansi_tcap.conversationWithPerm conversationWithPerm
No value
ansi_tcap.T_conversationWithPerm
ansi_tcap.conversationWithoutPerm conversationWithoutPerm
No value
ansi_tcap.T_conversationWithoutPerm
ansi_tcap.dialogPortion dialogPortion
No value
ansi_tcap.DialoguePortion
ansi_tcap.dialoguePortion dialoguePortion
No value
ansi_tcap.DialoguePortion
ansi_tcap.errorCode errorCode
Unsigned 32-bit integer
ansi_tcap.ErrorCode
ansi_tcap.identifier identifier
Byte array
ansi_tcap.TransactionID
ansi_tcap.integerApplicationId integerApplicationId
Signed 32-bit integer
ansi_tcap.IntegerApplicationContext
ansi_tcap.integerConfidentialityId integerConfidentialityId
Signed 32-bit integer
ansi_tcap.INTEGER
ansi_tcap.integerSecurityId integerSecurityId
Signed 32-bit integer
ansi_tcap.INTEGER
ansi_tcap.invokeLast invokeLast
No value
ansi_tcap.Invoke
ansi_tcap.invokeNotLast invokeNotLast
No value
ansi_tcap.Invoke
ansi_tcap.national national
Signed 32-bit integer
ansi_tcap.T_national
ansi_tcap.objectApplicationId objectApplicationId
ansi_tcap.ObjectIDApplicationContext
ansi_tcap.objectConfidentialityId objectConfidentialityId
ansi_tcap.OBJECT_IDENTIFIER
ansi_tcap.objectSecurityId objectSecurityId
ansi_tcap.OBJECT_IDENTIFIER
ansi_tcap.operationCode operationCode
Unsigned 32-bit integer
ansi_tcap.OperationCode
ansi_tcap.paramSequence paramSequence
No value
ansi_tcap.T_paramSequence
ansi_tcap.paramSet paramSet
No value
ansi_tcap.T_paramSet
ansi_tcap.parameter parameter
Byte array
ansi_tcap.T_parameter
ansi_tcap.private private
Signed 32-bit integer
ansi_tcap.T_private
ansi_tcap.queryWithPerm queryWithPerm
No value
ansi_tcap.T_queryWithPerm
ansi_tcap.queryWithoutPerm queryWithoutPerm
No value
ansi_tcap.T_queryWithoutPerm
ansi_tcap.reject reject
No value
ansi_tcap.Reject
ansi_tcap.rejectProblem rejectProblem
Signed 32-bit integer
ansi_tcap.Problem
ansi_tcap.response response
No value
ansi_tcap.T_response
ansi_tcap.returnError returnError
No value
ansi_tcap.ReturnError
ansi_tcap.returnResultLast returnResultLast
No value
ansi_tcap.ReturnResult
ansi_tcap.returnResultNotLast returnResultNotLast
No value
ansi_tcap.ReturnResult
ansi_tcap.securityContext securityContext
Unsigned 32-bit integer
ansi_tcap.T_securityContext
ansi_tcap.srt.begin Begin Session
Frame number
SRT Begin of Session
ansi_tcap.srt.duplicate Request Duplicate
Unsigned 32-bit integer
ansi_tcap.srt.end End Session
Frame number
SRT End of Session
ansi_tcap.srt.session_id Session Id
Unsigned 32-bit integer
ansi_tcap.srt.sessiontime Session duration
Time duration
Duration of the TCAP session
ansi_tcap.unidirectional unidirectional
No value
ansi_tcap.T_unidirectional
ansi_tcap.userInformation userInformation
No value
ansi_tcap.UserAbortInformation
ansi_tcap.version version
Byte array
ansi_tcap.ProtocolVersion
aim.buddyname Buddy Name
String
aim.buddynamelen Buddyname len
Unsigned 8-bit integer
aim.channel Channel ID
Unsigned 8-bit integer
aim.cmd_start Command Start
Unsigned 8-bit integer
aim.data Data
Byte array
aim.datalen Data Field Length
Unsigned 16-bit integer
aim.dcinfo.addr Internal IP address
IPv4 address
aim.dcinfo.auth_cookie Authorization Cookie
Byte array
aim.dcinfo.client_futures Client Futures
Unsigned 32-bit integer
aim.dcinfo.last_ext_info_update Last Extended Info Update
Unsigned 32-bit integer
aim.dcinfo.last_ext_status_update Last Extended Status Update
Unsigned 32-bit integer
aim.dcinfo.last_info_update Last Info Update
Unsigned 32-bit integer
aim.dcinfo.proto_version Protocol Version
Unsigned 16-bit integer
aim.dcinfo.tcpport TCP Port
Unsigned 32-bit integer
aim.dcinfo.type Type
Unsigned 8-bit integer
aim.dcinfo.unknown Unknown
Unsigned 16-bit integer
aim.dcinfo.webport Web Front Port
Unsigned 32-bit integer
aim.fnac.family FNAC Family ID
Unsigned 16-bit integer
aim.fnac.flags FNAC Flags
Unsigned 16-bit integer
aim.fnac.flags.contains_version Contains Version of Family this SNAC is in
Boolean
aim.fnac.flags.next_is_related Followed By SNAC with related information
Boolean
aim.fnac.id FNAC ID
Unsigned 32-bit integer
aim.fnac.subtype FNAC Subtype ID
Unsigned 16-bit integer
aim.infotype Infotype
Unsigned 16-bit integer
aim.messageblock.charset Block Character set
Unsigned 16-bit integer
aim.messageblock.charsubset Block Character subset
Unsigned 16-bit integer
aim.messageblock.features Features
Byte array
aim.messageblock.featuresdes Features
Unsigned 16-bit integer
aim.messageblock.featureslen Features Length
Unsigned 16-bit integer
aim.messageblock.info Block info
Unsigned 16-bit integer
aim.messageblock.length Block length
Unsigned 16-bit integer
aim.messageblock.message Message
String
aim.seqno Sequence Number
Unsigned 16-bit integer
aim.signon.challenge Signon challenge
String
aim.signon.challengelen Signon challenge length
Unsigned 16-bit integer
aim.snac.error SNAC Error
Unsigned 16-bit integer
aim.tlvcount TLV Count
Unsigned 16-bit integer
aim.userclass.administrator AOL Administrator flag
Boolean
aim.userclass.away AOL away status flag
Boolean
aim.userclass.commercial AOL commercial account flag
Boolean
aim.userclass.icq ICQ user sign
Boolean
aim.userclass.noncommercial ICQ non-commercial account flag
Boolean
aim.userclass.staff AOL Staff User Flag
Boolean
aim.userclass.unconfirmed AOL Unconfirmed user flag
Boolean
aim.userclass.unknown100 Unknown bit
Boolean
aim.userclass.unknown200 Unknown bit
Boolean
aim.userclass.unknown400 Unknown bit
Boolean
aim.userclass.unknown800 Unknown bit
Boolean
aim.userclass.wireless AOL wireless user
Boolean
aim.userinfo.warninglevel Warning Level
Unsigned 16-bit integer
aim.version Protocol Version
Byte array
arcnet.dst Dest
Unsigned 8-bit integer
Dest ID
arcnet.exception_flag Exception Flag
Unsigned 8-bit integer
Exception flag
arcnet.offset Offset
Byte array
Offset
arcnet.protID Protocol ID
Unsigned 8-bit integer
Proto type
arcnet.sequence Sequence
Unsigned 16-bit integer
Sequence number
arcnet.split_flag Split Flag
Unsigned 8-bit integer
Split flag
arcnet.src Source
Unsigned 8-bit integer
Source ID
aoe.aflags.a A
Boolean
Whether this is an asynchronous write or not
aoe.aflags.d D
Boolean
aoe.aflags.e E
Boolean
Whether this is a normal or LBA48 command
aoe.aflags.w W
Boolean
Is this a command writing data to the device or not
aoe.ata.cmd ATA Cmd
Unsigned 8-bit integer
ATA command opcode
aoe.ata.status ATA Status
Unsigned 8-bit integer
ATA status bits
aoe.cmd Command
Unsigned 8-bit integer
AOE Command
aoe.err_feature Err/Feature
Unsigned 8-bit integer
Err/Feature
aoe.error Error
Unsigned 8-bit integer
Error code
aoe.lba Lba
Unsigned 64-bit integer
Lba address
aoe.major Major
Unsigned 16-bit integer
Major address
aoe.minor Minor
Unsigned 8-bit integer
Minor address
aoe.response Response flag
Boolean
Whether this is a response PDU or not
aoe.response_in Response In
Frame number
The response to this packet is in this frame
aoe.response_to Response To
Frame number
This is a response to the ATA command in this frame
aoe.sector_count Sector Count
Unsigned 8-bit integer
Sector Count
aoe.tag Tag
Unsigned 32-bit integer
Command Tag
aoe.time Time from request
Time duration
Time between Request and Reply for ATA calls
aoe.version Version
Unsigned 8-bit integer
Version of the AOE protocol
atm.aal AAL
Unsigned 8-bit integer
atm.cid CID
Unsigned 8-bit integer
atm.vci VCI
Unsigned 16-bit integer
atm.vpi VPI
Unsigned 8-bit integer
wlan.phytype PHY type
Unsigned 32-bit integer
wlancap.drops Known Dropped Frames
Unsigned 32-bit integer
wlancap.encoding Encoding Type
Unsigned 32-bit integer
wlancap.length Header length
Unsigned 32-bit integer
wlancap.magic Header magic
Unsigned 32-bit integer
wlancap.padding Padding
Byte array
wlancap.preamble Preamble
Unsigned 32-bit integer
wlancap.priority Priority
Unsigned 32-bit integer
wlancap.receiver_addr Receiver Address
6-byte Hardware (MAC) Address
Receiver Hardware Address
wlancap.sequence Receive sequence
Unsigned 32-bit integer
wlancap.ssi_noise SSI Noise
Signed 32-bit integer
wlancap.ssi_signal SSI Signal
Signed 32-bit integer
wlancap.ssi_type SSI Type
Unsigned 32-bit integer
wlancap.version Header revision
Unsigned 32-bit integer
ax4000.chassis Chassis Number
Unsigned 8-bit integer
ax4000.crc CRC (unchecked)
Unsigned 16-bit integer
ax4000.fill Fill Type
Unsigned 8-bit integer
ax4000.index Index
Unsigned 16-bit integer
ax4000.port Port Number
Unsigned 8-bit integer
ax4000.seq Sequence Number
Unsigned 32-bit integer
ax4000.timestamp Timestamp
Unsigned 32-bit integer
dssetup.dssetup_DsRoleFlags.DS_ROLE_PRIMARY_DOMAIN_GUID_PRESENT Ds Role Primary Domain Guid Present
Boolean
dssetup.dssetup_DsRoleFlags.DS_ROLE_PRIMARY_DS_MIXED_MODE Ds Role Primary Ds Mixed Mode
Boolean
dssetup.dssetup_DsRoleFlags.DS_ROLE_PRIMARY_DS_RUNNING Ds Role Primary Ds Running
Boolean
dssetup.dssetup_DsRoleFlags.DS_ROLE_UPGRADE_IN_PROGRESS Ds Role Upgrade In Progress
Boolean
dssetup.dssetup_DsRoleGetPrimaryDomainInformation.info Info
No value
dssetup.dssetup_DsRoleGetPrimaryDomainInformation.level Level
Unsigned 16-bit integer
dssetup.dssetup_DsRoleInfo.basic Basic
No value
dssetup.dssetup_DsRoleInfo.opstatus Opstatus
No value
dssetup.dssetup_DsRoleInfo.upgrade Upgrade
No value
dssetup.dssetup_DsRoleOpStatus.status Status
Unsigned 16-bit integer
dssetup.dssetup_DsRolePrimaryDomInfoBasic.dns_domain Dns Domain
String
dssetup.dssetup_DsRolePrimaryDomInfoBasic.domain Domain
String
dssetup.dssetup_DsRolePrimaryDomInfoBasic.domain_guid Domain Guid
dssetup.dssetup_DsRolePrimaryDomInfoBasic.flags Flags
Unsigned 32-bit integer
dssetup.dssetup_DsRolePrimaryDomInfoBasic.forest Forest
String
dssetup.dssetup_DsRolePrimaryDomInfoBasic.role Role
Unsigned 16-bit integer
dssetup.dssetup_DsRoleUpgradeStatus.previous_role Previous Role
Unsigned 16-bit integer
dssetup.dssetup_DsRoleUpgradeStatus.upgrading Upgrading
Unsigned 32-bit integer
dssetup.opnum Operation
Unsigned 16-bit integer
dssetup.werror Windows Error
Unsigned 32-bit integer
aodv.dest_ip Destination IP
IPv4 address
Destination IP Address
aodv.dest_ipv6 Destination IPv6
IPv6 address
Destination IPv6 Address
aodv.dest_seqno Destination Sequence Number
Unsigned 32-bit integer
Destination Sequence Number
aodv.destcount Destination Count
Unsigned 8-bit integer
Unreachable Destinations Count
aodv.ext_length Extension Length
Unsigned 8-bit integer
Extension Data Length
aodv.ext_type Extension Type
Unsigned 8-bit integer
Extension Format Type
aodv.flags Flags
Unsigned 16-bit integer
Flags
aodv.flags.rerr_nodelete RERR No Delete
Boolean
aodv.flags.rrep_ack RREP Acknowledgement
Boolean
aodv.flags.rrep_repair RREP Repair
Boolean
aodv.flags.rreq_destinationonly RREQ Destination only
Boolean
aodv.flags.rreq_gratuitous RREQ Gratuitous RREP
Boolean
aodv.flags.rreq_join RREQ Join
Boolean
aodv.flags.rreq_repair RREQ Repair
Boolean
aodv.flags.rreq_unknown RREQ Unknown Sequence Number
Boolean
aodv.hello_interval Hello Interval
Unsigned 32-bit integer
Hello Interval Extension
aodv.hopcount Hop Count
Unsigned 8-bit integer
Hop Count
aodv.lifetime Lifetime
Unsigned 32-bit integer
Lifetime
aodv.orig_ip Originator IP
IPv4 address
Originator IP Address
aodv.orig_ipv6 Originator IPv6
IPv6 address
Originator IPv6 Address
aodv.orig_seqno Originator Sequence Number
Unsigned 32-bit integer
Originator Sequence Number
aodv.prefix_sz Prefix Size
Unsigned 8-bit integer
Prefix Size
aodv.rreq_id RREQ Id
Unsigned 32-bit integer
RREQ Id
aodv.timestamp Timestamp
Unsigned 64-bit integer
Timestamp Extension
aodv.type Type
Unsigned 8-bit integer
AODV packet type
aodv.unreach_dest_ip Unreachable Destination IP
IPv4 address
Unreachable Destination IP Address
aodv.unreach_dest_ipv6 Unreachable Destination IPv6
IPv6 address
Unreachable Destination IPv6 Address
aodv.unreach_dest_seqno Unreachable Destination Sequence Number
Unsigned 32-bit integer
Unreachable Destination Sequence Number
amr.fqi FQI
Boolean
Frame quality indicator bit
amr.if1.sti SID Type Indicator
Boolean
SID Type Indicator
amr.if2.sti SID Type Indicator
Boolean
SID Type Indicator
amr.nb.cmr CMR
Unsigned 8-bit integer
codec mode request
amr.nb.if1.ft Frame Type
Unsigned 8-bit integer
Frame Type
amr.nb.if1.modeind Mode Type indication
Unsigned 8-bit integer
Mode Type indication
amr.nb.if1.modereq Mode Type request
Unsigned 8-bit integer
Mode Type request
amr.nb.if1.stimodeind Mode Type indication
Unsigned 8-bit integer
Mode Type indication
amr.nb.if2.ft Frame Type
Unsigned 8-bit integer
Frame Type
amr.nb.if2.stimodeind Mode Type indication
Unsigned 8-bit integer
Mode Type indication
amr.nb.toc.ft FT bits
Unsigned 8-bit integer
Frame type index
amr.reserved Reserved
Unsigned 8-bit integer
Reserved bits
amr.toc.f F bit
Boolean
F bit
amr.toc.q Q bit
Boolean
Frame quality indicator bit
amr.wb.cmr CMR
Unsigned 8-bit integer
codec mode request
amr.wb.if1.ft Frame Type
Unsigned 8-bit integer
Frame Type
amr.wb.if1.modeind Mode Type indication
Unsigned 8-bit integer
Mode Type indication
amr.wb.if1.modereq Mode Type request
Unsigned 8-bit integer
Mode Type request
amr.wb.if1.stimodeind Mode Type indication
Unsigned 8-bit integer
Mode Type indication
amr.wb.if2.ft Frame Type
Unsigned 8-bit integer
Frame Type
amr.wb.if2.stimodeind Mode Type indication
Unsigned 8-bit integer
Mode Type indication
amr.wb.toc.ft FT bits
Unsigned 8-bit integer
Frame type index
arp.dst.atm_num_e164 Target ATM number (E.164)
String
arp.dst.atm_num_nsap Target ATM number (NSAP)
Byte array
arp.dst.atm_subaddr Target ATM subaddress
Byte array
arp.dst.hlen Target ATM number length
Unsigned 8-bit integer
arp.dst.htype Target ATM number type
Boolean
arp.dst.hw Target hardware address
Byte array
arp.dst.hw_mac Target MAC address
6-byte Hardware (MAC) Address
arp.dst.pln Target protocol size
Unsigned 8-bit integer
arp.dst.proto Target protocol address
Byte array
arp.dst.proto_ipv4 Target IP address
IPv4 address
arp.dst.slen Target ATM subaddress length
Unsigned 8-bit integer
arp.dst.stype Target ATM subaddress type
Boolean
arp.duplicate-address-detected Duplicate IP address detected
No value
arp.duplicate-address-frame Frame showing earlier use of IP address
Frame number
arp.hw.size Hardware size
Unsigned 8-bit integer
arp.hw.type Hardware type
Unsigned 16-bit integer
arp.opcode Opcode
Unsigned 16-bit integer
arp.packet-storm-detected Packet storm detected
No value
arp.proto.size Protocol size
Unsigned 8-bit integer
arp.proto.type Protocol type
Unsigned 16-bit integer
arp.seconds-since-duplicate-address-frame Seconds since earlier frame seen
Unsigned 32-bit integer
arp.src.atm_num_e164 Sender ATM number (E.164)
String
arp.src.atm_num_nsap Sender ATM number (NSAP)
Byte array
arp.src.atm_subaddr Sender ATM subaddress
Byte array
arp.src.hlen Sender ATM number length
Unsigned 8-bit integer
arp.src.htype Sender ATM number type
Boolean
arp.src.hw Sender hardware address
Byte array
arp.src.hw_mac Sender MAC address
6-byte Hardware (MAC) Address
arp.src.pln Sender protocol size
Unsigned 8-bit integer
arp.src.proto Sender protocol address
Byte array
arp.src.proto_ipv4 Sender IP address
IPv4 address
arp.src.slen Sender ATM subaddress length
Unsigned 8-bit integer
arp.src.stype Sender ATM subaddress type
Boolean
amqp.channel Channel
Unsigned 16-bit integer
Channel ID
amqp.header.body-size Body size
Unsigned 64-bit integer
Body size
amqp.header.class Class ID
Unsigned 16-bit integer
Class ID
amqp.header.properties Properties
No value
Message properties
amqp.header.property-flags Property flags
Unsigned 16-bit integer
Property flags
amqp.header.weight Weight
Unsigned 16-bit integer
Weight
amqp.init.id_major Protocol ID Major
Unsigned 8-bit integer
Protocol ID major
amqp.init.id_minor Protocol ID Minor
Unsigned 8-bit integer
Protocol ID minor
amqp.init.protocol Protocol
String
Protocol name
amqp.init.version_major Version Major
Unsigned 8-bit integer
Protocol version major
amqp.init.version_minor Version Minor
Unsigned 8-bit integer
Protocol version minor
amqp.length Length
Unsigned 32-bit integer
Length of the frame
amqp.method.arguments Arguments
No value
Method arguments
amqp.method.arguments.active Active
Boolean
active
amqp.method.arguments.arguments Arguments
No value
arguments
amqp.method.arguments.auto_delete Auto-Delete
Boolean
auto-delete
amqp.method.arguments.capabilities Capabilities
String
capabilities
amqp.method.arguments.challenge Challenge
Byte array
challenge
amqp.method.arguments.channel_id Channel-Id
Byte array
channel-id
amqp.method.arguments.channel_max Channel-Max
Unsigned 16-bit integer
channel-max
amqp.method.arguments.class_id Class-Id
Unsigned 16-bit integer
class-id
amqp.method.arguments.client_properties Client-Properties
No value
client-properties
amqp.method.arguments.cluster_id Cluster-Id
String
cluster-id
amqp.method.arguments.consume_rate Consume-Rate
Unsigned 32-bit integer
consume-rate
amqp.method.arguments.consumer_count Consumer-Count
Unsigned 32-bit integer
consumer-count
amqp.method.arguments.consumer_tag Consumer-Tag
String
consumer-tag
amqp.method.arguments.content_size Content-Size
Unsigned 64-bit integer
content-size
amqp.method.arguments.delivery_tag Delivery-Tag
Unsigned 64-bit integer
delivery-tag
amqp.method.arguments.dtx_identifier Dtx-Identifier
String
dtx-identifier
amqp.method.arguments.durable Durable
Boolean
durable
amqp.method.arguments.exchange Exchange
String
exchange
amqp.method.arguments.exclusive Exclusive
Boolean
exclusive
amqp.method.arguments.filter Filter
No value
filter
amqp.method.arguments.frame_max Frame-Max
Unsigned 32-bit integer
frame-max
amqp.method.arguments.global Global
Boolean
global
amqp.method.arguments.heartbeat Heartbeat
Unsigned 16-bit integer
heartbeat
amqp.method.arguments.host Host
String
host
amqp.method.arguments.identifier Identifier
String
identifier
amqp.method.arguments.if_empty If-Empty
Boolean
if-empty
amqp.method.arguments.if_unused If-Unused
Boolean
if-unused
amqp.method.arguments.immediate Immediate
Boolean
immediate
amqp.method.arguments.insist Insist
Boolean
insist
amqp.method.arguments.internal Internal
Boolean
internal
amqp.method.arguments.known_hosts Known-Hosts
String
known-hosts
amqp.method.arguments.locale Locale
String
locale
amqp.method.arguments.locales Locales
Byte array
locales
amqp.method.arguments.mandatory Mandatory
Boolean
mandatory
amqp.method.arguments.mechanism Mechanism
String
mechanism
amqp.method.arguments.mechanisms Mechanisms
Byte array
mechanisms
amqp.method.arguments.message_count Message-Count
Unsigned 32-bit integer
message-count
amqp.method.arguments.meta_data Meta-Data
No value
meta-data
amqp.method.arguments.method_id Method-Id
Unsigned 16-bit integer
method-id
amqp.method.arguments.multiple Multiple
Boolean
multiple
amqp.method.arguments.no_ack No-Ack
Boolean
no-ack
amqp.method.arguments.no_local No-Local
Boolean
no-local
amqp.method.arguments.nowait Nowait
Boolean
nowait
amqp.method.arguments.out_of_band Out-Of-Band
String
out-of-band
amqp.method.arguments.passive Passive
Boolean
passive
amqp.method.arguments.prefetch_count Prefetch-Count
Unsigned 16-bit integer
prefetch-count
amqp.method.arguments.prefetch_size Prefetch-Size
Unsigned 32-bit integer
prefetch-size
amqp.method.arguments.queue Queue
String
queue
amqp.method.arguments.read Read
Boolean
read
amqp.method.arguments.realm Realm
String
realm
amqp.method.arguments.redelivered Redelivered
Boolean
redelivered
amqp.method.arguments.reply_code Reply-Code
Unsigned 16-bit integer
reply-code
amqp.method.arguments.reply_text Reply-Text
String
reply-text
amqp.method.arguments.requeue Requeue
Boolean
requeue
amqp.method.arguments.response Response
Byte array
response
amqp.method.arguments.routing_key Routing-Key
String
routing-key
amqp.method.arguments.server_properties Server-Properties
No value
server-properties
amqp.method.arguments.staged_size Staged-Size
Unsigned 64-bit integer
staged-size
amqp.method.arguments.ticket Ticket
Unsigned 16-bit integer
ticket
amqp.method.arguments.type Type
String
type
amqp.method.arguments.version_major Version-Major
Unsigned 8-bit integer
version-major
amqp.method.arguments.version_minor Version-Minor
Unsigned 8-bit integer
version-minor
amqp.method.arguments.virtual_host Virtual-Host
String
virtual-host
amqp.method.arguments.write Write
Boolean
write
amqp.method.class Class
Unsigned 16-bit integer
Class ID
amqp.method.method Method
Unsigned 16-bit integer
Method ID
amqp.method.properties.app_id App-Id
String
app-id
amqp.method.properties.broadcast Broadcast
Unsigned 8-bit integer
broadcast
amqp.method.properties.cluster_id Cluster-Id
String
cluster-id
amqp.method.properties.content_encoding Content-Encoding
String
content-encoding
amqp.method.properties.content_type Content-Type
String
content-type
amqp.method.properties.correlation_id Correlation-Id
String
correlation-id
amqp.method.properties.data_name Data-Name
String
data-name
amqp.method.properties.delivery_mode Delivery-Mode
Unsigned 8-bit integer
delivery-mode
amqp.method.properties.durable Durable
Unsigned 8-bit integer
durable
amqp.method.properties.expiration Expiration
String
expiration
amqp.method.properties.filename Filename
String
filename
amqp.method.properties.headers Headers
No value
headers
amqp.method.properties.message_id Message-Id
String
message-id
amqp.method.properties.priority Priority
Unsigned 8-bit integer
priority
amqp.method.properties.proxy_name Proxy-Name
String
proxy-name
amqp.method.properties.reply_to Reply-To
String
reply-to
amqp.method.properties.timestamp Timestamp
Unsigned 64-bit integer
timestamp
amqp.method.properties.type Type
String
type
amqp.method.properties.user_id User-Id
String
user-id
amqp.payload Payload
Byte array
Message payload
amqp.type Type
Unsigned 8-bit integer
Frame type
agentx.c.reason Reason
Unsigned 8-bit integer
close reason
agentx.flags Flags
Unsigned 8-bit integer
header type
agentx.gb.mrepeat Max Repetition
Unsigned 16-bit integer
getBulk Max repetition
agentx.gb.nrepeat Repeaters
Unsigned 16-bit integer
getBulk Num. repeaters
agentx.n_subid Number subids
Unsigned 8-bit integer
Number subids
agentx.o.timeout Timeout
Unsigned 8-bit integer
open timeout
agentx.oid OID
String
OID
agentx.oid_include OID include
Unsigned 8-bit integer
OID include
agentx.oid_prefix OID prefix
Unsigned 8-bit integer
OID prefix
agentx.ostring Octet String
String
Octet String
agentx.ostring_len OString len
Unsigned 32-bit integer
Octet String Length
agentx.packet_id PacketID
Unsigned 32-bit integer
Packet ID
agentx.payload_len Payload length
Unsigned 32-bit integer
Payload length
agentx.r.error Resp. error
Unsigned 16-bit integer
response error
agentx.r.index Resp. index
Unsigned 16-bit integer
response index
agentx.r.priority Priority
Unsigned 8-bit integer
Register Priority
agentx.r.range_subid Range_subid
Unsigned 8-bit integer
Register range_subid
agentx.r.timeout Timeout
Unsigned 8-bit integer
Register timeout
agentx.r.upper_bound Upper bound
Unsigned 32-bit integer
Register upper bound
agentx.r.uptime sysUpTime
Unsigned 32-bit integer
sysUpTime
agentx.session_id sessionID
Unsigned 32-bit integer
Session ID
agentx.transaction_id TransactionID
Unsigned 32-bit integer
Transaction ID
agentx.type Type
Unsigned 8-bit integer
header type
agentx.u.priority Priority
Unsigned 8-bit integer
Unegister Priority
agentx.u.range_subid Range_subid
Unsigned 8-bit integer
Unegister range_subid
agentx.u.timeout Timeout
Unsigned 8-bit integer
Unregister timeout
agentx.u.upper_bound Upper bound
Unsigned 32-bit integer
Register upper bound
agentx.v.tag Variable type
Unsigned 16-bit integer
vtag
agentx.v.val32 Value(32)
Unsigned 32-bit integer
val32
agentx.v.val64 Value(64)
Unsigned 64-bit integer
val64
agentx.version Version
Unsigned 8-bit integer
header version
asap.cause_code Cause code
Unsigned 16-bit integer
asap.cause_info Cause info
Byte array
asap.cause_length Cause length
Unsigned 16-bit integer
asap.cause_padding Padding
Byte array
asap.cookie Cookie
Byte array
asap.h_bit H bit
Boolean
asap.ipv4_address IP Version 4 address
IPv4 address
asap.ipv6_address IP Version 6 address
IPv6 address
asap.message_flags Flags
Unsigned 8-bit integer
asap.message_length Length
Unsigned 16-bit integer
asap.message_type Type
Unsigned 8-bit integer
asap.parameter_length Parameter length
Unsigned 16-bit integer
asap.parameter_padding Padding
Byte array
asap.parameter_type Parameter Type
Unsigned 16-bit integer
asap.parameter_value Parameter value
Byte array
asap.pe_checksum PE checksum
Unsigned 32-bit integer
asap.pe_identifier PE identifier
Unsigned 32-bit integer
asap.pool_element_home_enrp_server_identifier Home ENRP server identifier
Unsigned 32-bit integer
asap.pool_element_pe_identifier PE identifier
Unsigned 32-bit integer
asap.pool_element_registration_life Registration life
Signed 32-bit integer
asap.pool_handle_pool_handle Pool handle
Byte array
asap.pool_member_slection_policy_degradation Policy degradation
Unsigned 32-bit integer
asap.pool_member_slection_policy_load Policy load
Unsigned 32-bit integer
asap.pool_member_slection_policy_priority Policy priority
Unsigned 32-bit integer
asap.pool_member_slection_policy_type Policy type
Unsigned 32-bit integer
asap.pool_member_slection_policy_value Policy value
Byte array
asap.pool_member_slection_policy_weight Policy weight
Unsigned 32-bit integer
asap.r_bit R bit
Boolean
asap.sctp_transport_port Port
Unsigned 16-bit integer
asap.server_identifier Server identifier
Unsigned 32-bit integer
asap.tcp_transport_port Port
Unsigned 16-bit integer
asap.transport_use Transport use
Unsigned 16-bit integer
asap.udp_transport_port Port
Unsigned 16-bit integer
asap.udp_transport_reserved Reserved
Unsigned 16-bit integer
enrp.dccp_transport_port Port
Unsigned 16-bit integer
enrp.dccp_transport_reserved Reserved
Unsigned 16-bit integer
enrp.dccp_transport_service_code Service code
Unsigned 16-bit integer
enrp.udp_lite_transport_port Port
Unsigned 16-bit integer
enrp.udp_lite_transport_reserved Reserved
Unsigned 16-bit integer
airopeek.unknown1 Unknown1
Byte array
airopeek.unknown2 caplength1
Unsigned 16-bit integer
airopeek.unknown3 caplength2
Unsigned 16-bit integer
airopeek.unknown4 Unknown4
Byte array
asf.iana IANA Enterprise Number
Unsigned 32-bit integer
ASF IANA Enterprise Number
asf.len Data Length
Unsigned 8-bit integer
ASF Data Length
asf.tag Message Tag
Unsigned 8-bit integer
ASF Message Tag
asf.type Message Type
Unsigned 8-bit integer
ASF Message Type
tpcp.caddr Client Source IP address
IPv4 address
tpcp.cid Client indent
Unsigned 16-bit integer
tpcp.cport Client Source Port
Unsigned 16-bit integer
tpcp.flags.redir No Redirect
Boolean
Don't redirect client
tpcp.flags.tcp UDP/TCP
Boolean
Protocol type
tpcp.flags.xoff XOFF
Boolean
tpcp.flags.xon XON
Boolean
tpcp.rasaddr RAS server IP address
IPv4 address
tpcp.saddr Server IP address
IPv4 address
tpcp.type Type
Unsigned 8-bit integer
PDU type
tpcp.vaddr Virtual Server IP address
IPv4 address
tpcp.version Version
Unsigned 8-bit integer
TPCP version
afs.backup Backup
Boolean
Backup Server
afs.backup.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.backup.opcode Operation
Unsigned 32-bit integer
Operation
afs.bos BOS
Boolean
Basic Oversee Server
afs.bos.baktime Backup Time
Date/Time stamp
Backup Time
afs.bos.cell Cell
String
Cell
afs.bos.cmd Command
String
Command
afs.bos.content Content
String
Content
afs.bos.data Data
Byte array
Data
afs.bos.date Date
Unsigned 32-bit integer
Date
afs.bos.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.bos.error Error
String
Error
afs.bos.file File
String
File
afs.bos.flags Flags
Unsigned 32-bit integer
Flags
afs.bos.host Host
String
Host
afs.bos.instance Instance
String
Instance
afs.bos.key Key
Byte array
key
afs.bos.keychecksum Key Checksum
Unsigned 32-bit integer
Key Checksum
afs.bos.keymodtime Key Modification Time
Date/Time stamp
Key Modification Time
afs.bos.keyspare2 Key Spare 2
Unsigned 32-bit integer
Key Spare 2
afs.bos.kvno Key Version Number
Unsigned 32-bit integer
Key Version Number
afs.bos.newtime New Time
Date/Time stamp
New Time
afs.bos.number Number
Unsigned 32-bit integer
Number
afs.bos.oldtime Old Time
Date/Time stamp
Old Time
afs.bos.opcode Operation
Unsigned 32-bit integer
Operation
afs.bos.parm Parm
String
Parm
afs.bos.path Path
String
Path
afs.bos.size Size
Unsigned 32-bit integer
Size
afs.bos.spare1 Spare1
String
Spare1
afs.bos.spare2 Spare2
String
Spare2
afs.bos.spare3 Spare3
String
Spare3
afs.bos.status Status
Signed 32-bit integer
Status
afs.bos.statusdesc Status Description
String
Status Description
afs.bos.type Type
String
Type
afs.bos.user User
String
User
afs.cb Callback
Boolean
Callback
afs.cb.callback.expires Expires
Date/Time stamp
Expires
afs.cb.callback.type Type
Unsigned 32-bit integer
Type
afs.cb.callback.version Version
Unsigned 32-bit integer
Version
afs.cb.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.cb.fid.uniq FileID (Uniqifier)
Unsigned 32-bit integer
File ID (Uniqifier)
afs.cb.fid.vnode FileID (VNode)
Unsigned 32-bit integer
File ID (VNode)
afs.cb.fid.volume FileID (Volume)
Unsigned 32-bit integer
File ID (Volume)
afs.cb.opcode Operation
Unsigned 32-bit integer
Operation
afs.error Error
Boolean
Error
afs.error.opcode Operation
Unsigned 32-bit integer
Operation
afs.fs File Server
Boolean
File Server
afs.fs.acl.a _A_dminister
Boolean
Administer
afs.fs.acl.count.negative ACL Count (Negative)
Unsigned 32-bit integer
Number of Negative ACLs
afs.fs.acl.count.positive ACL Count (Positive)
Unsigned 32-bit integer
Number of Positive ACLs
afs.fs.acl.d _D_elete
Boolean
Delete
afs.fs.acl.datasize ACL Size
Unsigned 32-bit integer
ACL Data Size
afs.fs.acl.entity Entity (User/Group)
String
ACL Entity (User/Group)
afs.fs.acl.i _I_nsert
Boolean
Insert
afs.fs.acl.k _L_ock
Boolean
Lock
afs.fs.acl.l _L_ookup
Boolean
Lookup
afs.fs.acl.r _R_ead
Boolean
Read
afs.fs.acl.w _W_rite
Boolean
Write
afs.fs.callback.expires Expires
Time duration
Expires
afs.fs.callback.type Type
Unsigned 32-bit integer
Type
afs.fs.callback.version Version
Unsigned 32-bit integer
Version
afs.fs.cps.spare1 CPS Spare1
Unsigned 32-bit integer
CPS Spare1
afs.fs.cps.spare2 CPS Spare2
Unsigned 32-bit integer
CPS Spare2
afs.fs.cps.spare3 CPS Spare3
Unsigned 32-bit integer
CPS Spare3
afs.fs.data Data
Byte array
Data
afs.fs.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.fs.fid.uniq FileID (Uniqifier)
Unsigned 32-bit integer
File ID (Uniqifier)
afs.fs.fid.vnode FileID (VNode)
Unsigned 32-bit integer
File ID (VNode)
afs.fs.fid.volume FileID (Volume)
Unsigned 32-bit integer
File ID (Volume)
afs.fs.flength FLength
Unsigned 32-bit integer
FLength
afs.fs.flength64 FLength64
Unsigned 64-bit integer
FLength64
afs.fs.ipaddr IP Addr
IPv4 address
IP Addr
afs.fs.length Length
Unsigned 32-bit integer
Length
afs.fs.length64 Length64
Unsigned 64-bit integer
Length64
afs.fs.motd Message of the Day
String
Message of the Day
afs.fs.name Name
String
Name
afs.fs.newname New Name
String
New Name
afs.fs.offlinemsg Offline Message
String
Volume Name
afs.fs.offset Offset
Unsigned 32-bit integer
Offset
afs.fs.offset64 Offset64
Unsigned 64-bit integer
Offset64
afs.fs.oldname Old Name
String
Old Name
afs.fs.opcode Operation
Unsigned 32-bit integer
Operation
afs.fs.status.anonymousaccess Anonymous Access
Unsigned 32-bit integer
Anonymous Access
afs.fs.status.author Author
Unsigned 32-bit integer
Author
afs.fs.status.calleraccess Caller Access
Unsigned 32-bit integer
Caller Access
afs.fs.status.clientmodtime Client Modification Time
Date/Time stamp
Client Modification Time
afs.fs.status.dataversion Data Version
Unsigned 32-bit integer
Data Version
afs.fs.status.dataversionhigh Data Version (High)
Unsigned 32-bit integer
Data Version (High)
afs.fs.status.filetype File Type
Unsigned 32-bit integer
File Type
afs.fs.status.group Group
Unsigned 32-bit integer
Group
afs.fs.status.interfaceversion Interface Version
Unsigned 32-bit integer
Interface Version
afs.fs.status.length Length
Unsigned 32-bit integer
Length
afs.fs.status.linkcount Link Count
Unsigned 32-bit integer
Link Count
afs.fs.status.mask Mask
Unsigned 32-bit integer
Mask
afs.fs.status.mask.fsync FSync
Boolean
FSync
afs.fs.status.mask.setgroup Set Group
Boolean
Set Group
afs.fs.status.mask.setmode Set Mode
Boolean
Set Mode
afs.fs.status.mask.setmodtime Set Modification Time
Boolean
Set Modification Time
afs.fs.status.mask.setowner Set Owner
Boolean
Set Owner
afs.fs.status.mask.setsegsize Set Segment Size
Boolean
Set Segment Size
afs.fs.status.mode Unix Mode
Unsigned 32-bit integer
Unix Mode
afs.fs.status.owner Owner
Unsigned 32-bit integer
Owner
afs.fs.status.parentunique Parent Unique
Unsigned 32-bit integer
Parent Unique
afs.fs.status.parentvnode Parent VNode
Unsigned 32-bit integer
Parent VNode
afs.fs.status.segsize Segment Size
Unsigned 32-bit integer
Segment Size
afs.fs.status.servermodtime Server Modification Time
Date/Time stamp
Server Modification Time
afs.fs.status.spare2 Spare 2
Unsigned 32-bit integer
Spare 2
afs.fs.status.spare3 Spare 3
Unsigned 32-bit integer
Spare 3
afs.fs.status.spare4 Spare 4
Unsigned 32-bit integer
Spare 4
afs.fs.status.synccounter Sync Counter
Unsigned 32-bit integer
Sync Counter
afs.fs.symlink.content Symlink Content
String
Symlink Content
afs.fs.symlink.name Symlink Name
String
Symlink Name
afs.fs.timestamp Timestamp
Date/Time stamp
Timestamp
afs.fs.token Token
Byte array
Token
afs.fs.viceid Vice ID
Unsigned 32-bit integer
Vice ID
afs.fs.vicelocktype Vice Lock Type
Unsigned 32-bit integer
Vice Lock Type
afs.fs.volid Volume ID
Unsigned 32-bit integer
Volume ID
afs.fs.volname Volume Name
String
Volume Name
afs.fs.volsync.spare1 Volume Creation Timestamp
Date/Time stamp
Volume Creation Timestamp
afs.fs.volsync.spare2 Spare 2
Unsigned 32-bit integer
Spare 2
afs.fs.volsync.spare3 Spare 3
Unsigned 32-bit integer
Spare 3
afs.fs.volsync.spare4 Spare 4
Unsigned 32-bit integer
Spare 4
afs.fs.volsync.spare5 Spare 5
Unsigned 32-bit integer
Spare 5
afs.fs.volsync.spare6 Spare 6
Unsigned 32-bit integer
Spare 6
afs.fs.xstats.clientversion Client Version
Unsigned 32-bit integer
Client Version
afs.fs.xstats.collnumber Collection Number
Unsigned 32-bit integer
Collection Number
afs.fs.xstats.timestamp XStats Timestamp
Unsigned 32-bit integer
XStats Timestamp
afs.fs.xstats.version XStats Version
Unsigned 32-bit integer
XStats Version
afs.kauth KAuth
Boolean
Kerberos Auth Server
afs.kauth.data Data
Byte array
Data
afs.kauth.domain Domain
String
Domain
afs.kauth.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.kauth.kvno Key Version Number
Unsigned 32-bit integer
Key Version Number
afs.kauth.name Name
String
Name
afs.kauth.opcode Operation
Unsigned 32-bit integer
Operation
afs.kauth.princ Principal
String
Principal
afs.kauth.realm Realm
String
Realm
afs.prot Protection
Boolean
Protection Server
afs.prot.count Count
Unsigned 32-bit integer
Count
afs.prot.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.prot.flag Flag
Unsigned 32-bit integer
Flag
afs.prot.gid Group ID
Unsigned 32-bit integer
Group ID
afs.prot.id ID
Unsigned 32-bit integer
ID
afs.prot.maxgid Maximum Group ID
Unsigned 32-bit integer
Maximum Group ID
afs.prot.maxuid Maximum User ID
Unsigned 32-bit integer
Maximum User ID
afs.prot.name Name
String
Name
afs.prot.newid New ID
Unsigned 32-bit integer
New ID
afs.prot.oldid Old ID
Unsigned 32-bit integer
Old ID
afs.prot.opcode Operation
Unsigned 32-bit integer
Operation
afs.prot.pos Position
Unsigned 32-bit integer
Position
afs.prot.uid User ID
Unsigned 32-bit integer
User ID
afs.repframe Reply Frame
Frame number
Reply Frame
afs.reqframe Request Frame
Frame number
Request Frame
afs.rmtsys Rmtsys
Boolean
Rmtsys
afs.rmtsys.opcode Operation
Unsigned 32-bit integer
Operation
afs.time Time from request
Time duration
Time between Request and Reply for AFS calls
afs.ubik Ubik
Boolean
Ubik
afs.ubik.activewrite Active Write
Unsigned 32-bit integer
Active Write
afs.ubik.addr Address
IPv4 address
Address
afs.ubik.amsyncsite Am Sync Site
Unsigned 32-bit integer
Am Sync Site
afs.ubik.anyreadlocks Any Read Locks
Unsigned 32-bit integer
Any Read Locks
afs.ubik.anywritelocks Any Write Locks
Unsigned 32-bit integer
Any Write Locks
afs.ubik.beaconsincedown Beacon Since Down
Unsigned 32-bit integer
Beacon Since Down
afs.ubik.currentdb Current DB
Unsigned 32-bit integer
Current DB
afs.ubik.currenttran Current Transaction
Unsigned 32-bit integer
Current Transaction
afs.ubik.epochtime Epoch Time
Date/Time stamp
Epoch Time
afs.ubik.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.ubik.file File
Unsigned 32-bit integer
File
afs.ubik.interface Interface Address
IPv4 address
Interface Address
afs.ubik.isclone Is Clone
Unsigned 32-bit integer
Is Clone
afs.ubik.lastbeaconsent Last Beacon Sent
Date/Time stamp
Last Beacon Sent
afs.ubik.lastvote Last Vote
Unsigned 32-bit integer
Last Vote
afs.ubik.lastvotetime Last Vote Time
Date/Time stamp
Last Vote Time
afs.ubik.lastyesclaim Last Yes Claim
Date/Time stamp
Last Yes Claim
afs.ubik.lastyeshost Last Yes Host
IPv4 address
Last Yes Host
afs.ubik.lastyesstate Last Yes State
Unsigned 32-bit integer
Last Yes State
afs.ubik.lastyesttime Last Yes Time
Date/Time stamp
Last Yes Time
afs.ubik.length Length
Unsigned 32-bit integer
Length
afs.ubik.lockedpages Locked Pages
Unsigned 32-bit integer
Locked Pages
afs.ubik.locktype Lock Type
Unsigned 32-bit integer
Lock Type
afs.ubik.lowesthost Lowest Host
IPv4 address
Lowest Host
afs.ubik.lowesttime Lowest Time
Date/Time stamp
Lowest Time
afs.ubik.now Now
Date/Time stamp
Now
afs.ubik.nservers Number of Servers
Unsigned 32-bit integer
Number of Servers
afs.ubik.opcode Operation
Unsigned 32-bit integer
Operation
afs.ubik.position Position
Unsigned 32-bit integer
Position
afs.ubik.recoverystate Recovery State
Unsigned 32-bit integer
Recovery State
afs.ubik.site Site
IPv4 address
Site
afs.ubik.state State
Unsigned 32-bit integer
State
afs.ubik.synchost Sync Host
IPv4 address
Sync Host
afs.ubik.syncsiteuntil Sync Site Until
Date/Time stamp
Sync Site Until
afs.ubik.synctime Sync Time
Date/Time stamp
Sync Time
afs.ubik.tidcounter TID Counter
Unsigned 32-bit integer
TID Counter
afs.ubik.up Up
Unsigned 32-bit integer
Up
afs.ubik.version.counter Counter
Unsigned 32-bit integer
Counter
afs.ubik.version.epoch Epoch
Date/Time stamp
Epoch
afs.ubik.voteend Vote Ends
Date/Time stamp
Vote Ends
afs.ubik.votestart Vote Started
Date/Time stamp
Vote Started
afs.ubik.votetype Vote Type
Unsigned 32-bit integer
Vote Type
afs.ubik.writelockedpages Write Locked Pages
Unsigned 32-bit integer
Write Locked Pages
afs.ubik.writetran Write Transaction
Unsigned 32-bit integer
Write Transaction
afs.update Update
Boolean
Update Server
afs.update.opcode Operation
Unsigned 32-bit integer
Operation
afs.vldb VLDB
Boolean
Volume Location Database Server
afs.vldb.bkvol Backup Volume ID
Unsigned 32-bit integer
Read-Only Volume ID
afs.vldb.bump Bumped Volume ID
Unsigned 32-bit integer
Bumped Volume ID
afs.vldb.clonevol Clone Volume ID
Unsigned 32-bit integer
Clone Volume ID
afs.vldb.count Volume Count
Unsigned 32-bit integer
Volume Count
afs.vldb.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.vldb.flags Flags
Unsigned 32-bit integer
Flags
afs.vldb.flags.bkexists Backup Exists
Boolean
Backup Exists
afs.vldb.flags.dfsfileset DFS Fileset
Boolean
DFS Fileset
afs.vldb.flags.roexists Read-Only Exists
Boolean
Read-Only Exists
afs.vldb.flags.rwexists Read/Write Exists
Boolean
Read/Write Exists
afs.vldb.id Volume ID
Unsigned 32-bit integer
Volume ID
afs.vldb.index Volume Index
Unsigned 32-bit integer
Volume Index
afs.vldb.name Volume Name
String
Volume Name
afs.vldb.nextindex Next Volume Index
Unsigned 32-bit integer
Next Volume Index
afs.vldb.numservers Number of Servers
Unsigned 32-bit integer
Number of Servers
afs.vldb.opcode Operation
Unsigned 32-bit integer
Operation
afs.vldb.partition Partition
String
Partition
afs.vldb.rovol Read-Only Volume ID
Unsigned 32-bit integer
Read-Only Volume ID
afs.vldb.rwvol Read-Write Volume ID
Unsigned 32-bit integer
Read-Only Volume ID
afs.vldb.server Server
IPv4 address
Server
afs.vldb.serverflags Server Flags
Unsigned 32-bit integer
Server Flags
afs.vldb.serverip Server IP
IPv4 address
Server IP
afs.vldb.serveruniq Server Unique Address
Unsigned 32-bit integer
Server Unique Address
afs.vldb.serveruuid Server UUID
Byte array
Server UUID
afs.vldb.spare1 Spare 1
Unsigned 32-bit integer
Spare 1
afs.vldb.spare2 Spare 2
Unsigned 32-bit integer
Spare 2
afs.vldb.spare3 Spare 3
Unsigned 32-bit integer
Spare 3
afs.vldb.spare4 Spare 4
Unsigned 32-bit integer
Spare 4
afs.vldb.spare5 Spare 5
Unsigned 32-bit integer
Spare 5
afs.vldb.spare6 Spare 6
Unsigned 32-bit integer
Spare 6
afs.vldb.spare7 Spare 7
Unsigned 32-bit integer
Spare 7
afs.vldb.spare8 Spare 8
Unsigned 32-bit integer
Spare 8
afs.vldb.spare9 Spare 9
Unsigned 32-bit integer
Spare 9
afs.vldb.type Volume Type
Unsigned 32-bit integer
Volume Type
afs.vol Volume Server
Boolean
Volume Server
afs.vol.count Volume Count
Unsigned 32-bit integer
Volume Count
afs.vol.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.vol.id Volume ID
Unsigned 32-bit integer
Volume ID
afs.vol.name Volume Name
String
Volume Name
afs.vol.opcode Operation
Unsigned 32-bit integer
Operation
ajp13.code Code
String
Type Code
ajp13.data Data
String
Data
ajp13.hname HNAME
String
Header Name
ajp13.hval HVAL
String
Header Value
ajp13.len Length
Unsigned 16-bit integer
Data Length
ajp13.magic Magic
Byte array
Magic Number
ajp13.method Method
String
HTTP Method
ajp13.nhdr NHDR
Unsigned 16-bit integer
Num Headers
ajp13.port PORT
Unsigned 16-bit integer
Port
ajp13.raddr RADDR
String
Remote Address
ajp13.reusep REUSEP
Unsigned 8-bit integer
Reuse Connection?
ajp13.rhost RHOST
String
Remote Host
ajp13.rlen RLEN
Unsigned 16-bit integer
Requested Length
ajp13.rmsg RSMSG
String
HTTP Status Message
ajp13.rstatus RSTATUS
Unsigned 16-bit integer
HTTP Status Code
ajp13.srv SRV
String
Server
ajp13.sslp SSLP
Unsigned 8-bit integer
Is SSL?
ajp13.uri URI
String
HTTP URI
ajp13.ver Version
String
HTTP Version
afp.AFPVersion AFP Version
String
Client AFP version
afp.UAM UAM
String
User Authentication Method
afp.access Access mode
Unsigned 8-bit integer
Fork access mode
afp.access.deny_read Deny read
Boolean
Deny read
afp.access.deny_write Deny write
Boolean
Deny write
afp.access.read Read
Boolean
Open for reading
afp.access.write Write
Boolean
Open for writing
afp.access_bitmap Bitmap
Unsigned 16-bit integer
Bitmap (reserved)
afp.ace_applicable ACE
Byte array
ACE applicable
afp.ace_flags Flags
Unsigned 32-bit integer
ACE flags
afp.ace_flags.allow Allow
Boolean
Allow rule
afp.ace_flags.deny Deny
Boolean
Deny rule
afp.ace_flags.directory_inherit Dir inherit
Boolean
Dir inherit
afp.ace_flags.file_inherit File inherit
Boolean
File inherit
afp.ace_flags.inherited Inherited
Boolean
Inherited
afp.ace_flags.limit_inherit Limit inherit
Boolean
Limit inherit
afp.ace_flags.only_inherit Only inherit
Boolean
Only inherit
afp.ace_rights Rights
Unsigned 32-bit integer
ACE flags
afp.acl_access_bitmap Bitmap
Unsigned 32-bit integer
ACL access bitmap
afp.acl_access_bitmap.append_data Append data/create subdir
Boolean
Append data to a file / create a subdirectory
afp.acl_access_bitmap.change_owner Change owner
Boolean
Change owner
afp.acl_access_bitmap.delete Delete
Boolean
Delete
afp.acl_access_bitmap.delete_child Delete dir
Boolean
Delete directory
afp.acl_access_bitmap.execute Execute/Search
Boolean
Execute a program
afp.acl_access_bitmap.generic_all Generic all
Boolean
Generic all
afp.acl_access_bitmap.generic_execute Generic execute
Boolean
Generic execute
afp.acl_access_bitmap.generic_read Generic read
Boolean
Generic read
afp.acl_access_bitmap.generic_write Generic write
Boolean
Generic write
afp.acl_access_bitmap.read_attrs Read attributes
Boolean
Read attributes
afp.acl_access_bitmap.read_data Read/List
Boolean
Read data / list directory
afp.acl_access_bitmap.read_extattrs Read extended attributes
Boolean
Read extended attributes
afp.acl_access_bitmap.read_security Read security
Boolean
Read access rights
afp.acl_access_bitmap.synchronize Synchronize
Boolean
Synchronize
afp.acl_access_bitmap.write_attrs Write attributes
Boolean
Write attributes
afp.acl_access_bitmap.write_data Write/Add file
Boolean
Write data to a file / add a file to a directory
afp.acl_access_bitmap.write_extattrs Write extended attributes
Boolean
Write extended attributes
afp.acl_access_bitmap.write_security Write security
Boolean
Write access rights
afp.acl_entrycount Count
Unsigned 32-bit integer
Number of ACL entries
afp.acl_flags ACL flags
Unsigned 32-bit integer
ACL flags
afp.acl_list_bitmap ACL bitmap
Unsigned 16-bit integer
ACL control list bitmap
afp.acl_list_bitmap.ACL ACL
Boolean
ACL
afp.acl_list_bitmap.GRPUUID GRPUUID
Boolean
Group UUID
afp.acl_list_bitmap.Inherit Inherit
Boolean
Inherit ACL
afp.acl_list_bitmap.REMOVEACL Remove ACL
Boolean
Remove ACL
afp.acl_list_bitmap.UUID UUID
Boolean
User UUID
afp.actual_count Count
Signed 32-bit integer
Number of bytes returned by read/write
afp.afp_login_flags Flags
Unsigned 16-bit integer
Login flags
afp.appl_index Index
Unsigned 16-bit integer
Application index
afp.appl_tag Tag
Unsigned 32-bit integer
Application tag
afp.backup_date Backup date
Date/Time stamp
Backup date
afp.cat_count Cat count
Unsigned 32-bit integer
Number of structures returned
afp.cat_position Position
Byte array
Reserved
afp.cat_req_matches Max answers
Signed 32-bit integer
Maximum number of matches to return.
afp.command Command
Unsigned 8-bit integer
AFP function
afp.comment Comment
String
File/folder comment
afp.create_flag Hard create
Boolean
Soft/hard create file
afp.creation_date Creation date
Date/Time stamp
Creation date
afp.data_fork_len Data fork size
Unsigned 32-bit integer
Data fork size
afp.did DID
Unsigned 32-bit integer
Parent directory ID
afp.dir_ar Access rights
Unsigned 32-bit integer
Directory access rights
afp.dir_ar.blank Blank access right
Boolean
Blank access right
afp.dir_ar.e_read Everyone has read access
Boolean
Everyone has read access
afp.dir_ar.e_search Everyone has search access
Boolean
Everyone has search access
afp.dir_ar.e_write Everyone has write access
Boolean
Everyone has write access
afp.dir_ar.g_read Group has read access
Boolean
Group has read access
afp.dir_ar.g_search Group has search access
Boolean
Group has search access
afp.dir_ar.g_write Group has write access
Boolean
Group has write access
afp.dir_ar.o_read Owner has read access
Boolean
Owner has read access
afp.dir_ar.o_search Owner has search access
Boolean
Owner has search access
afp.dir_ar.o_write Owner has write access
Boolean
Gwner has write access
afp.dir_ar.u_owner User is the owner
Boolean
Current user is the directory owner
afp.dir_ar.u_read User has read access
Boolean
User has read access
afp.dir_ar.u_search User has search access
Boolean
User has search access
afp.dir_ar.u_write User has write access
Boolean
User has write access
afp.dir_attribute.backup_needed Backup needed
Boolean
Directory needs to be backed up
afp.dir_attribute.delete_inhibit Delete inhibit
Boolean
Delete inhibit
afp.dir_attribute.in_exported_folder Shared area
Boolean
Directory is in a shared area
afp.dir_attribute.invisible Invisible
Boolean
Directory is not visible
afp.dir_attribute.mounted Mounted
Boolean
Directory is mounted
afp.dir_attribute.rename_inhibit Rename inhibit
Boolean
Rename inhibit
afp.dir_attribute.set_clear Set
Boolean
Clear/set attribute
afp.dir_attribute.share Share point
Boolean
Directory is a share point
afp.dir_attribute.system System
Boolean
Directory is a system directory
afp.dir_bitmap Directory bitmap
Unsigned 16-bit integer
Directory bitmap
afp.dir_bitmap.UTF8_name UTF-8 name
Boolean
Return UTF-8 name if directory
afp.dir_bitmap.access_rights Access rights
Boolean
Return access rights if directory
afp.dir_bitmap.attributes Attributes
Boolean
Return attributes if directory
afp.dir_bitmap.backup_date Backup date
Boolean
Return backup date if directory
afp.dir_bitmap.create_date Creation date
Boolean
Return creation date if directory
afp.dir_bitmap.did DID
Boolean
Return parent directory ID if directory
afp.dir_bitmap.fid File ID
Boolean
Return file ID if directory
afp.dir_bitmap.finder_info Finder info
Boolean
Return finder info if directory
afp.dir_bitmap.group_id Group id
Boolean
Return group id if directory
afp.dir_bitmap.long_name Long name
Boolean
Return long name if directory
afp.dir_bitmap.mod_date Modification date
Boolean
Return modification date if directory
afp.dir_bitmap.offspring_count Offspring count
Boolean
Return offspring count if directory
afp.dir_bitmap.owner_id Owner id
Boolean
Return owner id if directory
afp.dir_bitmap.short_name Short name
Boolean
Return short name if directory
afp.dir_bitmap.unix_privs UNIX privileges
Boolean
Return UNIX privileges if directory
afp.dir_group_id Group ID
Signed 32-bit integer
Directory group ID
afp.dir_offspring Offspring
Unsigned 16-bit integer
Directory offspring
afp.dir_owner_id Owner ID
Signed 32-bit integer
Directory owner ID
afp.dt_ref DT ref
Unsigned 16-bit integer
Desktop database reference num
afp.ext_data_fork_len Extended data fork size
Unsigned 64-bit integer
Extended (>2GB) data fork length
afp.ext_resource_fork_len Extended resource fork size
Unsigned 64-bit integer
Extended (>2GB) resource fork length
afp.extattr.data Data
Byte array
Extendend attribute data
afp.extattr.len Length
Unsigned 32-bit integer
Extended attribute length
afp.extattr.name Name
String
Extended attribute name
afp.extattr.namelen Length
Unsigned 16-bit integer
Extended attribute name length
afp.extattr.reply_size Reply size
Unsigned 32-bit integer
Reply size
afp.extattr.req_count Request Count
Unsigned 16-bit integer
Request Count.
afp.extattr.start_index Index
Unsigned 32-bit integer
Start index
afp.extattr_bitmap Bitmap
Unsigned 16-bit integer
Extended attributes bitmap
afp.extattr_bitmap.create Create
Boolean
Create extended attribute
afp.extattr_bitmap.nofollow No follow symlinks
Boolean
Do not follow symlink
afp.extattr_bitmap.replace Replace
Boolean
Replace extended attribute
afp.file_attribute.backup_needed Backup needed
Boolean
File needs to be backed up
afp.file_attribute.copy_protect Copy protect
Boolean
copy protect
afp.file_attribute.delete_inhibit Delete inhibit
Boolean
delete inhibit
afp.file_attribute.df_open Data fork open
Boolean
Data fork already open
afp.file_attribute.invisible Invisible
Boolean
File is not visible
afp.file_attribute.multi_user Multi user
Boolean
multi user
afp.file_attribute.rename_inhibit Rename inhibit
Boolean
rename inhibit
afp.file_attribute.rf_open Resource fork open
Boolean
Resource fork already open
afp.file_attribute.set_clear Set
Boolean
Clear/set attribute
afp.file_attribute.system System
Boolean
File is a system file
afp.file_attribute.write_inhibit Write inhibit
Boolean
Write inhibit
afp.file_bitmap File bitmap
Unsigned 16-bit integer
File bitmap
afp.file_bitmap.UTF8_name UTF-8 name
Boolean
Return UTF-8 name if file
afp.file_bitmap.attributes Attributes
Boolean
Return attributes if file
afp.file_bitmap.backup_date Backup date
Boolean
Return backup date if file
afp.file_bitmap.create_date Creation date
Boolean
Return creation date if file
afp.file_bitmap.data_fork_len Data fork size
Boolean
Return data fork size if file
afp.file_bitmap.did DID
Boolean
Return parent directory ID if file
afp.file_bitmap.ex_data_fork_len Extended data fork size
Boolean
Return extended (>2GB) data fork size if file
afp.file_bitmap.ex_resource_fork_len Extended resource fork size
Boolean
Return extended (>2GB) resource fork size if file
afp.file_bitmap.fid File ID
Boolean
Return file ID if file
afp.file_bitmap.finder_info Finder info
Boolean
Return finder info if file
afp.file_bitmap.launch_limit Launch limit
Boolean
Return launch limit if file
afp.file_bitmap.long_name Long name
Boolean
Return long name if file
afp.file_bitmap.mod_date Modification date
Boolean
Return modification date if file
afp.file_bitmap.resource_fork_len Resource fork size
Boolean
Return resource fork size if file
afp.file_bitmap.short_name Short name
Boolean
Return short name if file
afp.file_bitmap.unix_privs UNIX privileges
Boolean
Return UNIX privileges if file
afp.file_creator File creator
String
File creator
afp.file_flag Dir
Boolean
Is a dir
afp.file_id File ID
Unsigned 32-bit integer
File/directory ID
afp.file_type File type
String
File type
afp.finder_info Finder info
Byte array
Finder info
afp.flag From
Unsigned 8-bit integer
Offset is relative to start/end of the fork
afp.fork_type Resource fork
Boolean
Data/resource fork
afp.group_ID Group ID
Unsigned 32-bit integer
Group ID
afp.grpuuid GRPUUID
Byte array
Group UUID
afp.icon_index Index
Unsigned 16-bit integer
Icon index in desktop database
afp.icon_length Size
Unsigned 16-bit integer
Size for icon bitmap
afp.icon_tag Tag
Unsigned 32-bit integer
Icon tag
afp.icon_type Icon type
Unsigned 8-bit integer
Icon type
afp.last_written Last written
Unsigned 32-bit integer
Offset of the last byte written
afp.last_written64 Last written
Unsigned 64-bit integer
Offset of the last byte written (64 bits)
afp.lock_from End
Boolean
Offset is relative to the end of the fork
afp.lock_len Length
Signed 32-bit integer
Number of bytes to be locked/unlocked
afp.lock_len64 Length
Signed 64-bit integer
Number of bytes to be locked/unlocked (64 bits)
afp.lock_offset Offset
Signed 32-bit integer
First byte to be locked
afp.lock_offset64 Offset
Signed 64-bit integer
First byte to be locked (64 bits)
afp.lock_op unlock
Boolean
Lock/unlock op
afp.lock_range_start Start
Signed 32-bit integer
First byte locked/unlocked
afp.lock_range_start64 Start
Signed 64-bit integer
First byte locked/unlocked (64 bits)
afp.long_name_offset Long name offset
Unsigned 16-bit integer
Long name offset in packet
afp.map_id ID
Unsigned 32-bit integer
User/Group ID
afp.map_id_type Type
Unsigned 8-bit integer
Map ID type
afp.map_name Name
String
User/Group name
afp.map_name_type Type
Unsigned 8-bit integer
Map name type
afp.message Message
String
Message
afp.message_bitmap Bitmap
Unsigned 16-bit integer
Message bitmap
afp.message_bitmap.requested Request message
Boolean
Message Requested
afp.message_bitmap.utf8 Message is UTF8
Boolean
Message is UTF8
afp.message_length Len
Unsigned 32-bit integer
Message length
afp.message_type Type
Unsigned 16-bit integer
Type of server message
afp.modification_date Modification date
Date/Time stamp
Modification date
afp.newline_char Newline char
Unsigned 8-bit integer
Value to compare ANDed bytes with when looking for newline
afp.newline_mask Newline mask
Unsigned 8-bit integer
Value to AND bytes with when looking for newline
afp.offset Offset
Signed 32-bit integer
Offset
afp.offset64 Offset
Signed 64-bit integer
Offset (64 bits)
afp.ofork Fork
Unsigned 16-bit integer
Open fork reference number
afp.ofork_len New length
Signed 32-bit integer
New length
afp.ofork_len64 New length
Signed 64-bit integer
New length (64 bits)
afp.pad Pad
No value
Pad Byte
afp.passwd Password
String
Password
afp.path_len Len
Unsigned 8-bit integer
Path length
afp.path_name Name
String
Path name
afp.path_type Type
Unsigned 8-bit integer
Type of names
afp.path_unicode_hint Unicode hint
Unsigned 32-bit integer
Unicode hint
afp.path_unicode_len Len
Unsigned 16-bit integer
Path length (unicode)
afp.random Random number
Byte array
UAM random number
afp.reply_size Reply size
Unsigned 16-bit integer
Reply size
afp.reply_size32 Reply size
Unsigned 32-bit integer
Reply size
afp.req_count Req count
Unsigned 16-bit integer
Maximum number of structures returned
afp.reqcount64 Count
Signed 64-bit integer
Request Count (64 bits)
afp.request_bitmap Request bitmap
Unsigned 32-bit integer
Request bitmap
afp.request_bitmap.UTF8_name UTF-8 name
Boolean
Search UTF-8 name
afp.request_bitmap.attributes Attributes
Boolean
Search attributes
afp.request_bitmap.backup_date Backup date
Boolean
Search backup date
afp.request_bitmap.create_date Creation date
Boolean
Search creation date
afp.request_bitmap.data_fork_len Data fork size
Boolean
Search data fork size
afp.request_bitmap.did DID
Boolean
Search parent directory ID
afp.request_bitmap.ex_data_fork_len Extended data fork size
Boolean
Search extended (>2GB) data fork size
afp.request_bitmap.ex_resource_fork_len Extended resource fork size
Boolean
Search extended (>2GB) resource fork size
afp.request_bitmap.finder_info Finder info
Boolean
Search finder info
afp.request_bitmap.long_name Long name
Boolean
Search long name
afp.request_bitmap.mod_date Modification date
Boolean
Search modification date
afp.request_bitmap.offspring_count Offspring count
Boolean
Search offspring count
afp.request_bitmap.partial_names Match on partial names
Boolean
Match on partial names
afp.request_bitmap.resource_fork_len Resource fork size
Boolean
Search resource fork size
afp.reserved Reserved
Byte array
Reserved
afp.resource_fork_len Resource fork size
Unsigned 32-bit integer
Resource fork size
afp.response_in Response in
Frame number
The response to this packet is in this packet
afp.response_to Response to
Frame number
This packet is a response to the packet in this frame
afp.rw_count Count
Signed 32-bit integer
Number of bytes to be read/written
afp.rw_count64 Count
Signed 64-bit integer
Number of bytes to be read/written (64 bits)
afp.server_time Server time
Date/Time stamp
Server time
afp.session_token Token
Byte array
Session token
afp.session_token_len Len
Unsigned 32-bit integer
Session token length
afp.session_token_timestamp Time stamp
Unsigned 32-bit integer
Session time stamp
afp.session_token_type Type
Unsigned 16-bit integer
Session token type
afp.short_name_offset Short name offset
Unsigned 16-bit integer
Short name offset in packet
afp.start_index Start index
Unsigned 16-bit integer
First structure returned
afp.start_index32 Start index
Unsigned 32-bit integer
First structure returned
afp.struct_size Struct size
Unsigned 8-bit integer
Sizeof of struct
afp.struct_size16 Struct size
Unsigned 16-bit integer
Sizeof of struct
afp.time Time from request
Time duration
Time between Request and Response for AFP cmds
afp.unicode_name_offset Unicode name offset
Unsigned 16-bit integer
Unicode name offset in packet
afp.unix_privs.gid GID
Unsigned 32-bit integer
Group ID
afp.unix_privs.permissions Permissions
Unsigned 32-bit integer
Permissions
afp.unix_privs.ua_permissions User's access rights
Unsigned 32-bit integer
User's access rights
afp.unix_privs.uid UID
Unsigned 32-bit integer
User ID
afp.user User
String
User
afp.user_ID User ID
Unsigned 32-bit integer
User ID
afp.user_bitmap Bitmap
Unsigned 16-bit integer
User Info bitmap
afp.user_bitmap.GID Primary group ID
Boolean
Primary group ID
afp.user_bitmap.UID User ID
Boolean
User ID
afp.user_bitmap.UUID UUID
Boolean
UUID
afp.user_flag Flag
Unsigned 8-bit integer
User Info flag
afp.user_len Len
Unsigned 16-bit integer
User name length (unicode)
afp.user_name User
String
User name (unicode)
afp.user_type Type
Unsigned 8-bit integer
Type of user name
afp.uuid UUID
Byte array
UUID
afp.vol_attribute.acls ACLs
Boolean
Supports access control lists
afp.vol_attribute.blank_access_privs Blank access privileges
Boolean
Supports blank access privileges
afp.vol_attribute.cat_search Catalog search
Boolean
Supports catalog search operations
afp.vol_attribute.extended_attributes Extended Attributes
Boolean
Supports Extended Attributes
afp.vol_attribute.fileIDs File IDs
Boolean
Supports file IDs
afp.vol_attribute.inherit_parent_privs Inherit parent privileges
Boolean
Inherit parent privileges
afp.vol_attribute.network_user_id No Network User ID
Boolean
No Network User ID
afp.vol_attribute.no_exchange_files No exchange files
Boolean
Exchange files not supported
afp.vol_attribute.passwd Volume password
Boolean
Has a volume password
afp.vol_attribute.read_only Read only
Boolean
Read only volume
afp.vol_attribute.unix_privs UNIX access privileges
Boolean
Supports UNIX access privileges
afp.vol_attribute.utf8_names UTF-8 names
Boolean
Supports UTF-8 names
afp.vol_attributes Attributes
Unsigned 16-bit integer
Volume attributes
afp.vol_backup_date Backup date
Date/Time stamp
Volume backup date
afp.vol_bitmap Bitmap
Unsigned 16-bit integer
Volume bitmap
afp.vol_bitmap.attributes Attributes
Boolean
Volume attributes
afp.vol_bitmap.backup_date Backup date
Boolean
Volume backup date
afp.vol_bitmap.block_size Block size
Boolean
Volume block size
afp.vol_bitmap.bytes_free Bytes free
Boolean
Volume free bytes
afp.vol_bitmap.bytes_total Bytes total
Boolean
Volume total bytes
afp.vol_bitmap.create_date Creation date
Boolean
Volume creation date
afp.vol_bitmap.ex_bytes_free Extended bytes free
Boolean
Volume extended (>2GB) free bytes
afp.vol_bitmap.ex_bytes_total Extended bytes total
Boolean
Volume extended (>2GB) total bytes
afp.vol_bitmap.id ID
Boolean
Volume ID
afp.vol_bitmap.mod_date Modification date
Boolean
Volume modification date
afp.vol_bitmap.name Name
Boolean
Volume name
afp.vol_bitmap.signature Signature
Boolean
Volume signature
afp.vol_block_size Block size
Unsigned 32-bit integer
Volume block size
afp.vol_bytes_free Bytes free
Unsigned 32-bit integer
Free space
afp.vol_bytes_total Bytes total
Unsigned 32-bit integer
Volume size
afp.vol_creation_date Creation date
Date/Time stamp
Volume creation date
afp.vol_ex_bytes_free Extended bytes free
Unsigned 64-bit integer
Extended (>2GB) free space
afp.vol_ex_bytes_total Extended bytes total
Unsigned 64-bit integer
Extended (>2GB) volume size
afp.vol_flag_passwd Password
Boolean
Volume is password-protected
afp.vol_flag_unix_priv Unix privs
Boolean
Volume has unix privileges
afp.vol_id Volume id
Unsigned 16-bit integer
Volume id
afp.vol_modification_date Modification date
Date/Time stamp
Volume modification date
afp.vol_name Volume
String
Volume name
afp.vol_name_offset Volume name offset
Unsigned 16-bit integer
Volume name offset in packet
afp.vol_signature Signature
Unsigned 16-bit integer
Volume signature
ap1394.dst Destination
Byte array
Destination address
ap1394.src Source
Byte array
Source address
ap1394.type Type
Unsigned 16-bit integer
asp.attn_code Attn code
Unsigned 16-bit integer
asp attention code
asp.error asp error
Signed 32-bit integer
return error code
asp.function asp function
Unsigned 8-bit integer
asp function
asp.init_error Error
Unsigned 16-bit integer
asp init error
asp.seq Sequence
Unsigned 16-bit integer
asp sequence number
asp.server_addr.len Length
Unsigned 8-bit integer
Address length.
asp.server_addr.type Type
Unsigned 8-bit integer
Address type.
asp.server_addr.value Value
Byte array
Address value
asp.server_directory Directory service
String
Server directory service
asp.server_flag Flag
Unsigned 16-bit integer
Server capabilities flag
asp.server_flag.copyfile Support copyfile
Boolean
Server support copyfile
asp.server_flag.directory Support directory services
Boolean
Server support directory services
asp.server_flag.fast_copy Support fast copy
Boolean
Server support fast copy
asp.server_flag.no_save_passwd Don't allow save password
Boolean
Don't allow save password
asp.server_flag.notify Support server notifications
Boolean
Server support notifications
asp.server_flag.passwd Support change password
Boolean
Server support change password
asp.server_flag.reconnect Support server reconnect
Boolean
Server support reconnect
asp.server_flag.srv_msg Support server message
Boolean
Support server message
asp.server_flag.srv_sig Support server signature
Boolean
Support server signature
asp.server_flag.tcpip Support TCP/IP
Boolean
Server support TCP/IP
asp.server_flag.utf8_name Support UTF8 server name
Boolean
Server support UTF8 server name
asp.server_icon Icon bitmap
Byte array
Server icon bitmap
asp.server_name Server name
String
Server name
asp.server_signature Server signature
Byte array
Server signature
asp.server_type Server type
String
Server type
asp.server_uams UAM
String
UAM
asp.server_utf8_name Server name (UTF8)
String
Server name (UTF8)
asp.server_utf8_name_len Server name length
Unsigned 16-bit integer
UTF8 server name length
asp.server_vers AFP version
String
AFP version
asp.session_id Session ID
Unsigned 8-bit integer
asp session id
asp.size size
Unsigned 16-bit integer
asp available size for reply
asp.socket Socket
Unsigned 8-bit integer
asp socket
asp.version Version
Unsigned 16-bit integer
asp version
asp.zero_value Pad (0)
Byte array
Pad
atp.bitmap Bitmap
Unsigned 8-bit integer
Bitmap or sequence number
atp.ctrlinfo Control info
Unsigned 8-bit integer
control info
atp.eom EOM
Boolean
End-of-message
atp.fragment ATP Fragment
Frame number
ATP Fragment
atp.fragments ATP Fragments
No value
ATP Fragments
atp.function Function
Unsigned 8-bit integer
function code
atp.reassembled_in Reassembled ATP in frame
Frame number
This ATP packet is reassembled in this frame
atp.segment.error Desegmentation error
Frame number
Desegmentation error due to illegal segments
atp.segment.multipletails Multiple tail segments found
Boolean
Several tails were found when desegmenting the packet
atp.segment.overlap Segment overlap
Boolean
Segment overlaps with other segments
atp.segment.overlap.conflict Conflicting data in segment overlap
Boolean
Overlapping segments contained conflicting data
atp.segment.toolongsegment Segment too long
Boolean
Segment contained data past end of packet
atp.sts STS
Boolean
Send transaction status
atp.tid TID
Unsigned 16-bit integer
Transaction id
atp.treltimer TRel timer
Unsigned 8-bit integer
TRel timer
atp.user_bytes User bytes
Unsigned 32-bit integer
User bytes
atp.xo XO
Boolean
Exactly-once flag
aarp.dst.hw Target hardware address
Byte array
aarp.dst.hw_mac Target MAC address
6-byte Hardware (MAC) Address
aarp.dst.proto Target protocol address
Byte array
aarp.dst.proto_id Target ID
Byte array
aarp.hard.size Hardware size
Unsigned 8-bit integer
aarp.hard.type Hardware type
Unsigned 16-bit integer
aarp.opcode Opcode
Unsigned 16-bit integer
aarp.proto.size Protocol size
Unsigned 8-bit integer
aarp.proto.type Protocol type
Unsigned 16-bit integer
aarp.src.hw Sender hardware address
Byte array
aarp.src.hw_mac Sender MAC address
6-byte Hardware (MAC) Address
aarp.src.proto Sender protocol address
Byte array
aarp.src.proto_id Sender ID
Byte array
acap.request Request
Boolean
TRUE if ACAP request
acap.response Response
Boolean
TRUE if ACAP response
acn.acn_reciprocal_channel Reciprocal Channel Number
Unsigned 16-bit integer
Reciprocal Channel
acn.acn_refuse_code Refuse Code
Unsigned 8-bit integer
acn.association Association
Unsigned 16-bit integer
acn.channel_number Channel Number
Unsigned 16-bit integer
acn.cid CID
acn.client_protocol_id Client Protocol ID
Unsigned 32-bit integer
acn.dmp_address Address
Unsigned 8-bit integer
acn.dmp_address_data_pairs Address-Data Pairs
Byte array
More address-data pairs
acn.dmp_adt Address and Data Type
Unsigned 8-bit integer
acn.dmp_adt_a Size
Unsigned 8-bit integer
acn.dmp_adt_d Data Type
Unsigned 8-bit integer
acn.dmp_adt_r Relative
Unsigned 8-bit integer
acn.dmp_adt_v Virtual
Unsigned 8-bit integer
acn.dmp_adt_x Reserved
Unsigned 8-bit integer
acn.dmp_data Data
Byte array
acn.dmp_data16 Addr
Unsigned 16-bit integer
Data16
acn.dmp_data24 Addr
Unsigned 24-bit integer
Data24
acn.dmp_data32 Addr
Unsigned 32-bit integer
Data32
acn.dmp_data8 Addr
Unsigned 8-bit integer
Data8
acn.dmp_reason_code Reason Code
Unsigned 8-bit integer
acn.dmp_vector DMP Vector
Unsigned 8-bit integer
acn.dmx.count Count
Unsigned 16-bit integer
DMX Count
acn.dmx.increment Increment
Unsigned 16-bit integer
DMX Increment
acn.dmx.priority Priority
Unsigned 8-bit integer
DMX Priority
acn.dmx.seq_number Seq No
Unsigned 8-bit integer
DMX Sequence Number
acn.dmx.source_name Source
String
DMX Source Name
acn.dmx.start_code Start Code
Unsigned 16-bit integer
DMX Start Code
acn.dmx.universe Universe
Unsigned 16-bit integer
DMX Universe
acn.dmx_vector Vector
Unsigned 32-bit integer
DMX Vector
acn.expiry Expiry
Unsigned 16-bit integer
acn.first_member_to_ack First Member to ACK
Unsigned 16-bit integer
acn.first_missed_sequence First Missed Sequence
Unsigned 32-bit integer
acn.ip_address_type Addr Type
Unsigned 8-bit integer
acn.ipv4 IPV4
IPv4 address
acn.ipv6 IPV6
IPv6 address
acn.last_member_to_ack Last Member to ACK
Unsigned 16-bit integer
acn.last_missed_sequence Last Missed Sequence
Unsigned 32-bit integer
acn.mak_threshold MAK Threshold
Unsigned 16-bit integer
acn.member_id Member ID
Unsigned 16-bit integer
acn.nak_holdoff NAK holdoff (ms)
Unsigned 16-bit integer
acn.nak_max_wait NAK Max Wait (ms)
Unsigned 16-bit integer
acn.nak_modulus NAK Modulus
Unsigned 16-bit integer
acn.nak_outbound_flag NAK Outbound Flag
Boolean
acn.oldest_available_wrapper Oldest Available Wrapper
Unsigned 32-bit integer
acn.packet_identifier Packet Identifier
String
acn.pdu PDU
No value
acn.pdu.flag_d Data
Boolean
Data flag
acn.pdu.flag_h Header
Boolean
Header flag
acn.pdu.flag_l Length
Boolean
Length flag
acn.pdu.flag_v Vector
Boolean
Vector flag
acn.pdu.flags Flags
Unsigned 8-bit integer
PDU Flags
acn.port Port
Unsigned 16-bit integer
acn.postamble_size Size of postamble
Unsigned 16-bit integer
Postamble size in bytes
acn.preamble_size Size of preamble
Unsigned 16-bit integer
Preamble size in bytes
acn.protocol_id Protocol ID
Unsigned 32-bit integer
acn.reason_code Reason Code
Unsigned 8-bit integer
acn.reliable_sequence_number Reliable Sequence Number
Unsigned 32-bit integer
acn.sdt_vector STD Vector
Unsigned 8-bit integer
acn.session_count Session Count
Unsigned 16-bit integer
acn.total_sequence_number Total Sequence Number
Unsigned 32-bit integer
artner.tod_control ArtTodControl packet
No value
Art-Net ArtTodControl packet
artnet.address ArtAddress packet
No value
Art-Net ArtAddress packet
artnet.address.command Command
Unsigned 8-bit integer
Command
artnet.address.long_name Long Name
String
Long Name
artnet.address.short_name Short Name
String
Short Name
artnet.address.subswitch Subswitch
Unsigned 8-bit integer
Subswitch
artnet.address.swin Input Subswitch
No value
Input Subswitch
artnet.address.swin_1 Input Subswitch of Port 1
Unsigned 8-bit integer
Input Subswitch of Port 1
artnet.address.swin_2 Input Subswitch of Port 2
Unsigned 8-bit integer
Input Subswitch of Port 2
artnet.address.swin_3 Input Subswitch of Port 3
Unsigned 8-bit integer
Input Subswitch of Port 3
artnet.address.swin_4 Input Subswitch of Port 4
Unsigned 8-bit integer
Input Subswitch of Port 4
artnet.address.swout Output Subswitch
No value
Output Subswitch
artnet.address.swout_1 Output Subswitch of Port 1
Unsigned 8-bit integer
Output Subswitch of Port 1
artnet.address.swout_2 Output Subswitch of Port 2
Unsigned 8-bit integer
Output Subswitch of Port 2
artnet.address.swout_3 Output Subswitch of Port 3
Unsigned 8-bit integer
Output Subswitch of Port 3
artnet.address.swout_4 Output Subswitch of Port 4
Unsigned 8-bit integer
Ouput Subswitch of Port 4
artnet.address.swvideo SwVideo
Unsigned 8-bit integer
SwVideo
artnet.filler filler
Byte array
filler
artnet.firmware_master ArtFirmwareMaster packet
No value
Art-Net ArtFirmwareMaster packet
artnet.firmware_master.block_id Block ID
Unsigned 8-bit integer
Block ID
artnet.firmware_master.data data
Byte array
data
artnet.firmware_master.length Lentgh
Unsigned 32-bit integer
Length
artnet.firmware_master.type Type
Unsigned 8-bit integer
Number of Ports
artnet.firmware_reply ArtFirmwareReply packet
No value
Art-Net ArtFirmwareReply packet
artnet.firmware_reply.type Type
Unsigned 8-bit integer
Number of Ports
artnet.header Descriptor Header
No value
Art-Net Descriptor Header
artnet.header.id ID
String
ArtNET ID
artnet.header.opcode Opcode
Unsigned 16-bit integer
Art-Net message type
artnet.header.protver ProVer
Unsigned 16-bit integer
Protcol revision number
artnet.input ArtInput packet
No value
Art-Net ArtInput packet
artnet.input.input Port Status
No value
Port Status
artnet.input.input_1 Status of Port 1
Unsigned 8-bit integer
Status of Port 1
artnet.input.input_2 Status of Port 2
Unsigned 8-bit integer
Status of Port 2
artnet.input.input_3 Status of Port 3
Unsigned 8-bit integer
Status of Port 3
artnet.input.input_4 Status of Port 4
Unsigned 8-bit integer
Status of Port 4
artnet.input.num_ports Number of Ports
Unsigned 16-bit integer
Number of Ports
artnet.ip_prog ArtIpProg packet
No value
ArtNET ArtIpProg packet
artnet.ip_prog.command Command
Unsigned 8-bit integer
Command
artnet.ip_prog.command_prog_enable Enable Programming
Unsigned 8-bit integer
Enable Programming
artnet.ip_prog.command_prog_ip Program IP
Unsigned 8-bit integer
Program IP
artnet.ip_prog.command_prog_port Program Port
Unsigned 8-bit integer
Program Port
artnet.ip_prog.command_prog_sm Program Subnet Mask
Unsigned 8-bit integer
Program Subnet Mask
artnet.ip_prog.command_reset Reset parameters
Unsigned 8-bit integer
Reset parameters
artnet.ip_prog.command_unused Unused
Unsigned 8-bit integer
Unused
artnet.ip_prog.ip IP Address
IPv4 address
IP Address
artnet.ip_prog.port Port
Unsigned 16-bit integer
Port
artnet.ip_prog.sm Subnet mask
IPv4 address
IP Subnet mask
artnet.ip_prog_reply ArtIpProgReplay packet
No value
Art-Net ArtIpProgReply packet
artnet.ip_prog_reply.ip IP Address
IPv4 address
IP Address
artnet.ip_prog_reply.port Port
Unsigned 16-bit integer
Port
artnet.ip_prog_reply.sm Subnet mask
IPv4 address
IP Subnet mask
artnet.output ArtDMX packet
No value
Art-Net ArtDMX packet
artnet.output.data DMX data
No value
DMX Data
artnet.output.data_filter DMX data filter
Byte array
DMX Data Filter
artnet.output.dmx_data DMX data
No value
DMX Data
artnet.output.length Length
Unsigned 16-bit integer
Length
artnet.output.physical Physical
Unsigned 8-bit integer
Physical
artnet.output.sequence Sequence
Unsigned 8-bit integer
Sequence
artnet.output.universe Universe
Unsigned 16-bit integer
Universe
artnet.poll ArtPoll packet
No value
Art-Net ArtPoll packet
artnet.poll.talktome TalkToMe
Unsigned 8-bit integer
TalkToMe
artnet.poll.talktome_reply_dest Reply destination
Unsigned 8-bit integer
Reply destination
artnet.poll.talktome_reply_type Reply type
Unsigned 8-bit integer
Reply type
artnet.poll.talktome_unused unused
Unsigned 8-bit integer
unused
artnet.poll_reply ArtPollReply packet
No value
Art-Net ArtPollReply packet
artnet.poll_reply.esta_man ESTA Code
Unsigned 16-bit integer
ESTA Code
artnet.poll_reply.good_input Input Status
No value
Input Status
artnet.poll_reply.good_input_1 Input status of Port 1
Unsigned 8-bit integer
Input status of Port 1
artnet.poll_reply.good_input_2 Input status of Port 2
Unsigned 8-bit integer
Input status of Port 2
artnet.poll_reply.good_input_3 Input status of Port 3
Unsigned 8-bit integer
Input status of Port 3
artnet.poll_reply.good_input_4 Input status of Port 4
Unsigned 8-bit integer
Input status of Port 4
artnet.poll_reply.good_output Output Status
No value
Port output status
artnet.poll_reply.good_output_1 Output status of Port 1
Unsigned 8-bit integer
Output status of Port 1
artnet.poll_reply.good_output_2 Output status of Port 2
Unsigned 8-bit integer
Output status of Port 2
artnet.poll_reply.good_output_3 Output status of Port 3
Unsigned 8-bit integer
Output status of Port 3
artnet.poll_reply.good_output_4 Output status of Port 4
Unsigned 8-bit integer
Outpus status of Port 4
artnet.poll_reply.ip_address IP Address
IPv4 address
IP Address
artnet.poll_reply.long_name Long Name
String
Long Name
artnet.poll_reply.mac MAC
6-byte Hardware (MAC) Address
MAC
artnet.poll_reply.node_report Node Report
String
Node Report
artnet.poll_reply.num_ports Number of Ports
Unsigned 16-bit integer
Number of Ports
artnet.poll_reply.oem Oem
Unsigned 16-bit integer
OEM
artnet.poll_reply.port_info Port Info
No value
Port Info
artnet.poll_reply.port_nr Port number
Unsigned 16-bit integer
Port Number
artnet.poll_reply.port_types Port Types
No value
Port Types
artnet.poll_reply.port_types_1 Type of Port 1
Unsigned 8-bit integer
Type of Port 1
artnet.poll_reply.port_types_2 Type of Port 2
Unsigned 8-bit integer
Type of Port 2
artnet.poll_reply.port_types_3 Type of Port 3
Unsigned 8-bit integer
Type of Port 3
artnet.poll_reply.port_types_4 Type of Port 4
Unsigned 8-bit integer
Type of Port 4
artnet.poll_reply.short_name Short Name
String
Short Name
artnet.poll_reply.status Status
Unsigned 8-bit integer
Status
artnet.poll_reply.subswitch SubSwitch
Unsigned 16-bit integer
Subswitch version
artnet.poll_reply.swin Input Subswitch
No value
Input Subswitch
artnet.poll_reply.swin_1 Input Subswitch of Port 1
Unsigned 8-bit integer
Input Subswitch of Port 1
artnet.poll_reply.swin_2 Input Subswitch of Port 2
Unsigned 8-bit integer
Input Subswitch of Port 2
artnet.poll_reply.swin_3 Input Subswitch of Port 3
Unsigned 8-bit integer
Input Subswitch of Port 3
artnet.poll_reply.swin_4 Input Subswitch of Port 4
Unsigned 8-bit integer
Input Subswitch of Port 4
artnet.poll_reply.swmacro SwMacro
Unsigned 8-bit integer
SwMacro
artnet.poll_reply.swout Output Subswitch
No value
Output Subswitch
artnet.poll_reply.swout_1 Output Subswitch of Port 1
Unsigned 8-bit integer
Output Subswitch of Port 1
artnet.poll_reply.swout_2 Output Subswitch of Port 2
Unsigned 8-bit integer
Output Subswitch of Port 2
artnet.poll_reply.swout_3 Output Subswitch of Port 3
Unsigned 8-bit integer
Output Subswitch of Port 3
artnet.poll_reply.swout_4 Output Subswitch of Port 4
Unsigned 8-bit integer
Ouput Subswitch of Port 4
artnet.poll_reply.swremote SwRemote
Unsigned 8-bit integer
SwRemote
artnet.poll_reply.swvideo SwVideo
Unsigned 8-bit integer
SwVideo
artnet.poll_reply.ubea_version UBEA Version
Unsigned 8-bit integer
UBEA version number
artnet.poll_reply.versinfo Version Info
Unsigned 16-bit integer
Version info
artnet.poll_server_reply ArtPollServerReply packet
No value
Art-Net ArtPollServerReply packet
artnet.rdm ArtRdm packet
No value
Art-Net ArtRdm packet
artnet.rdm.address Address
Unsigned 8-bit integer
Address
artnet.rdm.command Command
Unsigned 8-bit integer
Command
artnet.spare spare
Byte array
spare
artnet.tod_control.command Command
Unsigned 8-bit integer
Command
artnet.tod_data ArtTodData packet
No value
Art-Net ArtTodData packet
artnet.tod_data.address Address
Unsigned 8-bit integer
Address
artnet.tod_data.block_count Block Count
Unsigned 8-bit integer
Block Count
artnet.tod_data.command_response Command Response
Unsigned 8-bit integer
Command Response
artnet.tod_data.port Port
Unsigned 8-bit integer
Port
artnet.tod_data.tod TOD
Byte array
TOD
artnet.tod_data.uid_count UID Count
Unsigned 8-bit integer
UID Count
artnet.tod_data.uid_total UID Total
Unsigned 16-bit integer
UID Total
artnet.tod_request ArtTodRequest packet
No value
Art-Net ArtTodRequest packet
artnet.tod_request.ad_count Address Count
Unsigned 8-bit integer
Address Count
artnet.tod_request.address Address
Byte array
Address
artnet.tod_request.command Command
Unsigned 8-bit integer
Command
artnet.video_data ArtVideoData packet
No value
Art-Net ArtVideoData packet
artnet.video_data.data Video Data
Byte array
Video Data
artnet.video_data.len_x LenX
Unsigned 8-bit integer
LenX
artnet.video_data.len_y LenY
Unsigned 8-bit integer
LenY
artnet.video_data.pos_x PosX
Unsigned 8-bit integer
PosX
artnet.video_data.pos_y PosY
Unsigned 8-bit integer
PosY
artnet.video_palette ArtVideoPalette packet
No value
Art-Net ArtVideoPalette packet
artnet.video_palette.colour_blue Colour Blue
Byte array
Colour Blue
artnet.video_palette.colour_green Colour Green
Byte array
Colour Green
artnet.video_palette.colour_red Colour Red
Byte array
Colour Red
artnet.video_setup ArtVideoSetup packet
No value
ArtNET ArtVideoSetup packet
artnet.video_setup.control control
Unsigned 8-bit integer
control
artnet.video_setup.first_font First Font
Unsigned 8-bit integer
First Font
artnet.video_setup.font_data Font data
Byte array
Font Date
artnet.video_setup.font_height Font Height
Unsigned 8-bit integer
Font Height
artnet.video_setup.last_font Last Font
Unsigned 8-bit integer
Last Font
artnet.video_setup.win_font_name Windows Font Name
String
Windows Font Name
adp.id Transaction ID
Unsigned 16-bit integer
ADP transaction ID
adp.mac MAC address
6-byte Hardware (MAC) Address
MAC address
adp.switch Switch IP
IPv4 address
Switch IP address
adp.type Type
Unsigned 16-bit integer
ADP type
adp.version Version
Unsigned 16-bit integer
ADP version
v120.address Link Address
Unsigned 16-bit integer
v120.control Control Field
Unsigned 16-bit integer
v120.control.f Final
Boolean
v120.control.ftype Frame type
Unsigned 16-bit integer
v120.control.n_r N(R)
Unsigned 16-bit integer
v120.control.n_s N(S)
Unsigned 16-bit integer
v120.control.p Poll
Boolean
v120.control.s_ftype Supervisory frame type
Unsigned 16-bit integer
v120.control.u_modifier_cmd Command
Unsigned 8-bit integer
v120.control.u_modifier_resp Response
Unsigned 8-bit integer
v120.header Header Field
String
alc.fec Forward Error Correction (FEC) header
No value
alc.fec.encoding_id FEC Encoding ID
Unsigned 8-bit integer
alc.fec.esi Encoding Symbol ID
Unsigned 32-bit integer
alc.fec.fti FEC Object Transmission Information
No value
alc.fec.fti.encoding_symbol_length Encoding Symbol Length
Unsigned 32-bit integer
alc.fec.fti.max_number_encoding_symbols Maximum Number of Encoding Symbols
Unsigned 32-bit integer
alc.fec.fti.max_source_block_length Maximum Source Block Length
Unsigned 32-bit integer
alc.fec.fti.transfer_length Transfer Length
Unsigned 64-bit integer
alc.fec.instance_id FEC Instance ID
Unsigned 8-bit integer
alc.fec.sbl Source Block Length
Unsigned 32-bit integer
alc.fec.sbn Source Block Number
Unsigned 32-bit integer
alc.lct Layered Coding Transport (LCT) header
No value
alc.lct.cci Congestion Control Information
Byte array
alc.lct.codepoint Codepoint
Unsigned 8-bit integer
alc.lct.ert Expected Residual Time
Time duration
alc.lct.ext Extension count
Unsigned 8-bit integer
alc.lct.flags Flags
No value
alc.lct.flags.close_object Close Object flag
Boolean
alc.lct.flags.close_session Close Session flag
Boolean
alc.lct.flags.ert_present Expected Residual Time present flag
Boolean
alc.lct.flags.sct_present Sender Current Time present flag
Boolean
alc.lct.fsize Field sizes (bytes)
No value
alc.lct.fsize.cci Congestion Control Information field size
Unsigned 8-bit integer
alc.lct.fsize.toi Transport Object Identifier field size
Unsigned 8-bit integer
alc.lct.fsize.tsi Transport Session Identifier field size
Unsigned 8-bit integer
alc.lct.hlen Header length
Unsigned 16-bit integer
alc.lct.sct Sender Current Time
Time duration
alc.lct.toi Transport Object Identifier (up to 64 bites)
Unsigned 64-bit integer
alc.lct.toi_extended Transport Object Identifier (up to 112 bits)
Byte array
alc.lct.tsi Transport Session Identifier
Unsigned 64-bit integer
alc.lct.version Version
Unsigned 8-bit integer
alc.payload Payload
No value
alc.version Version
Unsigned 8-bit integer
aal2_protocol_type aal2_protocol_type
Unsigned 8-bit integer
aal2_rx_cid aal2_rx_cid
Unsigned 8-bit integer
aal2_tx_cid aal2_tx_cid
Unsigned 8-bit integer
aal2cid aal2cid
Unsigned 8-bit integer
aal_type aal_type
Signed 32-bit integer
abtsc abtsc
Unsigned 16-bit integer
ac_isdn_info_elements_buffer ac_isdn_info_elements_buffer
String
ac_isdn_info_elements_buffer_length ac_isdn_info_elements_buffer_length
Signed 32-bit integer
ack1 ack1
Signed 32-bit integer
ack2 ack2
Signed 32-bit integer
ack3 ack3
Signed 32-bit integer
ack4 ack4
Signed 32-bit integer
ack_param1 ack_param1
Signed 32-bit integer
ack_param2 ack_param2
Signed 32-bit integer
ack_param3 ack_param3
Signed 32-bit integer
ack_param4 ack_param4
Signed 32-bit integer
ack_req_ind ack_req_ind
Signed 32-bit integer
acknowledge_error_code acknowledge_error_code
Signed 32-bit integer
acknowledge_status acknowledge_status
Signed 32-bit integer
acknowledge_table_index1 acknowledge_table_index1
String
acknowledge_table_index2 acknowledge_table_index2
String
acknowledge_table_index3 acknowledge_table_index3
String
acknowledge_table_index4 acknowledge_table_index4
String
acknowledge_table_name acknowledge_table_name
String
acknowledge_type acknowledge_type
Signed 32-bit integer
action action
Signed 32-bit integer
activate activate
Signed 32-bit integer
activation_direction activation_direction
Signed 32-bit integer
activation_option activation_option
Unsigned 8-bit integer
active active
Signed 32-bit integer
active_fiber_link active_fiber_link
Signed 32-bit integer
active_links_no active_links_no
Signed 32-bit integer
active_on_board active_on_board
Signed 32-bit integer
active_port_id active_port_id
Unsigned 32-bit integer
active_redundant_ter active_redundant_ter
Signed 32-bit integer
active_speaker_energy_threshold active_speaker_energy_threshold
Signed 32-bit integer
active_speaker_list_0 active_speaker_list_0
Signed 32-bit integer
active_speaker_list_1 active_speaker_list_1
Signed 32-bit integer
active_speaker_list_2 active_speaker_list_2
Signed 32-bit integer
active_speaker_notification_enable active_speaker_notification_enable
Signed 32-bit integer
active_speaker_notification_min_interval active_speaker_notification_min_interval
Signed 32-bit integer
active_speakers_energy_level_0 active_speakers_energy_level_0
Signed 32-bit integer
active_speakers_energy_level_1 active_speakers_energy_level_1
Signed 32-bit integer
active_speakers_energy_level_2 active_speakers_energy_level_2
Signed 32-bit integer
active_voice_prompt_repository_index active_voice_prompt_repository_index
Signed 32-bit integer
activity_status activity_status
Signed 32-bit integer
actual_routes_configured actual_routes_configured
Signed 32-bit integer
add add
Signed 32-bit integer
additional_info_0_0 additional_info_0_0
Signed 32-bit integer
additional_info_0_1 additional_info_0_1
Signed 32-bit integer
additional_info_0_10 additional_info_0_10
Signed 32-bit integer
additional_info_0_11 additional_info_0_11
Signed 32-bit integer
additional_info_0_12 additional_info_0_12
Signed 32-bit integer
additional_info_0_13 additional_info_0_13
Signed 32-bit integer
additional_info_0_14 additional_info_0_14
Signed 32-bit integer
additional_info_0_15 additional_info_0_15
Signed 32-bit integer
additional_info_0_16 additional_info_0_16
Signed 32-bit integer
additional_info_0_17 additional_info_0_17
Signed 32-bit integer
additional_info_0_18 additional_info_0_18
Signed 32-bit integer
additional_info_0_19 additional_info_0_19
Signed 32-bit integer
additional_info_0_2 additional_info_0_2
Signed 32-bit integer
additional_info_0_3 additional_info_0_3
Signed 32-bit integer
additional_info_0_4 additional_info_0_4
Signed 32-bit integer
additional_info_0_5 additional_info_0_5
Signed 32-bit integer
additional_info_0_6 additional_info_0_6
Signed 32-bit integer
additional_info_0_7 additional_info_0_7
Signed 32-bit integer
additional_info_0_8 additional_info_0_8
Signed 32-bit integer
additional_info_0_9 additional_info_0_9
Signed 32-bit integer
additional_info_1_0 additional_info_1_0
Signed 32-bit integer
additional_info_1_1 additional_info_1_1
Signed 32-bit integer
additional_info_1_10 additional_info_1_10
Signed 32-bit integer
additional_info_1_11 additional_info_1_11
Signed 32-bit integer
additional_info_1_12 additional_info_1_12
Signed 32-bit integer
additional_info_1_13 additional_info_1_13
Signed 32-bit integer
additional_info_1_14 additional_info_1_14
Signed 32-bit integer
additional_info_1_15 additional_info_1_15
Signed 32-bit integer
additional_info_1_16 additional_info_1_16
Signed 32-bit integer
additional_info_1_17 additional_info_1_17
Signed 32-bit integer
additional_info_1_18 additional_info_1_18
Signed 32-bit integer
additional_info_1_19 additional_info_1_19
Signed 32-bit integer
additional_info_1_2 additional_info_1_2
Signed 32-bit integer
additional_info_1_3 additional_info_1_3
Signed 32-bit integer
additional_info_1_4 additional_info_1_4
Signed 32-bit integer
additional_info_1_5 additional_info_1_5
Signed 32-bit integer
additional_info_1_6 additional_info_1_6
Signed 32-bit integer
additional_info_1_7 additional_info_1_7
Signed 32-bit integer
additional_info_1_8 additional_info_1_8
Signed 32-bit integer
additional_info_1_9 additional_info_1_9
Signed 32-bit integer
additional_information additional_information
Signed 32-bit integer
addr addr
Signed 32-bit integer
address_family address_family
Signed 32-bit integer
admin_state admin_state
Signed 32-bit integer
administrative_state administrative_state
Signed 32-bit integer
agc_cmd agc_cmd
Signed 32-bit integer
agc_enable agc_enable
Signed 32-bit integer
ais ais
Signed 32-bit integer
alarm_bit_map alarm_bit_map
Signed 32-bit integer
alarm_cause_a_line_far_end_loop_alarm alarm_cause_a_line_far_end_loop_alarm
Unsigned 8-bit integer
alarm_cause_a_shelf_alarm alarm_cause_a_shelf_alarm
Unsigned 8-bit integer
alarm_cause_b_line_far_end_loop_alarm alarm_cause_b_line_far_end_loop_alarm
Unsigned 8-bit integer
alarm_cause_b_shelf_alarm alarm_cause_b_shelf_alarm
Unsigned 8-bit integer
alarm_cause_c_line_far_end_loop_alarm alarm_cause_c_line_far_end_loop_alarm
Unsigned 8-bit integer
alarm_cause_c_shelf_alarm alarm_cause_c_shelf_alarm
Unsigned 8-bit integer
alarm_cause_d_line_far_end_loop_alarm alarm_cause_d_line_far_end_loop_alarm
Unsigned 8-bit integer
alarm_cause_d_shelf_alarm alarm_cause_d_shelf_alarm
Unsigned 8-bit integer
alarm_cause_framing alarm_cause_framing
Unsigned 8-bit integer
alarm_cause_major_alarm alarm_cause_major_alarm
Unsigned 8-bit integer
alarm_cause_minor_alarm alarm_cause_minor_alarm
Unsigned 8-bit integer
alarm_cause_p_line_far_end_loop_alarm alarm_cause_p_line_far_end_loop_alarm
Unsigned 8-bit integer
alarm_cause_power_miscellaneous_alarm alarm_cause_power_miscellaneous_alarm
Unsigned 8-bit integer
alarm_code alarm_code
Signed 32-bit integer
alarm_indication_signal alarm_indication_signal
Signed 32-bit integer
alarm_insertion_signal alarm_insertion_signal
Signed 32-bit integer
alarm_report_cause alarm_report_cause
Signed 32-bit integer
alarm_type alarm_type
Signed 32-bit integer
alcap_instance_id alcap_instance_id
Unsigned 32-bit integer
alcap_reset_cause alcap_reset_cause
Signed 32-bit integer
alcap_status alcap_status
Signed 32-bit integer
alert_state alert_state
Signed 32-bit integer
alert_type alert_type
Signed 32-bit integer
align align
String
alignment alignment
String
alignment2 alignment2
String
alignment3 alignment3
String
alignment_1 alignment_1
String
alignment_2 alignment_2
String
all_trunks all_trunks
Unsigned 8-bit integer
allowed_call_types allowed_call_types
Unsigned 8-bit integer
amd_activation_mode amd_activation_mode
Signed 32-bit integer
amd_decision amd_decision
Signed 32-bit integer
amr_coder_header_format amr_coder_header_format
Signed 32-bit integer
amr_coders_enable amr_coders_enable
String
amr_delay_hysteresis amr_delay_hysteresis
Unsigned 16-bit integer
amr_delay_threshold amr_delay_threshold
Unsigned 16-bit integer
amr_frame_loss_ratio_hysteresis amr_frame_loss_ratio_hysteresis
String
amr_frame_loss_ratio_threshold amr_frame_loss_ratio_threshold
String
amr_hand_out_state amr_hand_out_state
Signed 32-bit integer
amr_number_of_codec_modes amr_number_of_codec_modes
Unsigned 8-bit integer
amr_rate amr_rate
String
amr_redundancy_depth amr_redundancy_depth
Signed 32-bit integer
amr_redundancy_level amr_redundancy_level
String
analog_board_type analog_board_type
Signed 32-bit integer
analog_device_version_return_code analog_device_version_return_code
Signed 32-bit integer
analog_if_disconnect_state analog_if_disconnect_state
Signed 32-bit integer
analog_if_flash_duration analog_if_flash_duration
Signed 32-bit integer
analog_if_polarity_state analog_if_polarity_state
Signed 32-bit integer
analog_if_set_loop_back analog_if_set_loop_back
Signed 32-bit integer
analog_line_voltage_reading analog_line_voltage_reading
Signed 32-bit integer
analog_ring_voltage_reading analog_ring_voltage_reading
Signed 32-bit integer
analog_voltage_reading analog_voltage_reading
Signed 32-bit integer
anic_internal_state anic_internal_state
Signed 32-bit integer
announcement_buffer announcement_buffer
String
announcement_sequence_status announcement_sequence_status
Signed 32-bit integer
announcement_string announcement_string
String
announcement_type_0 announcement_type_0
Signed 32-bit integer
answer_detector_cmd answer_detector_cmd
Signed 32-bit integer
answer_tone_detection_direction answer_tone_detection_direction
Signed 32-bit integer
answer_tone_detection_origin answer_tone_detection_origin
Signed 32-bit integer
answering_machine_detection_direction answering_machine_detection_direction
Signed 32-bit integer
answering_machine_detector_decision_param1 answering_machine_detector_decision_param1
Unsigned 32-bit integer
answering_machine_detector_decision_param2 answering_machine_detector_decision_param2
Unsigned 32-bit integer
answering_machine_detector_decision_param3 answering_machine_detector_decision_param3
Unsigned 32-bit integer
answering_machine_detector_decision_param4 answering_machine_detector_decision_param4
Unsigned 32-bit integer
answering_machine_detector_decision_param5 answering_machine_detector_decision_param5
Unsigned 32-bit integer
answering_machine_detector_decision_param8 answering_machine_detector_decision_param8
Unsigned 32-bit integer
answering_machine_detector_sensitivity answering_machine_detector_sensitivity
Unsigned 8-bit integer
apb_timing_clock_alarm_0 apb_timing_clock_alarm_0
Unsigned 16-bit integer
apb_timing_clock_alarm_1 apb_timing_clock_alarm_1
Unsigned 16-bit integer
apb_timing_clock_alarm_2 apb_timing_clock_alarm_2
Unsigned 16-bit integer
apb_timing_clock_alarm_3 apb_timing_clock_alarm_3
Unsigned 16-bit integer
apb_timing_clock_enable_0 apb_timing_clock_enable_0
Unsigned 16-bit integer
apb_timing_clock_enable_1 apb_timing_clock_enable_1
Unsigned 16-bit integer
apb_timing_clock_enable_2 apb_timing_clock_enable_2
Unsigned 16-bit integer
apb_timing_clock_enable_3 apb_timing_clock_enable_3
Unsigned 16-bit integer
apb_timing_clock_source_0 apb_timing_clock_source_0
Signed 32-bit integer
apb_timing_clock_source_1 apb_timing_clock_source_1
Signed 32-bit integer
apb_timing_clock_source_2 apb_timing_clock_source_2
Signed 32-bit integer
apb_timing_clock_source_3 apb_timing_clock_source_3
Signed 32-bit integer
app_layer app_layer
Signed 32-bit integer
append append
Signed 32-bit integer
append_ch_rec_points append_ch_rec_points
Signed 32-bit integer
asrtts_speech_recognition_error asrtts_speech_recognition_error
Signed 32-bit integer
asrtts_speech_status asrtts_speech_status
Signed 32-bit integer
assessed_seconds assessed_seconds
Signed 32-bit integer
associated_cid associated_cid
Signed 32-bit integer
atm_network_cid atm_network_cid
Signed 32-bit integer
atm_port atm_port
Signed 32-bit integer
atmg711_default_law_select atmg711_default_law_select
Unsigned 8-bit integer
attenuation_value attenuation_value
Signed 32-bit integer
au3_number au3_number
Unsigned 32-bit integer
au3_number_0 au3_number_0
Unsigned 32-bit integer
au3_number_1 au3_number_1
Unsigned 32-bit integer
au3_number_10 au3_number_10
Unsigned 32-bit integer
au3_number_11 au3_number_11
Unsigned 32-bit integer
au3_number_12 au3_number_12
Unsigned 32-bit integer
au3_number_13 au3_number_13
Unsigned 32-bit integer
au3_number_14 au3_number_14
Unsigned 32-bit integer
au3_number_15 au3_number_15
Unsigned 32-bit integer
au3_number_16 au3_number_16
Unsigned 32-bit integer
au3_number_17 au3_number_17
Unsigned 32-bit integer
au3_number_18 au3_number_18
Unsigned 32-bit integer
au3_number_19 au3_number_19
Unsigned 32-bit integer
au3_number_2 au3_number_2
Unsigned 32-bit integer
au3_number_20 au3_number_20
Unsigned 32-bit integer
au3_number_21 au3_number_21
Unsigned 32-bit integer
au3_number_22 au3_number_22
Unsigned 32-bit integer
au3_number_23 au3_number_23
Unsigned 32-bit integer
au3_number_24 au3_number_24
Unsigned 32-bit integer
au3_number_25 au3_number_25
Unsigned 32-bit integer
au3_number_26 au3_number_26
Unsigned 32-bit integer
au3_number_27 au3_number_27
Unsigned 32-bit integer
au3_number_28 au3_number_28
Unsigned 32-bit integer
au3_number_29 au3_number_29
Unsigned 32-bit integer
au3_number_3 au3_number_3
Unsigned 32-bit integer
au3_number_30 au3_number_30
Unsigned 32-bit integer
au3_number_31 au3_number_31
Unsigned 32-bit integer
au3_number_32 au3_number_32
Unsigned 32-bit integer
au3_number_33 au3_number_33
Unsigned 32-bit integer
au3_number_34 au3_number_34
Unsigned 32-bit integer
au3_number_35 au3_number_35
Unsigned 32-bit integer
au3_number_36 au3_number_36
Unsigned 32-bit integer
au3_number_37 au3_number_37
Unsigned 32-bit integer
au3_number_38 au3_number_38
Unsigned 32-bit integer
au3_number_39 au3_number_39
Unsigned 32-bit integer
au3_number_4 au3_number_4
Unsigned 32-bit integer
au3_number_40 au3_number_40
Unsigned 32-bit integer
au3_number_41 au3_number_41
Unsigned 32-bit integer
au3_number_42 au3_number_42
Unsigned 32-bit integer
au3_number_43 au3_number_43
Unsigned 32-bit integer
au3_number_44 au3_number_44
Unsigned 32-bit integer
au3_number_45 au3_number_45
Unsigned 32-bit integer
au3_number_46 au3_number_46
Unsigned 32-bit integer
au3_number_47 au3_number_47
Unsigned 32-bit integer
au3_number_48 au3_number_48
Unsigned 32-bit integer
au3_number_49 au3_number_49
Unsigned 32-bit integer
au3_number_5 au3_number_5
Unsigned 32-bit integer
au3_number_50 au3_number_50
Unsigned 32-bit integer
au3_number_51 au3_number_51
Unsigned 32-bit integer
au3_number_52 au3_number_52
Unsigned 32-bit integer
au3_number_53 au3_number_53
Unsigned 32-bit integer
au3_number_54 au3_number_54
Unsigned 32-bit integer
au3_number_55 au3_number_55
Unsigned 32-bit integer
au3_number_56 au3_number_56
Unsigned 32-bit integer
au3_number_57 au3_number_57
Unsigned 32-bit integer
au3_number_58 au3_number_58
Unsigned 32-bit integer
au3_number_59 au3_number_59
Unsigned 32-bit integer
au3_number_6 au3_number_6
Unsigned 32-bit integer
au3_number_60 au3_number_60
Unsigned 32-bit integer
au3_number_61 au3_number_61
Unsigned 32-bit integer
au3_number_62 au3_number_62
Unsigned 32-bit integer
au3_number_63 au3_number_63
Unsigned 32-bit integer
au3_number_64 au3_number_64
Unsigned 32-bit integer
au3_number_65 au3_number_65
Unsigned 32-bit integer
au3_number_66 au3_number_66
Unsigned 32-bit integer
au3_number_67 au3_number_67
Unsigned 32-bit integer
au3_number_68 au3_number_68
Unsigned 32-bit integer
au3_number_69 au3_number_69
Unsigned 32-bit integer
au3_number_7 au3_number_7
Unsigned 32-bit integer
au3_number_70 au3_number_70
Unsigned 32-bit integer
au3_number_71 au3_number_71
Unsigned 32-bit integer
au3_number_72 au3_number_72
Unsigned 32-bit integer
au3_number_73 au3_number_73
Unsigned 32-bit integer
au3_number_74 au3_number_74
Unsigned 32-bit integer
au3_number_75 au3_number_75
Unsigned 32-bit integer
au3_number_76 au3_number_76
Unsigned 32-bit integer
au3_number_77 au3_number_77
Unsigned 32-bit integer
au3_number_78 au3_number_78
Unsigned 32-bit integer
au3_number_79 au3_number_79
Unsigned 32-bit integer
au3_number_8 au3_number_8
Unsigned 32-bit integer
au3_number_80 au3_number_80
Unsigned 32-bit integer
au3_number_81 au3_number_81
Unsigned 32-bit integer
au3_number_82 au3_number_82
Unsigned 32-bit integer
au3_number_83 au3_number_83
Unsigned 32-bit integer
au3_number_9 au3_number_9
Unsigned 32-bit integer
au_number au_number
Unsigned 8-bit integer
auto_est auto_est
Signed 32-bit integer
autonomous_signalling_sequence_type autonomous_signalling_sequence_type
Signed 32-bit integer
auxiliary_call_state auxiliary_call_state
Signed 32-bit integer
available available
Signed 32-bit integer
average average
Signed 32-bit integer
average_burst_density average_burst_density
Unsigned 8-bit integer
average_burst_duration average_burst_duration
Unsigned 16-bit integer
average_gap_density average_gap_density
Unsigned 8-bit integer
average_gap_duration average_gap_duration
Unsigned 16-bit integer
average_round_trip average_round_trip
Unsigned 32-bit integer
avg_rtt avg_rtt
Unsigned 32-bit integer
b_channel b_channel
Signed 32-bit integer
backward_key_sequence backward_key_sequence
String
barge_in barge_in
Signed 16-bit integer
base_board_firm_ware_ver base_board_firm_ware_ver
Signed 32-bit integer
bcc_protocol_data_link_error bcc_protocol_data_link_error
Signed 32-bit integer
bchannel bchannel
Signed 32-bit integer
bearer_establish_fail_cause bearer_establish_fail_cause
Signed 32-bit integer
bearer_release_indication_cause bearer_release_indication_cause
Signed 32-bit integer
bell_modem_transport_type bell_modem_transport_type
Signed 32-bit integer
bind_id bind_id
Unsigned 32-bit integer
bit_error bit_error
Signed 32-bit integer
bit_error_counter bit_error_counter
Unsigned 16-bit integer
bit_result bit_result
Signed 32-bit integer
bit_type bit_type
Signed 32-bit integer
bit_value bit_value
Signed 32-bit integer
bits_clock_reference bits_clock_reference
Signed 32-bit integer
blast_image_file blast_image_file
Signed 32-bit integer
blind_participant_id blind_participant_id
Signed 32-bit integer
block block
Signed 32-bit integer
block_origin block_origin
Signed 32-bit integer
blocking_status blocking_status
Signed 32-bit integer
board_analog_voltages board_analog_voltages
Signed 32-bit integer
board_flash_size board_flash_size
Signed 32-bit integer
board_handle board_handle
Signed 32-bit integer
board_hardware_revision board_hardware_revision
Signed 32-bit integer
board_id_switch board_id_switch
Signed 32-bit integer
board_ip_addr board_ip_addr
Unsigned 32-bit integer
board_ip_address board_ip_address
Unsigned 32-bit integer
board_params_tdm_bus_clock_source board_params_tdm_bus_clock_source
Signed 32-bit integer
board_params_tdm_bus_fallback_clock board_params_tdm_bus_fallback_clock
Signed 32-bit integer
board_ram_size board_ram_size
Signed 32-bit integer
board_sub_net_address board_sub_net_address
Unsigned 32-bit integer
board_temp board_temp
Signed 32-bit integer
board_temp_bit_return_code board_temp_bit_return_code
Signed 32-bit integer
board_type board_type
Signed 32-bit integer
boot_file boot_file
String
boot_file_length boot_file_length
Signed 32-bit integer
bootp_delay bootp_delay
Signed 32-bit integer
bootp_retries bootp_retries
Signed 32-bit integer
broken_connection_event_activation_mode broken_connection_event_activation_mode
Signed 32-bit integer
broken_connection_event_timeout broken_connection_event_timeout
Unsigned 32-bit integer
broken_connection_period broken_connection_period
Unsigned 32-bit integer
buffer buffer
String
buffer_length buffer_length
Signed 32-bit integer
bursty_errored_seconds bursty_errored_seconds
Signed 32-bit integer
bus bus
Signed 32-bit integer
bytes_processed bytes_processed
Unsigned 32-bit integer
bytes_received bytes_received
Signed 32-bit integer
c_bit_parity c_bit_parity
Signed 32-bit integer
c_dummy c_dummy
String
c_message_filter_enable c_message_filter_enable
Unsigned 8-bit integer
c_notch_filter_enable c_notch_filter_enable
Unsigned 8-bit integer
c_pci_geographical_address c_pci_geographical_address
Signed 32-bit integer
c_pci_shelf_geographical_address c_pci_shelf_geographical_address
Signed 32-bit integer
cadenced_ringing_type cadenced_ringing_type
Signed 32-bit integer
call_direction call_direction
Signed 32-bit integer
call_handle call_handle
Signed 32-bit integer
call_identity call_identity
String
call_progress_tone_generation_interface call_progress_tone_generation_interface
Unsigned 8-bit integer
call_progress_tone_index call_progress_tone_index
Signed 16-bit integer
call_state call_state
Signed 32-bit integer
call_type call_type
Unsigned 8-bit integer
called_line_identity called_line_identity
String
caller_id_detection_result caller_id_detection_result
Signed 32-bit integer
caller_id_generation_status caller_id_generation_status
Signed 32-bit integer
caller_id_standard caller_id_standard
Signed 32-bit integer
caller_id_transport_type caller_id_transport_type
Signed 32-bit integer
caller_id_type caller_id_type
Signed 32-bit integer
calling_answering calling_answering
Signed 32-bit integer
cas_relay_mode cas_relay_mode
Unsigned 8-bit integer
cas_relay_transport_mode cas_relay_transport_mode
Signed 32-bit integer
cas_table_index cas_table_index
Signed 32-bit integer
cas_table_name cas_table_name
String
cas_table_name_length cas_table_name_length
Signed 32-bit integer
cas_value cas_value
Signed 32-bit integer
cas_value_0 cas_value_0
Signed 32-bit integer
cas_value_1 cas_value_1
Signed 32-bit integer
cas_value_10 cas_value_10
Signed 32-bit integer
cas_value_11 cas_value_11
Signed 32-bit integer
cas_value_12 cas_value_12
Signed 32-bit integer
cas_value_13 cas_value_13
Signed 32-bit integer
cas_value_14 cas_value_14
Signed 32-bit integer
cas_value_15 cas_value_15
Signed 32-bit integer
cas_value_16 cas_value_16
Signed 32-bit integer
cas_value_17 cas_value_17
Signed 32-bit integer
cas_value_18 cas_value_18
Signed 32-bit integer
cas_value_19 cas_value_19
Signed 32-bit integer
cas_value_2 cas_value_2
Signed 32-bit integer
cas_value_20 cas_value_20
Signed 32-bit integer
cas_value_21 cas_value_21
Signed 32-bit integer
cas_value_22 cas_value_22
Signed 32-bit integer
cas_value_23 cas_value_23
Signed 32-bit integer
cas_value_24 cas_value_24
Signed 32-bit integer
cas_value_25 cas_value_25
Signed 32-bit integer
cas_value_26 cas_value_26
Signed 32-bit integer
cas_value_27 cas_value_27
Signed 32-bit integer
cas_value_28 cas_value_28
Signed 32-bit integer
cas_value_29 cas_value_29
Signed 32-bit integer
cas_value_3 cas_value_3
Signed 32-bit integer
cas_value_30 cas_value_30
Signed 32-bit integer
cas_value_31 cas_value_31
Signed 32-bit integer
cas_value_32 cas_value_32
Signed 32-bit integer
cas_value_33 cas_value_33
Signed 32-bit integer
cas_value_34 cas_value_34
Signed 32-bit integer
cas_value_35 cas_value_35
Signed 32-bit integer
cas_value_36 cas_value_36
Signed 32-bit integer
cas_value_37 cas_value_37
Signed 32-bit integer
cas_value_38 cas_value_38
Signed 32-bit integer
cas_value_39 cas_value_39
Signed 32-bit integer
cas_value_4 cas_value_4
Signed 32-bit integer
cas_value_40 cas_value_40
Signed 32-bit integer
cas_value_41 cas_value_41
Signed 32-bit integer
cas_value_42 cas_value_42
Signed 32-bit integer
cas_value_43 cas_value_43
Signed 32-bit integer
cas_value_44 cas_value_44
Signed 32-bit integer
cas_value_45 cas_value_45
Signed 32-bit integer
cas_value_46 cas_value_46
Signed 32-bit integer
cas_value_47 cas_value_47
Signed 32-bit integer
cas_value_48 cas_value_48
Signed 32-bit integer
cas_value_49 cas_value_49
Signed 32-bit integer
cas_value_5 cas_value_5
Signed 32-bit integer
cas_value_6 cas_value_6
Signed 32-bit integer
cas_value_7 cas_value_7
Signed 32-bit integer
cas_value_8 cas_value_8
Signed 32-bit integer
cas_value_9 cas_value_9
Signed 32-bit integer
cause cause
Signed 32-bit integer
ch_id ch_id
Signed 32-bit integer
ch_number_0 ch_number_0
Signed 32-bit integer
ch_number_1 ch_number_1
Signed 32-bit integer
ch_number_10 ch_number_10
Signed 32-bit integer
ch_number_11 ch_number_11
Signed 32-bit integer
ch_number_12 ch_number_12
Signed 32-bit integer
ch_number_13 ch_number_13
Signed 32-bit integer
ch_number_14 ch_number_14
Signed 32-bit integer
ch_number_15 ch_number_15
Signed 32-bit integer
ch_number_16 ch_number_16
Signed 32-bit integer
ch_number_17 ch_number_17
Signed 32-bit integer
ch_number_18 ch_number_18
Signed 32-bit integer
ch_number_19 ch_number_19
Signed 32-bit integer
ch_number_2 ch_number_2
Signed 32-bit integer
ch_number_20 ch_number_20
Signed 32-bit integer
ch_number_21 ch_number_21
Signed 32-bit integer
ch_number_22 ch_number_22
Signed 32-bit integer
ch_number_23 ch_number_23
Signed 32-bit integer
ch_number_24 ch_number_24
Signed 32-bit integer
ch_number_25 ch_number_25
Signed 32-bit integer
ch_number_26 ch_number_26
Signed 32-bit integer
ch_number_27 ch_number_27
Signed 32-bit integer
ch_number_28 ch_number_28
Signed 32-bit integer
ch_number_29 ch_number_29
Signed 32-bit integer
ch_number_3 ch_number_3
Signed 32-bit integer
ch_number_30 ch_number_30
Signed 32-bit integer
ch_number_31 ch_number_31
Signed 32-bit integer
ch_number_4 ch_number_4
Signed 32-bit integer
ch_number_5 ch_number_5
Signed 32-bit integer
ch_number_6 ch_number_6
Signed 32-bit integer
ch_number_7 ch_number_7
Signed 32-bit integer
ch_number_8 ch_number_8
Signed 32-bit integer
ch_number_9 ch_number_9
Signed 32-bit integer
ch_status_0 ch_status_0
Signed 32-bit integer
ch_status_1 ch_status_1
Signed 32-bit integer
ch_status_10 ch_status_10
Signed 32-bit integer
ch_status_11 ch_status_11
Signed 32-bit integer
ch_status_12 ch_status_12
Signed 32-bit integer
ch_status_13 ch_status_13
Signed 32-bit integer
ch_status_14 ch_status_14
Signed 32-bit integer
ch_status_15 ch_status_15
Signed 32-bit integer
ch_status_16 ch_status_16
Signed 32-bit integer
ch_status_17 ch_status_17
Signed 32-bit integer
ch_status_18 ch_status_18
Signed 32-bit integer
ch_status_19 ch_status_19
Signed 32-bit integer
ch_status_2 ch_status_2
Signed 32-bit integer
ch_status_20 ch_status_20
Signed 32-bit integer
ch_status_21 ch_status_21
Signed 32-bit integer
ch_status_22 ch_status_22
Signed 32-bit integer
ch_status_23 ch_status_23
Signed 32-bit integer
ch_status_24 ch_status_24
Signed 32-bit integer
ch_status_25 ch_status_25
Signed 32-bit integer
ch_status_26 ch_status_26
Signed 32-bit integer
ch_status_27 ch_status_27
Signed 32-bit integer
ch_status_28 ch_status_28
Signed 32-bit integer
ch_status_29 ch_status_29
Signed 32-bit integer
ch_status_3 ch_status_3
Signed 32-bit integer
ch_status_30 ch_status_30
Signed 32-bit integer
ch_status_31 ch_status_31
Signed 32-bit integer
ch_status_4 ch_status_4
Signed 32-bit integer
ch_status_5 ch_status_5
Signed 32-bit integer
ch_status_6 ch_status_6
Signed 32-bit integer
ch_status_7 ch_status_7
Signed 32-bit integer
ch_status_8 ch_status_8
Signed 32-bit integer
ch_status_9 ch_status_9
Signed 32-bit integer
channel_count channel_count
Signed 32-bit integer
channel_id channel_id
Signed 32-bit integer
check_sum_lsb check_sum_lsb
Signed 32-bit integer
check_sum_msb check_sum_msb
Signed 32-bit integer
chip_id1 chip_id1
Signed 32-bit integer
chip_id2 chip_id2
Signed 32-bit integer
chip_id3 chip_id3
Signed 32-bit integer
cid cid
Signed 32-bit integer
cid_available cid_available
Signed 32-bit integer
cid_list_0 cid_list_0
Signed 16-bit integer
cid_list_1 cid_list_1
Signed 16-bit integer
cid_list_10 cid_list_10
Signed 16-bit integer
cid_list_100 cid_list_100
Signed 16-bit integer
cid_list_101 cid_list_101
Signed 16-bit integer
cid_list_102 cid_list_102
Signed 16-bit integer
cid_list_103 cid_list_103
Signed 16-bit integer
cid_list_104 cid_list_104
Signed 16-bit integer
cid_list_105 cid_list_105
Signed 16-bit integer
cid_list_106 cid_list_106
Signed 16-bit integer
cid_list_107 cid_list_107
Signed 16-bit integer
cid_list_108 cid_list_108
Signed 16-bit integer
cid_list_109 cid_list_109
Signed 16-bit integer
cid_list_11 cid_list_11
Signed 16-bit integer
cid_list_110 cid_list_110
Signed 16-bit integer
cid_list_111 cid_list_111
Signed 16-bit integer
cid_list_112 cid_list_112
Signed 16-bit integer
cid_list_113 cid_list_113
Signed 16-bit integer
cid_list_114 cid_list_114
Signed 16-bit integer
cid_list_115 cid_list_115
Signed 16-bit integer
cid_list_116 cid_list_116
Signed 16-bit integer
cid_list_117 cid_list_117
Signed 16-bit integer
cid_list_118 cid_list_118
Signed 16-bit integer
cid_list_119 cid_list_119
Signed 16-bit integer
cid_list_12 cid_list_12
Signed 16-bit integer
cid_list_120 cid_list_120
Signed 16-bit integer
cid_list_121 cid_list_121
Signed 16-bit integer
cid_list_122 cid_list_122
Signed 16-bit integer
cid_list_123 cid_list_123
Signed 16-bit integer
cid_list_124 cid_list_124
Signed 16-bit integer
cid_list_125 cid_list_125
Signed 16-bit integer
cid_list_126 cid_list_126
Signed 16-bit integer
cid_list_127 cid_list_127
Signed 16-bit integer
cid_list_128 cid_list_128
Signed 16-bit integer
cid_list_129 cid_list_129
Signed 16-bit integer
cid_list_13 cid_list_13
Signed 16-bit integer
cid_list_130 cid_list_130
Signed 16-bit integer
cid_list_131 cid_list_131
Signed 16-bit integer
cid_list_132 cid_list_132
Signed 16-bit integer
cid_list_133 cid_list_133
Signed 16-bit integer
cid_list_134 cid_list_134
Signed 16-bit integer
cid_list_135 cid_list_135
Signed 16-bit integer
cid_list_136 cid_list_136
Signed 16-bit integer
cid_list_137 cid_list_137
Signed 16-bit integer
cid_list_138 cid_list_138
Signed 16-bit integer
cid_list_139 cid_list_139
Signed 16-bit integer
cid_list_14 cid_list_14
Signed 16-bit integer
cid_list_140 cid_list_140
Signed 16-bit integer
cid_list_141 cid_list_141
Signed 16-bit integer
cid_list_142 cid_list_142
Signed 16-bit integer
cid_list_143 cid_list_143
Signed 16-bit integer
cid_list_144 cid_list_144
Signed 16-bit integer
cid_list_145 cid_list_145
Signed 16-bit integer
cid_list_146 cid_list_146
Signed 16-bit integer
cid_list_147 cid_list_147
Signed 16-bit integer
cid_list_148 cid_list_148
Signed 16-bit integer
cid_list_149 cid_list_149
Signed 16-bit integer
cid_list_15 cid_list_15
Signed 16-bit integer
cid_list_150 cid_list_150
Signed 16-bit integer
cid_list_151 cid_list_151
Signed 16-bit integer
cid_list_152 cid_list_152
Signed 16-bit integer
cid_list_153 cid_list_153
Signed 16-bit integer
cid_list_154 cid_list_154
Signed 16-bit integer
cid_list_155 cid_list_155
Signed 16-bit integer
cid_list_156 cid_list_156
Signed 16-bit integer
cid_list_157 cid_list_157
Signed 16-bit integer
cid_list_158 cid_list_158
Signed 16-bit integer
cid_list_159 cid_list_159
Signed 16-bit integer
cid_list_16 cid_list_16
Signed 16-bit integer
cid_list_160 cid_list_160
Signed 16-bit integer
cid_list_161 cid_list_161
Signed 16-bit integer
cid_list_162 cid_list_162
Signed 16-bit integer
cid_list_163 cid_list_163
Signed 16-bit integer
cid_list_164 cid_list_164
Signed 16-bit integer
cid_list_165 cid_list_165
Signed 16-bit integer
cid_list_166 cid_list_166
Signed 16-bit integer
cid_list_167 cid_list_167
Signed 16-bit integer
cid_list_168 cid_list_168
Signed 16-bit integer
cid_list_169 cid_list_169
Signed 16-bit integer
cid_list_17 cid_list_17
Signed 16-bit integer
cid_list_170 cid_list_170
Signed 16-bit integer
cid_list_171 cid_list_171
Signed 16-bit integer
cid_list_172 cid_list_172
Signed 16-bit integer
cid_list_173 cid_list_173
Signed 16-bit integer
cid_list_174 cid_list_174
Signed 16-bit integer
cid_list_175 cid_list_175
Signed 16-bit integer
cid_list_176 cid_list_176
Signed 16-bit integer
cid_list_177 cid_list_177
Signed 16-bit integer
cid_list_178 cid_list_178
Signed 16-bit integer
cid_list_179 cid_list_179
Signed 16-bit integer
cid_list_18 cid_list_18
Signed 16-bit integer
cid_list_180 cid_list_180
Signed 16-bit integer
cid_list_181 cid_list_181
Signed 16-bit integer
cid_list_182 cid_list_182
Signed 16-bit integer
cid_list_183 cid_list_183
Signed 16-bit integer
cid_list_184 cid_list_184
Signed 16-bit integer
cid_list_185 cid_list_185
Signed 16-bit integer
cid_list_186 cid_list_186
Signed 16-bit integer
cid_list_187 cid_list_187
Signed 16-bit integer
cid_list_188 cid_list_188
Signed 16-bit integer
cid_list_189 cid_list_189
Signed 16-bit integer
cid_list_19 cid_list_19
Signed 16-bit integer
cid_list_190 cid_list_190
Signed 16-bit integer
cid_list_191 cid_list_191
Signed 16-bit integer
cid_list_192 cid_list_192
Signed 16-bit integer
cid_list_193 cid_list_193
Signed 16-bit integer
cid_list_194 cid_list_194
Signed 16-bit integer
cid_list_195 cid_list_195
Signed 16-bit integer
cid_list_196 cid_list_196
Signed 16-bit integer
cid_list_197 cid_list_197
Signed 16-bit integer
cid_list_198 cid_list_198
Signed 16-bit integer
cid_list_199 cid_list_199
Signed 16-bit integer
cid_list_2 cid_list_2
Signed 16-bit integer
cid_list_20 cid_list_20
Signed 16-bit integer
cid_list_200 cid_list_200
Signed 16-bit integer
cid_list_201 cid_list_201
Signed 16-bit integer
cid_list_202 cid_list_202
Signed 16-bit integer
cid_list_203 cid_list_203
Signed 16-bit integer
cid_list_204 cid_list_204
Signed 16-bit integer
cid_list_205 cid_list_205
Signed 16-bit integer
cid_list_206 cid_list_206
Signed 16-bit integer
cid_list_207 cid_list_207
Signed 16-bit integer
cid_list_208 cid_list_208
Signed 16-bit integer
cid_list_209 cid_list_209
Signed 16-bit integer
cid_list_21 cid_list_21
Signed 16-bit integer
cid_list_210 cid_list_210
Signed 16-bit integer
cid_list_211 cid_list_211
Signed 16-bit integer
cid_list_212 cid_list_212
Signed 16-bit integer
cid_list_213 cid_list_213
Signed 16-bit integer
cid_list_214 cid_list_214
Signed 16-bit integer
cid_list_215 cid_list_215
Signed 16-bit integer
cid_list_216 cid_list_216
Signed 16-bit integer
cid_list_217 cid_list_217
Signed 16-bit integer
cid_list_218 cid_list_218
Signed 16-bit integer
cid_list_219 cid_list_219
Signed 16-bit integer
cid_list_22 cid_list_22
Signed 16-bit integer
cid_list_220 cid_list_220
Signed 16-bit integer
cid_list_221 cid_list_221
Signed 16-bit integer
cid_list_222 cid_list_222
Signed 16-bit integer
cid_list_223 cid_list_223
Signed 16-bit integer
cid_list_224 cid_list_224
Signed 16-bit integer
cid_list_225 cid_list_225
Signed 16-bit integer
cid_list_226 cid_list_226
Signed 16-bit integer
cid_list_227 cid_list_227
Signed 16-bit integer
cid_list_228 cid_list_228
Signed 16-bit integer
cid_list_229 cid_list_229
Signed 16-bit integer
cid_list_23 cid_list_23
Signed 16-bit integer
cid_list_230 cid_list_230
Signed 16-bit integer
cid_list_231 cid_list_231
Signed 16-bit integer
cid_list_232 cid_list_232
Signed 16-bit integer
cid_list_233 cid_list_233
Signed 16-bit integer
cid_list_234 cid_list_234
Signed 16-bit integer
cid_list_235 cid_list_235
Signed 16-bit integer
cid_list_236 cid_list_236
Signed 16-bit integer
cid_list_237 cid_list_237
Signed 16-bit integer
cid_list_238 cid_list_238
Signed 16-bit integer
cid_list_239 cid_list_239
Signed 16-bit integer
cid_list_24 cid_list_24
Signed 16-bit integer
cid_list_240 cid_list_240
Signed 16-bit integer
cid_list_241 cid_list_241
Signed 16-bit integer
cid_list_242 cid_list_242
Signed 16-bit integer
cid_list_243 cid_list_243
Signed 16-bit integer
cid_list_244 cid_list_244
Signed 16-bit integer
cid_list_245 cid_list_245
Signed 16-bit integer
cid_list_246 cid_list_246
Signed 16-bit integer
cid_list_247 cid_list_247
Signed 16-bit integer
cid_list_25 cid_list_25
Signed 16-bit integer
cid_list_26 cid_list_26
Signed 16-bit integer
cid_list_27 cid_list_27
Signed 16-bit integer
cid_list_28 cid_list_28
Signed 16-bit integer
cid_list_29 cid_list_29
Signed 16-bit integer
cid_list_3 cid_list_3
Signed 16-bit integer
cid_list_30 cid_list_30
Signed 16-bit integer
cid_list_31 cid_list_31
Signed 16-bit integer
cid_list_32 cid_list_32
Signed 16-bit integer
cid_list_33 cid_list_33
Signed 16-bit integer
cid_list_34 cid_list_34
Signed 16-bit integer
cid_list_35 cid_list_35
Signed 16-bit integer
cid_list_36 cid_list_36
Signed 16-bit integer
cid_list_37 cid_list_37
Signed 16-bit integer
cid_list_38 cid_list_38
Signed 16-bit integer
cid_list_39 cid_list_39
Signed 16-bit integer
cid_list_4 cid_list_4
Signed 16-bit integer
cid_list_40 cid_list_40
Signed 16-bit integer
cid_list_41 cid_list_41
Signed 16-bit integer
cid_list_42 cid_list_42
Signed 16-bit integer
cid_list_43 cid_list_43
Signed 16-bit integer
cid_list_44 cid_list_44
Signed 16-bit integer
cid_list_45 cid_list_45
Signed 16-bit integer
cid_list_46 cid_list_46
Signed 16-bit integer
cid_list_47 cid_list_47
Signed 16-bit integer
cid_list_48 cid_list_48
Signed 16-bit integer
cid_list_49 cid_list_49
Signed 16-bit integer
cid_list_5 cid_list_5
Signed 16-bit integer
cid_list_50 cid_list_50
Signed 16-bit integer
cid_list_51 cid_list_51
Signed 16-bit integer
cid_list_52 cid_list_52
Signed 16-bit integer
cid_list_53 cid_list_53
Signed 16-bit integer
cid_list_54 cid_list_54
Signed 16-bit integer
cid_list_55 cid_list_55
Signed 16-bit integer
cid_list_56 cid_list_56
Signed 16-bit integer
cid_list_57 cid_list_57
Signed 16-bit integer
cid_list_58 cid_list_58
Signed 16-bit integer
cid_list_59 cid_list_59
Signed 16-bit integer
cid_list_6 cid_list_6
Signed 16-bit integer
cid_list_60 cid_list_60
Signed 16-bit integer
cid_list_61 cid_list_61
Signed 16-bit integer
cid_list_62 cid_list_62
Signed 16-bit integer
cid_list_63 cid_list_63
Signed 16-bit integer
cid_list_64 cid_list_64
Signed 16-bit integer
cid_list_65 cid_list_65
Signed 16-bit integer
cid_list_66 cid_list_66
Signed 16-bit integer
cid_list_67 cid_list_67
Signed 16-bit integer
cid_list_68 cid_list_68
Signed 16-bit integer
cid_list_69 cid_list_69
Signed 16-bit integer
cid_list_7 cid_list_7
Signed 16-bit integer
cid_list_70 cid_list_70
Signed 16-bit integer
cid_list_71 cid_list_71
Signed 16-bit integer
cid_list_72 cid_list_72
Signed 16-bit integer
cid_list_73 cid_list_73
Signed 16-bit integer
cid_list_74 cid_list_74
Signed 16-bit integer
cid_list_75 cid_list_75
Signed 16-bit integer
cid_list_76 cid_list_76
Signed 16-bit integer
cid_list_77 cid_list_77
Signed 16-bit integer
cid_list_78 cid_list_78
Signed 16-bit integer
cid_list_79 cid_list_79
Signed 16-bit integer
cid_list_8 cid_list_8
Signed 16-bit integer
cid_list_80 cid_list_80
Signed 16-bit integer
cid_list_81 cid_list_81
Signed 16-bit integer
cid_list_82 cid_list_82
Signed 16-bit integer
cid_list_83 cid_list_83
Signed 16-bit integer
cid_list_84 cid_list_84
Signed 16-bit integer
cid_list_85 cid_list_85
Signed 16-bit integer
cid_list_86 cid_list_86
Signed 16-bit integer
cid_list_87 cid_list_87
Signed 16-bit integer
cid_list_88 cid_list_88
Signed 16-bit integer
cid_list_89 cid_list_89
Signed 16-bit integer
cid_list_9 cid_list_9
Signed 16-bit integer
cid_list_90 cid_list_90
Signed 16-bit integer
cid_list_91 cid_list_91
Signed 16-bit integer
cid_list_92 cid_list_92
Signed 16-bit integer
cid_list_93 cid_list_93
Signed 16-bit integer
cid_list_94 cid_list_94
Signed 16-bit integer
cid_list_95 cid_list_95
Signed 16-bit integer
cid_list_96 cid_list_96
Signed 16-bit integer
cid_list_97 cid_list_97
Signed 16-bit integer
cid_list_98 cid_list_98
Signed 16-bit integer
cid_list_99 cid_list_99
Signed 16-bit integer
clear_digit_buffer clear_digit_buffer
Signed 32-bit integer
clp clp
Signed 32-bit integer
cmd_id cmd_id
Signed 32-bit integer
cmd_reserved cmd_reserved
Unsigned 16-bit integer
cmd_rev_lsb cmd_rev_lsb
Unsigned 8-bit integer
cmd_rev_msb cmd_rev_msb
Unsigned 8-bit integer
cname cname
String
cname_length cname_length
Signed 32-bit integer
cng_detector_mode cng_detector_mode
Signed 32-bit integer
co_ind co_ind
Signed 32-bit integer
coach_mode coach_mode
Signed 32-bit integer
code code
Signed 32-bit integer
code_violation_counter code_violation_counter
Unsigned 16-bit integer
codec_validation codec_validation
Signed 32-bit integer
coder coder
Signed 32-bit integer
command_line command_line
String
command_line_length command_line_length
Signed 32-bit integer
command_type command_type
Signed 32-bit integer
comment comment
Signed 32-bit integer
complementary_calling_line_identity complementary_calling_line_identity
String
completion_method completion_method
String
component_1_frequency component_1_frequency
Signed 32-bit integer
component_1_tone_component_reserved component_1_tone_component_reserved
String
component_tag component_tag
Signed 32-bit integer
concentrator_field_c1 concentrator_field_c1
Unsigned 8-bit integer
concentrator_field_c10 concentrator_field_c10
Unsigned 8-bit integer
concentrator_field_c11 concentrator_field_c11
Unsigned 8-bit integer
concentrator_field_c2 concentrator_field_c2
Unsigned 8-bit integer
concentrator_field_c3 concentrator_field_c3
Unsigned 8-bit integer
concentrator_field_c4 concentrator_field_c4
Unsigned 8-bit integer
concentrator_field_c5 concentrator_field_c5
Unsigned 8-bit integer
concentrator_field_c6 concentrator_field_c6
Unsigned 8-bit integer
concentrator_field_c7 concentrator_field_c7
Unsigned 8-bit integer
concentrator_field_c8 concentrator_field_c8
Unsigned 8-bit integer
concentrator_field_c9 concentrator_field_c9
Unsigned 8-bit integer
conference_handle conference_handle
Signed 32-bit integer
conference_id conference_id
Signed 32-bit integer
conference_media_types conference_media_types
Signed 32-bit integer
conference_participant_id conference_participant_id
Signed 32-bit integer
conference_participant_source conference_participant_source
Signed 32-bit integer
confidence_level confidence_level
Unsigned 8-bit integer
confidence_threshold confidence_threshold
Signed 32-bit integer
congestion congestion
Signed 32-bit integer
congestion_level congestion_level
Signed 32-bit integer
conn_id conn_id
Signed 32-bit integer
conn_id_usage conn_id_usage
String
connected connected
Signed 32-bit integer
connection_establishment_notification_mode connection_establishment_notification_mode
Signed 32-bit integer
control_gateway_address_0 control_gateway_address_0
Unsigned 32-bit integer
control_gateway_address_1 control_gateway_address_1
Unsigned 32-bit integer
control_gateway_address_2 control_gateway_address_2
Unsigned 32-bit integer
control_gateway_address_3 control_gateway_address_3
Unsigned 32-bit integer
control_gateway_address_4 control_gateway_address_4
Unsigned 32-bit integer
control_gateway_address_5 control_gateway_address_5
Unsigned 32-bit integer
control_ip_address_0 control_ip_address_0
Unsigned 32-bit integer
control_ip_address_1 control_ip_address_1
Unsigned 32-bit integer
control_ip_address_2 control_ip_address_2
Unsigned 32-bit integer
control_ip_address_3 control_ip_address_3
Unsigned 32-bit integer
control_ip_address_4 control_ip_address_4
Unsigned 32-bit integer
control_ip_address_5 control_ip_address_5
Unsigned 32-bit integer
control_packet_loss_counter control_packet_loss_counter
Unsigned 32-bit integer
control_packets_max_retransmits control_packets_max_retransmits
Unsigned 32-bit integer
control_protocol_data_link_error control_protocol_data_link_error
Signed 32-bit integer
control_subnet_mask_address_0 control_subnet_mask_address_0
Unsigned 32-bit integer
control_subnet_mask_address_1 control_subnet_mask_address_1
Unsigned 32-bit integer
control_subnet_mask_address_2 control_subnet_mask_address_2
Unsigned 32-bit integer
control_subnet_mask_address_3 control_subnet_mask_address_3
Unsigned 32-bit integer
control_subnet_mask_address_4 control_subnet_mask_address_4
Unsigned 32-bit integer
control_subnet_mask_address_5 control_subnet_mask_address_5
Unsigned 32-bit integer
control_type control_type
Signed 32-bit integer
control_vlan_id_0 control_vlan_id_0
Unsigned 32-bit integer
control_vlan_id_1 control_vlan_id_1
Unsigned 32-bit integer
control_vlan_id_2 control_vlan_id_2
Unsigned 32-bit integer
control_vlan_id_3 control_vlan_id_3
Unsigned 32-bit integer
control_vlan_id_4 control_vlan_id_4
Unsigned 32-bit integer
control_vlan_id_5 control_vlan_id_5
Unsigned 32-bit integer
controlled_slip controlled_slip
Signed 32-bit integer
controlled_slip_seconds controlled_slip_seconds
Signed 32-bit integer
cps_timer_cu_duration cps_timer_cu_duration
Signed 32-bit integer
cpspdu_threshold cpspdu_threshold
Signed 32-bit integer
cpu_bus_speed cpu_bus_speed
Signed 32-bit integer
cpu_speed cpu_speed
Signed 32-bit integer
cpu_ver cpu_ver
Signed 32-bit integer
crc_4_error crc_4_error
Unsigned 16-bit integer
crc_error_counter crc_error_counter
Unsigned 32-bit integer
crc_error_e_bit_counter crc_error_e_bit_counter
Unsigned 16-bit integer
crc_error_received crc_error_received
Signed 32-bit integer
crc_error_rx_counter crc_error_rx_counter
Unsigned 16-bit integer
crcec crcec
Unsigned 16-bit integer
cum_lost cum_lost
Unsigned 32-bit integer
current_cas_value current_cas_value
Signed 32-bit integer
current_chunk_len current_chunk_len
Signed 32-bit integer
customer_key customer_key
Unsigned 32-bit integer
customer_key_type customer_key_type
Signed 32-bit integer
cypher_type cypher_type
Signed 32-bit integer
data_buff data_buff
String
data_length data_length
Unsigned 16-bit integer
data_size data_size
Signed 32-bit integer
data_tx_queue_size data_tx_queue_size
Unsigned 16-bit integer
date date
String
date_time_provider date_time_provider
Signed 32-bit integer
day day
Signed 32-bit integer
dbg_rec_filter_type_all dbg_rec_filter_type_all
Unsigned 8-bit integer
dbg_rec_filter_type_cas dbg_rec_filter_type_cas
Unsigned 8-bit integer
dbg_rec_filter_type_fax dbg_rec_filter_type_fax
Unsigned 8-bit integer
dbg_rec_filter_type_ibs dbg_rec_filter_type_ibs
Unsigned 8-bit integer
dbg_rec_filter_type_modem dbg_rec_filter_type_modem
Unsigned 8-bit integer
dbg_rec_filter_type_rtcp dbg_rec_filter_type_rtcp
Unsigned 8-bit integer
dbg_rec_filter_type_rtp dbg_rec_filter_type_rtp
Unsigned 8-bit integer
dbg_rec_filter_type_voice dbg_rec_filter_type_voice
Unsigned 8-bit integer
dbg_rec_trigger_type_cas dbg_rec_trigger_type_cas
Unsigned 8-bit integer
dbg_rec_trigger_type_err dbg_rec_trigger_type_err
Unsigned 8-bit integer
dbg_rec_trigger_type_fax dbg_rec_trigger_type_fax
Unsigned 8-bit integer
dbg_rec_trigger_type_ibs dbg_rec_trigger_type_ibs
Unsigned 8-bit integer
dbg_rec_trigger_type_modem dbg_rec_trigger_type_modem
Unsigned 8-bit integer
dbg_rec_trigger_type_no_trigger dbg_rec_trigger_type_no_trigger
Unsigned 8-bit integer
dbg_rec_trigger_type_padding dbg_rec_trigger_type_padding
Unsigned 8-bit integer
dbg_rec_trigger_type_rtcp dbg_rec_trigger_type_rtcp
Unsigned 8-bit integer
dbg_rec_trigger_type_silence dbg_rec_trigger_type_silence
Unsigned 8-bit integer
dbg_rec_trigger_type_stop dbg_rec_trigger_type_stop
Unsigned 8-bit integer
de_activation_option de_activation_option
Unsigned 32-bit integer
deaf_participant_id deaf_participant_id
Signed 32-bit integer
decoder_0 decoder_0
Signed 32-bit integer
decoder_1 decoder_1
Signed 32-bit integer
decoder_2 decoder_2
Signed 32-bit integer
decoder_3 decoder_3
Signed 32-bit integer
decoder_4 decoder_4
Signed 32-bit integer
def_gtwy_ip def_gtwy_ip
Unsigned 32-bit integer
default_gateway_address default_gateway_address
Unsigned 32-bit integer
degraded_minutes degraded_minutes
Signed 32-bit integer
delivery_method delivery_method
Signed 32-bit integer
dest_cid dest_cid
Signed 32-bit integer
dest_end_point dest_end_point
Signed 32-bit integer
dest_number_plan dest_number_plan
Signed 32-bit integer
dest_number_type dest_number_type
Signed 32-bit integer
dest_phone_num dest_phone_num
String
dest_phone_sub_num dest_phone_sub_num
String
dest_sub_address_format dest_sub_address_format
Signed 32-bit integer
dest_sub_address_type dest_sub_address_type
Signed 32-bit integer
destination_cid destination_cid
Signed 32-bit integer
destination_direction destination_direction
Signed 32-bit integer
destination_ip destination_ip
Unsigned 32-bit integer
destination_seek_ip destination_seek_ip
Unsigned 32-bit integer
detected_caller_id_standard detected_caller_id_standard
Signed 32-bit integer
detected_caller_id_type detected_caller_id_type
Signed 32-bit integer
detection_direction detection_direction
Signed 32-bit integer
detection_direction_0 detection_direction_0
Signed 32-bit integer
detection_direction_1 detection_direction_1
Signed 32-bit integer
detection_direction_10 detection_direction_10
Signed 32-bit integer
detection_direction_11 detection_direction_11
Signed 32-bit integer
detection_direction_12 detection_direction_12
Signed 32-bit integer
detection_direction_13 detection_direction_13
Signed 32-bit integer
detection_direction_14 detection_direction_14
Signed 32-bit integer
detection_direction_15 detection_direction_15
Signed 32-bit integer
detection_direction_16 detection_direction_16
Signed 32-bit integer
detection_direction_17 detection_direction_17
Signed 32-bit integer
detection_direction_18 detection_direction_18
Signed 32-bit integer
detection_direction_19 detection_direction_19
Signed 32-bit integer
detection_direction_2 detection_direction_2
Signed 32-bit integer
detection_direction_20 detection_direction_20
Signed 32-bit integer
detection_direction_21 detection_direction_21
Signed 32-bit integer
detection_direction_22 detection_direction_22
Signed 32-bit integer
detection_direction_23 detection_direction_23
Signed 32-bit integer
detection_direction_24 detection_direction_24
Signed 32-bit integer
detection_direction_25 detection_direction_25
Signed 32-bit integer
detection_direction_26 detection_direction_26
Signed 32-bit integer
detection_direction_27 detection_direction_27
Signed 32-bit integer
detection_direction_28 detection_direction_28
Signed 32-bit integer
detection_direction_29 detection_direction_29
Signed 32-bit integer
detection_direction_3 detection_direction_3
Signed 32-bit integer
detection_direction_30 detection_direction_30
Signed 32-bit integer
detection_direction_31 detection_direction_31
Signed 32-bit integer
detection_direction_32 detection_direction_32
Signed 32-bit integer
detection_direction_33 detection_direction_33
Signed 32-bit integer
detection_direction_34 detection_direction_34
Signed 32-bit integer
detection_direction_35 detection_direction_35
Signed 32-bit integer
detection_direction_36 detection_direction_36
Signed 32-bit integer
detection_direction_37 detection_direction_37
Signed 32-bit integer
detection_direction_38 detection_direction_38
Signed 32-bit integer
detection_direction_39 detection_direction_39
Signed 32-bit integer
detection_direction_4 detection_direction_4
Signed 32-bit integer
detection_direction_5 detection_direction_5
Signed 32-bit integer
detection_direction_6 detection_direction_6
Signed 32-bit integer
detection_direction_7 detection_direction_7
Signed 32-bit integer
detection_direction_8 detection_direction_8
Signed 32-bit integer
detection_direction_9 detection_direction_9
Signed 32-bit integer
device_id device_id
Signed 32-bit integer
diagnostic diagnostic
String
dial_string dial_string
String
dial_timing dial_timing
Unsigned 8-bit integer
digit digit
Signed 32-bit integer
digit_0 digit_0
Signed 32-bit integer
digit_1 digit_1
Signed 32-bit integer
digit_10 digit_10
Signed 32-bit integer
digit_11 digit_11
Signed 32-bit integer
digit_12 digit_12
Signed 32-bit integer
digit_13 digit_13
Signed 32-bit integer
digit_14 digit_14
Signed 32-bit integer
digit_15 digit_15
Signed 32-bit integer
digit_16 digit_16
Signed 32-bit integer
digit_17 digit_17
Signed 32-bit integer
digit_18 digit_18
Signed 32-bit integer
digit_19 digit_19
Signed 32-bit integer
digit_2 digit_2
Signed 32-bit integer
digit_20 digit_20
Signed 32-bit integer
digit_21 digit_21
Signed 32-bit integer
digit_22 digit_22
Signed 32-bit integer
digit_23 digit_23
Signed 32-bit integer
digit_24 digit_24
Signed 32-bit integer
digit_25 digit_25
Signed 32-bit integer
digit_26 digit_26
Signed 32-bit integer
digit_27 digit_27
Signed 32-bit integer
digit_28 digit_28
Signed 32-bit integer
digit_29 digit_29
Signed 32-bit integer
digit_3 digit_3
Signed 32-bit integer
digit_30 digit_30
Signed 32-bit integer
digit_31 digit_31
Signed 32-bit integer
digit_32 digit_32
Signed 32-bit integer
digit_33 digit_33
Signed 32-bit integer
digit_34 digit_34
Signed 32-bit integer
digit_35 digit_35
Signed 32-bit integer
digit_36 digit_36
Signed 32-bit integer
digit_37 digit_37
Signed 32-bit integer
digit_38 digit_38
Signed 32-bit integer
digit_39 digit_39
Signed 32-bit integer
digit_4 digit_4
Signed 32-bit integer
digit_5 digit_5
Signed 32-bit integer
digit_6 digit_6
Signed 32-bit integer
digit_7 digit_7
Signed 32-bit integer
digit_8 digit_8
Signed 32-bit integer
digit_9 digit_9
Signed 32-bit integer
digit_map digit_map
String
digit_map_style digit_map_style
Signed 32-bit integer
digit_on_time_0 digit_on_time_0
Signed 32-bit integer
digit_on_time_1 digit_on_time_1
Signed 32-bit integer
digit_on_time_10 digit_on_time_10
Signed 32-bit integer
digit_on_time_11 digit_on_time_11
Signed 32-bit integer
digit_on_time_12 digit_on_time_12
Signed 32-bit integer
digit_on_time_13 digit_on_time_13
Signed 32-bit integer
digit_on_time_14 digit_on_time_14
Signed 32-bit integer
digit_on_time_15 digit_on_time_15
Signed 32-bit integer
digit_on_time_16 digit_on_time_16
Signed 32-bit integer
digit_on_time_17 digit_on_time_17
Signed 32-bit integer
digit_on_time_18 digit_on_time_18
Signed 32-bit integer
digit_on_time_19 digit_on_time_19
Signed 32-bit integer
digit_on_time_2 digit_on_time_2
Signed 32-bit integer
digit_on_time_20 digit_on_time_20
Signed 32-bit integer
digit_on_time_21 digit_on_time_21
Signed 32-bit integer
digit_on_time_22 digit_on_time_22
Signed 32-bit integer
digit_on_time_23 digit_on_time_23
Signed 32-bit integer
digit_on_time_24 digit_on_time_24
Signed 32-bit integer
digit_on_time_25 digit_on_time_25
Signed 32-bit integer
digit_on_time_26 digit_on_time_26
Signed 32-bit integer
digit_on_time_27 digit_on_time_27
Signed 32-bit integer
digit_on_time_28 digit_on_time_28
Signed 32-bit integer
digit_on_time_29 digit_on_time_29
Signed 32-bit integer
digit_on_time_3 digit_on_time_3
Signed 32-bit integer
digit_on_time_30 digit_on_time_30
Signed 32-bit integer
digit_on_time_31 digit_on_time_31
Signed 32-bit integer
digit_on_time_32 digit_on_time_32
Signed 32-bit integer
digit_on_time_33 digit_on_time_33
Signed 32-bit integer
digit_on_time_34 digit_on_time_34
Signed 32-bit integer
digit_on_time_35 digit_on_time_35
Signed 32-bit integer
digit_on_time_36 digit_on_time_36
Signed 32-bit integer
digit_on_time_37 digit_on_time_37
Signed 32-bit integer
digit_on_time_38 digit_on_time_38
Signed 32-bit integer
digit_on_time_39 digit_on_time_39
Signed 32-bit integer
digit_on_time_4 digit_on_time_4
Signed 32-bit integer
digit_on_time_5 digit_on_time_5
Signed 32-bit integer
digit_on_time_6 digit_on_time_6
Signed 32-bit integer
digit_on_time_7 digit_on_time_7
Signed 32-bit integer
digit_on_time_8 digit_on_time_8
Signed 32-bit integer
digit_on_time_9 digit_on_time_9
Signed 32-bit integer
digits_collected digits_collected
String
direction direction
Unsigned 8-bit integer
disable_first_incoming_packet_detection disable_first_incoming_packet_detection
Signed 32-bit integer
disable_rtcp_interval_randomization disable_rtcp_interval_randomization
Signed 32-bit integer
disable_soft_ip_loopback disable_soft_ip_loopback
Signed 32-bit integer
discard_rate discard_rate
Unsigned 8-bit integer
disfc disfc
Unsigned 16-bit integer
display_size display_size
Signed 32-bit integer
display_string display_string
String
dj_buf_min_delay dj_buf_min_delay
Signed 32-bit integer
dj_buf_opt_factor dj_buf_opt_factor
Signed 32-bit integer
dns_resolved dns_resolved
Signed 32-bit integer
do_not_use_defaults_with_ini do_not_use_defaults_with_ini
Signed 32-bit integer
dpc dpc
Unsigned 32-bit integer
dpnss_mode dpnss_mode
Unsigned 8-bit integer
dpnss_receive_timeout dpnss_receive_timeout
Unsigned 8-bit integer
dpr_bit_return_code dpr_bit_return_code
Signed 32-bit integer
ds3_admin_state ds3_admin_state
Signed 32-bit integer
ds3_clock_source ds3_clock_source
Signed 32-bit integer
ds3_framing_method ds3_framing_method
Signed 32-bit integer
ds3_id ds3_id
Signed 32-bit integer
ds3_interface ds3_interface
Signed 32-bit integer
ds3_line_built_out ds3_line_built_out
Signed 32-bit integer
ds3_line_status_bit_field ds3_line_status_bit_field
Signed 32-bit integer
ds3_performance_monitoring_state ds3_performance_monitoring_state
Signed 32-bit integer
ds3_section ds3_section
Signed 32-bit integer
ds3_tapping_enable ds3_tapping_enable
Signed 32-bit integer
dsp_bit_return_code_0 dsp_bit_return_code_0
Signed 32-bit integer
dsp_bit_return_code_1 dsp_bit_return_code_1
Signed 32-bit integer
dsp_boot_kernel_date dsp_boot_kernel_date
Signed 32-bit integer
dsp_boot_kernel_ver dsp_boot_kernel_ver
Signed 32-bit integer
dsp_count dsp_count
Signed 32-bit integer
dsp_resource_allocation dsp_resource_allocation
Signed 32-bit integer
dsp_software_date dsp_software_date
Signed 32-bit integer
dsp_software_name dsp_software_name
String
dsp_software_ver dsp_software_ver
Signed 32-bit integer
dsp_type dsp_type
Signed 32-bit integer
dsp_version_template_count dsp_version_template_count
Signed 32-bit integer
dtmf_barge_in_digit_mask dtmf_barge_in_digit_mask
Unsigned 32-bit integer
dtmf_transport_type dtmf_transport_type
Signed 32-bit integer
dtmf_volume dtmf_volume
Signed 32-bit integer
dual_use dual_use
Signed 32-bit integer
dummy dummy
Signed 32-bit integer
dummy_0 dummy_0
Signed 32-bit integer
dummy_1 dummy_1
Signed 32-bit integer
dummy_2 dummy_2
Signed 32-bit integer
dummy_3 dummy_3
Signed 32-bit integer
dummy_4 dummy_4
Signed 32-bit integer
dummy_5 dummy_5
Signed 32-bit integer
duplex_mode duplex_mode
Signed 32-bit integer
duplicated duplicated
Unsigned 32-bit integer
duration duration
Signed 32-bit integer
duration_0 duration_0
Signed 32-bit integer
duration_1 duration_1
Signed 32-bit integer
duration_10 duration_10
Signed 32-bit integer
duration_11 duration_11
Signed 32-bit integer
duration_12 duration_12
Signed 32-bit integer
duration_13 duration_13
Signed 32-bit integer
duration_14 duration_14
Signed 32-bit integer
duration_15 duration_15
Signed 32-bit integer
duration_16 duration_16
Signed 32-bit integer
duration_17 duration_17
Signed 32-bit integer
duration_18 duration_18
Signed 32-bit integer
duration_19 duration_19
Signed 32-bit integer
duration_2 duration_2
Signed 32-bit integer
duration_20 duration_20
Signed 32-bit integer
duration_21 duration_21
Signed 32-bit integer
duration_22 duration_22
Signed 32-bit integer
duration_23 duration_23
Signed 32-bit integer
duration_24 duration_24
Signed 32-bit integer
duration_25 duration_25
Signed 32-bit integer
duration_26 duration_26
Signed 32-bit integer
duration_27 duration_27
Signed 32-bit integer
duration_28 duration_28
Signed 32-bit integer
duration_29 duration_29
Signed 32-bit integer
duration_3 duration_3
Signed 32-bit integer
duration_30 duration_30
Signed 32-bit integer
duration_31 duration_31
Signed 32-bit integer
duration_32 duration_32
Signed 32-bit integer
duration_33 duration_33
Signed 32-bit integer
duration_34 duration_34
Signed 32-bit integer
duration_35 duration_35
Signed 32-bit integer
duration_4 duration_4
Signed 32-bit integer
duration_5 duration_5
Signed 32-bit integer
duration_6 duration_6
Signed 32-bit integer
duration_7 duration_7
Signed 32-bit integer
duration_8 duration_8
Signed 32-bit integer
duration_9 duration_9
Signed 32-bit integer
duration_type duration_type
Signed 32-bit integer
e_bit_error_detected e_bit_error_detected
Signed 32-bit integer
ec ec
Signed 32-bit integer
ec_freeze ec_freeze
Signed 32-bit integer
ec_hybrid_loss ec_hybrid_loss
Signed 32-bit integer
ec_length ec_length
Signed 32-bit integer
ec_nlp_mode ec_nlp_mode
Signed 32-bit integer
ece ece
Signed 32-bit integer
element_id_0 element_id_0
Signed 32-bit integer
element_id_1 element_id_1
Signed 32-bit integer
element_id_10 element_id_10
Signed 32-bit integer
element_id_11 element_id_11
Signed 32-bit integer
element_id_12 element_id_12
Signed 32-bit integer
element_id_13 element_id_13
Signed 32-bit integer
element_id_14 element_id_14
Signed 32-bit integer
element_id_15 element_id_15
Signed 32-bit integer
element_id_16 element_id_16
Signed 32-bit integer
element_id_17 element_id_17
Signed 32-bit integer
element_id_18 element_id_18
Signed 32-bit integer
element_id_19 element_id_19
Signed 32-bit integer
element_id_2 element_id_2
Signed 32-bit integer
element_id_3 element_id_3
Signed 32-bit integer
element_id_4 element_id_4
Signed 32-bit integer
element_id_5 element_id_5
Signed 32-bit integer
element_id_6 element_id_6
Signed 32-bit integer
element_id_7 element_id_7
Signed 32-bit integer
element_id_8 element_id_8
Signed 32-bit integer
element_id_9 element_id_9
Signed 32-bit integer
element_status_0 element_status_0
Signed 32-bit integer
element_status_1 element_status_1
Signed 32-bit integer
element_status_10 element_status_10
Signed 32-bit integer
element_status_11 element_status_11
Signed 32-bit integer
element_status_12 element_status_12
Signed 32-bit integer
element_status_13 element_status_13
Signed 32-bit integer
element_status_14 element_status_14
Signed 32-bit integer
element_status_15 element_status_15
Signed 32-bit integer
element_status_16 element_status_16
Signed 32-bit integer
element_status_17 element_status_17
Signed 32-bit integer
element_status_18 element_status_18
Signed 32-bit integer
element_status_19 element_status_19
Signed 32-bit integer
element_status_2 element_status_2
Signed 32-bit integer
element_status_3 element_status_3
Signed 32-bit integer
element_status_4 element_status_4
Signed 32-bit integer
element_status_5 element_status_5
Signed 32-bit integer
element_status_6 element_status_6
Signed 32-bit integer
element_status_7 element_status_7
Signed 32-bit integer
element_status_8 element_status_8
Signed 32-bit integer
element_status_9 element_status_9
Signed 32-bit integer
emergency_call_calling_geodetic_location_information emergency_call_calling_geodetic_location_information
String
emergency_call_calling_geodetic_location_information_size emergency_call_calling_geodetic_location_information_size
Signed 32-bit integer
emergency_call_coding_standard emergency_call_coding_standard
Signed 32-bit integer
emergency_call_control_information_display emergency_call_control_information_display
Signed 32-bit integer
emergency_call_location_identification_number emergency_call_location_identification_number
String
emergency_call_location_identification_number_size emergency_call_location_identification_number_size
Signed 32-bit integer
enable_call_progress enable_call_progress
Signed 32-bit integer
enable_dtmf_detection enable_dtmf_detection
Signed 32-bit integer
enable_ec_comfort_noise_generation enable_ec_comfort_noise_generation
Signed 32-bit integer
enable_ec_tone_detector enable_ec_tone_detector
Signed 32-bit integer
enable_evrc_smart_blanking enable_evrc_smart_blanking
Unsigned 8-bit integer
enable_fax_modem_inband_network_detection enable_fax_modem_inband_network_detection
Unsigned 8-bit integer
enable_fiber_link enable_fiber_link
Signed 32-bit integer
enable_filter enable_filter
Unsigned 8-bit integer
enable_line_signaling enable_line_signaling
Signed 32-bit integer
enable_loop enable_loop
Signed 32-bit integer
enable_metering_duration_type enable_metering_duration_type
Signed 32-bit integer
enable_mfr1 enable_mfr1
Signed 32-bit integer
enable_mfr2_backward enable_mfr2_backward
Signed 32-bit integer
enable_mfr2_forward enable_mfr2_forward
Signed 32-bit integer
enable_network_cas_event enable_network_cas_event
Unsigned 8-bit integer
enable_noise_reduction enable_noise_reduction
Signed 32-bit integer
enable_user_defined_tone_detector enable_user_defined_tone_detector
Signed 32-bit integer
enabled_features enabled_features
String
end_dial_key end_dial_key
Unsigned 8-bit integer
end_dial_with_hash_mark end_dial_with_hash_mark
Signed 32-bit integer
end_end_key end_end_key
String
end_event end_event
Signed 32-bit integer
end_system_delay end_system_delay
Unsigned 16-bit integer
energy_detector_cmd energy_detector_cmd
Signed 32-bit integer
enhanced_fax_relay_redundancy_depth enhanced_fax_relay_redundancy_depth
Signed 32-bit integer
erroneous_block_counter erroneous_block_counter
Unsigned 16-bit integer
error_cause error_cause
Signed 32-bit integer
error_code error_code
Signed 32-bit integer
error_counter_0 error_counter_0
Unsigned 16-bit integer
error_counter_1 error_counter_1
Unsigned 16-bit integer
error_counter_10 error_counter_10
Unsigned 16-bit integer
error_counter_11 error_counter_11
Unsigned 16-bit integer
error_counter_12 error_counter_12
Unsigned 16-bit integer
error_counter_13 error_counter_13
Unsigned 16-bit integer
error_counter_14 error_counter_14
Unsigned 16-bit integer
error_counter_15 error_counter_15
Unsigned 16-bit integer
error_counter_16 error_counter_16
Unsigned 16-bit integer
error_counter_17 error_counter_17
Unsigned 16-bit integer
error_counter_18 error_counter_18
Unsigned 16-bit integer
error_counter_19 error_counter_19
Unsigned 16-bit integer
error_counter_2 error_counter_2
Unsigned 16-bit integer
error_counter_20 error_counter_20
Unsigned 16-bit integer
error_counter_21 error_counter_21
Unsigned 16-bit integer
error_counter_22 error_counter_22
Unsigned 16-bit integer
error_counter_23 error_counter_23
Unsigned 16-bit integer
error_counter_24 error_counter_24
Unsigned 16-bit integer
error_counter_25 error_counter_25
Unsigned 16-bit integer
error_counter_3 error_counter_3
Unsigned 16-bit integer
error_counter_4 error_counter_4
Unsigned 16-bit integer
error_counter_5 error_counter_5
Unsigned 16-bit integer
error_counter_6 error_counter_6
Unsigned 16-bit integer
error_counter_7 error_counter_7
Unsigned 16-bit integer
error_counter_8 error_counter_8
Unsigned 16-bit integer
error_counter_9 error_counter_9
Unsigned 16-bit integer
error_description_buffer error_description_buffer
String
error_description_buffer_len error_description_buffer_len
Signed 32-bit integer
error_string error_string
String
errored_seconds errored_seconds
Signed 32-bit integer
escape_key_sequence escape_key_sequence
String
ethernet_mode ethernet_mode
Signed 32-bit integer
etsi_type etsi_type
Signed 32-bit integer
ev_detect_caller_id_info_alignment ev_detect_caller_id_info_alignment
Unsigned 8-bit integer
event_trigger event_trigger
Signed 32-bit integer
evrc_rate evrc_rate
Signed 32-bit integer
evrc_smart_blanking_max_sid_gap evrc_smart_blanking_max_sid_gap
Signed 16-bit integer
evrc_smart_blanking_min_sid_gap evrc_smart_blanking_min_sid_gap
Signed 16-bit integer
evrcb_avg_rate_control evrcb_avg_rate_control
Signed 32-bit integer
evrcb_avg_rate_target evrcb_avg_rate_target
Signed 32-bit integer
evrcb_operation_point evrcb_operation_point
Signed 32-bit integer
exclusive exclusive
Signed 32-bit integer
exists exists
Signed 32-bit integer
ext_high_seq ext_high_seq
Unsigned 32-bit integer
ext_r_factor ext_r_factor
Unsigned 8-bit integer
ext_uni_directional_rtp ext_uni_directional_rtp
Unsigned 8-bit integer
extension extension
String
extra_digit_timer extra_digit_timer
Signed 32-bit integer
extra_info extra_info
String
facility_action facility_action
Signed 32-bit integer
facility_code facility_code
Signed 32-bit integer
facility_net_cause facility_net_cause
Signed 32-bit integer
facility_sequence_num facility_sequence_num
Signed 32-bit integer
facility_sequence_number facility_sequence_number
Signed 32-bit integer
failed_board_id failed_board_id
Signed 32-bit integer
failed_clock failed_clock
Signed 32-bit integer
failure_reason failure_reason
Signed 32-bit integer
failure_status failure_status
Signed 32-bit integer
fallback fallback
Signed 32-bit integer
far_end_receive_failure far_end_receive_failure
Signed 32-bit integer
fax_bypass_payload_type fax_bypass_payload_type
Signed 32-bit integer
fax_detection_origin fax_detection_origin
Signed 32-bit integer
fax_modem_bypass_basic_rtp_packet_interval fax_modem_bypass_basic_rtp_packet_interval
Signed 32-bit integer
fax_modem_bypass_coder_type fax_modem_bypass_coder_type
Signed 32-bit integer
fax_modem_bypass_dj_buf_min_delay fax_modem_bypass_dj_buf_min_delay
Signed 32-bit integer
fax_modem_bypass_m fax_modem_bypass_m
Signed 32-bit integer
fax_modem_relay_rate fax_modem_relay_rate
Signed 32-bit integer
fax_modem_relay_volume fax_modem_relay_volume
Signed 32-bit integer
fax_relay_ecm_enable fax_relay_ecm_enable
Signed 32-bit integer
fax_relay_max_rate fax_relay_max_rate
Signed 32-bit integer
fax_relay_redundancy_depth fax_relay_redundancy_depth
Signed 32-bit integer
fax_session_result fax_session_result
Signed 32-bit integer
fax_transport_type fax_transport_type
Signed 32-bit integer
fiber_group fiber_group
Signed 32-bit integer
fiber_group_link fiber_group_link
Signed 32-bit integer
fiber_id fiber_id
Signed 32-bit integer
file_name file_name
String
fill_zero fill_zero
Unsigned 8-bit integer
filling filling
String
first_call_line_identity first_call_line_identity
String
first_digit_country_code first_digit_country_code
Unsigned 8-bit integer
first_digit_timer first_digit_timer
Signed 32-bit integer
first_tone_duration first_tone_duration
Unsigned 32-bit integer
first_voice_prompt_index first_voice_prompt_index
Signed 32-bit integer
flash_bit_return_code flash_bit_return_code
Signed 32-bit integer
flash_hook_transport_type flash_hook_transport_type
Signed 32-bit integer
flash_ver flash_ver
Signed 32-bit integer
force_voice_prompt_repository_release force_voice_prompt_repository_release
Signed 32-bit integer
forward_key_sequence forward_key_sequence
String
fraction_lost fraction_lost
Unsigned 32-bit integer
fragmentation_needed_and_df_set fragmentation_needed_and_df_set
Unsigned 32-bit integer
frame_loss_ratio_hysteresis_0 frame_loss_ratio_hysteresis_0
Signed 32-bit integer
frame_loss_ratio_hysteresis_1 frame_loss_ratio_hysteresis_1
Signed 32-bit integer
frame_loss_ratio_hysteresis_2 frame_loss_ratio_hysteresis_2
Signed 32-bit integer
frame_loss_ratio_hysteresis_3 frame_loss_ratio_hysteresis_3
Signed 32-bit integer
frame_loss_ratio_hysteresis_4 frame_loss_ratio_hysteresis_4
Signed 32-bit integer
frame_loss_ratio_hysteresis_5 frame_loss_ratio_hysteresis_5
Signed 32-bit integer
frame_loss_ratio_hysteresis_6 frame_loss_ratio_hysteresis_6
Signed 32-bit integer
frame_loss_ratio_hysteresis_7 frame_loss_ratio_hysteresis_7
Signed 32-bit integer
frame_loss_ratio_threshold_0 frame_loss_ratio_threshold_0
Signed 32-bit integer
frame_loss_ratio_threshold_1 frame_loss_ratio_threshold_1
Signed 32-bit integer
frame_loss_ratio_threshold_2 frame_loss_ratio_threshold_2
Signed 32-bit integer
frame_loss_ratio_threshold_3 frame_loss_ratio_threshold_3
Signed 32-bit integer
frame_loss_ratio_threshold_4 frame_loss_ratio_threshold_4
Signed 32-bit integer
frame_loss_ratio_threshold_5 frame_loss_ratio_threshold_5
Signed 32-bit integer
frame_loss_ratio_threshold_6 frame_loss_ratio_threshold_6
Signed 32-bit integer
frame_loss_ratio_threshold_7 frame_loss_ratio_threshold_7
Signed 32-bit integer
framers_bit_return_code framers_bit_return_code
Signed 32-bit integer
framing_bit_error_counter framing_bit_error_counter
Unsigned 16-bit integer
framing_error_counter framing_error_counter
Unsigned 16-bit integer
framing_error_received framing_error_received
Signed 32-bit integer
free_voice_prompt_buffer_space free_voice_prompt_buffer_space
Signed 32-bit integer
free_voice_prompt_indexes free_voice_prompt_indexes
Signed 32-bit integer
frequency frequency
Signed 32-bit integer
frequency_0 frequency_0
Signed 32-bit integer
frequency_1 frequency_1
Signed 32-bit integer
from_entity from_entity
Signed 32-bit integer
from_fiber_link from_fiber_link
Signed 32-bit integer
from_trunk from_trunk
Signed 32-bit integer
fullday_average fullday_average
Signed 32-bit integer
future_expansion_0 future_expansion_0
Signed 32-bit integer
future_expansion_1 future_expansion_1
Signed 32-bit integer
future_expansion_2 future_expansion_2
Signed 32-bit integer
future_expansion_3 future_expansion_3
Signed 32-bit integer
future_expansion_4 future_expansion_4
Signed 32-bit integer
future_expansion_5 future_expansion_5
Signed 32-bit integer
future_expansion_6 future_expansion_6
Signed 32-bit integer
future_expansion_7 future_expansion_7
Signed 32-bit integer
fxo_anic_version_return_code_0 fxo_anic_version_return_code_0
Signed 32-bit integer
fxo_anic_version_return_code_1 fxo_anic_version_return_code_1
Signed 32-bit integer
fxo_anic_version_return_code_10 fxo_anic_version_return_code_10
Signed 32-bit integer
fxo_anic_version_return_code_11 fxo_anic_version_return_code_11
Signed 32-bit integer
fxo_anic_version_return_code_12 fxo_anic_version_return_code_12
Signed 32-bit integer
fxo_anic_version_return_code_13 fxo_anic_version_return_code_13
Signed 32-bit integer
fxo_anic_version_return_code_14 fxo_anic_version_return_code_14
Signed 32-bit integer
fxo_anic_version_return_code_15 fxo_anic_version_return_code_15
Signed 32-bit integer
fxo_anic_version_return_code_16 fxo_anic_version_return_code_16
Signed 32-bit integer
fxo_anic_version_return_code_17 fxo_anic_version_return_code_17
Signed 32-bit integer
fxo_anic_version_return_code_18 fxo_anic_version_return_code_18
Signed 32-bit integer
fxo_anic_version_return_code_19 fxo_anic_version_return_code_19
Signed 32-bit integer
fxo_anic_version_return_code_2 fxo_anic_version_return_code_2
Signed 32-bit integer
fxo_anic_version_return_code_20 fxo_anic_version_return_code_20
Signed 32-bit integer
fxo_anic_version_return_code_21 fxo_anic_version_return_code_21
Signed 32-bit integer
fxo_anic_version_return_code_22 fxo_anic_version_return_code_22
Signed 32-bit integer
fxo_anic_version_return_code_23 fxo_anic_version_return_code_23
Signed 32-bit integer
fxo_anic_version_return_code_3 fxo_anic_version_return_code_3
Signed 32-bit integer
fxo_anic_version_return_code_4 fxo_anic_version_return_code_4
Signed 32-bit integer
fxo_anic_version_return_code_5 fxo_anic_version_return_code_5
Signed 32-bit integer
fxo_anic_version_return_code_6 fxo_anic_version_return_code_6
Signed 32-bit integer
fxo_anic_version_return_code_7 fxo_anic_version_return_code_7
Signed 32-bit integer
fxo_anic_version_return_code_8 fxo_anic_version_return_code_8
Signed 32-bit integer
fxo_anic_version_return_code_9 fxo_anic_version_return_code_9
Signed 32-bit integer
fxs_analog_voltage_reading fxs_analog_voltage_reading
Signed 32-bit integer
fxs_codec_validation_bit_return_code_0 fxs_codec_validation_bit_return_code_0
Signed 32-bit integer
fxs_codec_validation_bit_return_code_1 fxs_codec_validation_bit_return_code_1
Signed 32-bit integer
fxs_codec_validation_bit_return_code_10 fxs_codec_validation_bit_return_code_10
Signed 32-bit integer
fxs_codec_validation_bit_return_code_11 fxs_codec_validation_bit_return_code_11
Signed 32-bit integer
fxs_codec_validation_bit_return_code_12 fxs_codec_validation_bit_return_code_12
Signed 32-bit integer
fxs_codec_validation_bit_return_code_13 fxs_codec_validation_bit_return_code_13
Signed 32-bit integer
fxs_codec_validation_bit_return_code_14 fxs_codec_validation_bit_return_code_14
Signed 32-bit integer
fxs_codec_validation_bit_return_code_15 fxs_codec_validation_bit_return_code_15
Signed 32-bit integer
fxs_codec_validation_bit_return_code_16 fxs_codec_validation_bit_return_code_16
Signed 32-bit integer
fxs_codec_validation_bit_return_code_17 fxs_codec_validation_bit_return_code_17
Signed 32-bit integer
fxs_codec_validation_bit_return_code_18 fxs_codec_validation_bit_return_code_18
Signed 32-bit integer
fxs_codec_validation_bit_return_code_19 fxs_codec_validation_bit_return_code_19
Signed 32-bit integer
fxs_codec_validation_bit_return_code_2 fxs_codec_validation_bit_return_code_2
Signed 32-bit integer
fxs_codec_validation_bit_return_code_20 fxs_codec_validation_bit_return_code_20
Signed 32-bit integer
fxs_codec_validation_bit_return_code_21 fxs_codec_validation_bit_return_code_21
Signed 32-bit integer
fxs_codec_validation_bit_return_code_22 fxs_codec_validation_bit_return_code_22
Signed 32-bit integer
fxs_codec_validation_bit_return_code_23 fxs_codec_validation_bit_return_code_23
Signed 32-bit integer
fxs_codec_validation_bit_return_code_3 fxs_codec_validation_bit_return_code_3
Signed 32-bit integer
fxs_codec_validation_bit_return_code_4 fxs_codec_validation_bit_return_code_4
Signed 32-bit integer
fxs_codec_validation_bit_return_code_5 fxs_codec_validation_bit_return_code_5
Signed 32-bit integer
fxs_codec_validation_bit_return_code_6 fxs_codec_validation_bit_return_code_6
Signed 32-bit integer
fxs_codec_validation_bit_return_code_7 fxs_codec_validation_bit_return_code_7
Signed 32-bit integer
fxs_codec_validation_bit_return_code_8 fxs_codec_validation_bit_return_code_8
Signed 32-bit integer
fxs_codec_validation_bit_return_code_9 fxs_codec_validation_bit_return_code_9
Signed 32-bit integer
fxs_duslic_version_return_code_0 fxs_duslic_version_return_code_0
Signed 32-bit integer
fxs_duslic_version_return_code_1 fxs_duslic_version_return_code_1
Signed 32-bit integer
fxs_duslic_version_return_code_10 fxs_duslic_version_return_code_10
Signed 32-bit integer
fxs_duslic_version_return_code_11 fxs_duslic_version_return_code_11
Signed 32-bit integer
fxs_duslic_version_return_code_12 fxs_duslic_version_return_code_12
Signed 32-bit integer
fxs_duslic_version_return_code_13 fxs_duslic_version_return_code_13
Signed 32-bit integer
fxs_duslic_version_return_code_14 fxs_duslic_version_return_code_14
Signed 32-bit integer
fxs_duslic_version_return_code_15 fxs_duslic_version_return_code_15
Signed 32-bit integer
fxs_duslic_version_return_code_16 fxs_duslic_version_return_code_16
Signed 32-bit integer
fxs_duslic_version_return_code_17 fxs_duslic_version_return_code_17
Signed 32-bit integer
fxs_duslic_version_return_code_18 fxs_duslic_version_return_code_18
Signed 32-bit integer
fxs_duslic_version_return_code_19 fxs_duslic_version_return_code_19
Signed 32-bit integer
fxs_duslic_version_return_code_2 fxs_duslic_version_return_code_2
Signed 32-bit integer
fxs_duslic_version_return_code_20 fxs_duslic_version_return_code_20
Signed 32-bit integer
fxs_duslic_version_return_code_21 fxs_duslic_version_return_code_21
Signed 32-bit integer
fxs_duslic_version_return_code_22 fxs_duslic_version_return_code_22
Signed 32-bit integer
fxs_duslic_version_return_code_23 fxs_duslic_version_return_code_23
Signed 32-bit integer
fxs_duslic_version_return_code_3 fxs_duslic_version_return_code_3
Signed 32-bit integer
fxs_duslic_version_return_code_4 fxs_duslic_version_return_code_4
Signed 32-bit integer
fxs_duslic_version_return_code_5 fxs_duslic_version_return_code_5
Signed 32-bit integer
fxs_duslic_version_return_code_6 fxs_duslic_version_return_code_6
Signed 32-bit integer
fxs_duslic_version_return_code_7 fxs_duslic_version_return_code_7
Signed 32-bit integer
fxs_duslic_version_return_code_8 fxs_duslic_version_return_code_8
Signed 32-bit integer
fxs_duslic_version_return_code_9 fxs_duslic_version_return_code_9
Signed 32-bit integer
fxs_line_current_reading fxs_line_current_reading
Signed 32-bit integer
fxs_line_voltage_reading fxs_line_voltage_reading
Signed 32-bit integer
fxs_ring_voltage_reading fxs_ring_voltage_reading
Signed 32-bit integer
fxscram_check_sum_bit_return_code_0 fxscram_check_sum_bit_return_code_0
Signed 32-bit integer
fxscram_check_sum_bit_return_code_1 fxscram_check_sum_bit_return_code_1
Signed 32-bit integer
fxscram_check_sum_bit_return_code_10 fxscram_check_sum_bit_return_code_10
Signed 32-bit integer
fxscram_check_sum_bit_return_code_11 fxscram_check_sum_bit_return_code_11
Signed 32-bit integer
fxscram_check_sum_bit_return_code_12 fxscram_check_sum_bit_return_code_12
Signed 32-bit integer
fxscram_check_sum_bit_return_code_13 fxscram_check_sum_bit_return_code_13
Signed 32-bit integer
fxscram_check_sum_bit_return_code_14 fxscram_check_sum_bit_return_code_14
Signed 32-bit integer
fxscram_check_sum_bit_return_code_15 fxscram_check_sum_bit_return_code_15
Signed 32-bit integer
fxscram_check_sum_bit_return_code_16 fxscram_check_sum_bit_return_code_16
Signed 32-bit integer
fxscram_check_sum_bit_return_code_17 fxscram_check_sum_bit_return_code_17
Signed 32-bit integer
fxscram_check_sum_bit_return_code_18 fxscram_check_sum_bit_return_code_18
Signed 32-bit integer
fxscram_check_sum_bit_return_code_19 fxscram_check_sum_bit_return_code_19
Signed 32-bit integer
fxscram_check_sum_bit_return_code_2 fxscram_check_sum_bit_return_code_2
Signed 32-bit integer
fxscram_check_sum_bit_return_code_20 fxscram_check_sum_bit_return_code_20
Signed 32-bit integer
fxscram_check_sum_bit_return_code_21 fxscram_check_sum_bit_return_code_21
Signed 32-bit integer
fxscram_check_sum_bit_return_code_22 fxscram_check_sum_bit_return_code_22
Signed 32-bit integer
fxscram_check_sum_bit_return_code_23 fxscram_check_sum_bit_return_code_23
Signed 32-bit integer
fxscram_check_sum_bit_return_code_3 fxscram_check_sum_bit_return_code_3
Signed 32-bit integer
fxscram_check_sum_bit_return_code_4 fxscram_check_sum_bit_return_code_4
Signed 32-bit integer
fxscram_check_sum_bit_return_code_5 fxscram_check_sum_bit_return_code_5
Signed 32-bit integer
fxscram_check_sum_bit_return_code_6 fxscram_check_sum_bit_return_code_6
Signed 32-bit integer
fxscram_check_sum_bit_return_code_7 fxscram_check_sum_bit_return_code_7
Signed 32-bit integer
fxscram_check_sum_bit_return_code_8 fxscram_check_sum_bit_return_code_8
Signed 32-bit integer
fxscram_check_sum_bit_return_code_9 fxscram_check_sum_bit_return_code_9
Signed 32-bit integer
g729ev_local_mbs g729ev_local_mbs
Signed 32-bit integer
g729ev_max_bit_rate g729ev_max_bit_rate
Signed 32-bit integer
g729ev_receive_mbs g729ev_receive_mbs
Signed 32-bit integer
gain_slope gain_slope
Signed 32-bit integer
gap_count gap_count
Unsigned 32-bit integer
gateway_address_0 gateway_address_0
Unsigned 32-bit integer
gateway_address_1 gateway_address_1
Unsigned 32-bit integer
gateway_address_2 gateway_address_2
Unsigned 32-bit integer
gateway_address_3 gateway_address_3
Unsigned 32-bit integer
gateway_address_4 gateway_address_4
Unsigned 32-bit integer
gateway_address_5 gateway_address_5
Unsigned 32-bit integer
gauge_id gauge_id
Signed 32-bit integer
generate_caller_id_message_extension_size generate_caller_id_message_extension_size
Unsigned 8-bit integer
generation_timing generation_timing
Unsigned 8-bit integer
generic_event_family generic_event_family
Signed 32-bit integer
geographical_address geographical_address
Signed 32-bit integer
graceful_shutdown_timeout graceful_shutdown_timeout
Signed 32-bit integer
ground_key_polarity ground_key_polarity
Signed 32-bit integer
header_only header_only
Signed 32-bit integer
hello_time_out hello_time_out
Unsigned 32-bit integer
hidden_participant_id hidden_participant_id
Signed 32-bit integer
hide_mode hide_mode
Signed 32-bit integer
high_threshold high_threshold
Signed 32-bit integer
ho_alarm_status_0 ho_alarm_status_0
Signed 32-bit integer
ho_alarm_status_1 ho_alarm_status_1
Signed 32-bit integer
ho_alarm_status_2 ho_alarm_status_2
Signed 32-bit integer
hook hook
Signed 32-bit integer
hook_state hook_state
Signed 32-bit integer
host_unreachable host_unreachable
Unsigned 32-bit integer
hour hour
Signed 32-bit integer
hpfe hpfe
Signed 32-bit integer
http_client_error_code http_client_error_code
Signed 32-bit integer
hw_sw_version hw_sw_version
Signed 32-bit integer
i_dummy_0 i_dummy_0
Signed 32-bit integer
i_dummy_1 i_dummy_1
Signed 32-bit integer
i_dummy_2 i_dummy_2
Signed 32-bit integer
i_pv6_address_0 i_pv6_address_0
Unsigned 32-bit integer
i_pv6_address_1 i_pv6_address_1
Unsigned 32-bit integer
i_pv6_address_2 i_pv6_address_2
Unsigned 32-bit integer
i_pv6_address_3 i_pv6_address_3
Unsigned 32-bit integer
ibs_tone_generation_interface ibs_tone_generation_interface
Unsigned 8-bit integer
ibsd_redirection ibsd_redirection
Signed 32-bit integer
icmp_code_fragmentation_needed_and_df_set icmp_code_fragmentation_needed_and_df_set
Unsigned 32-bit integer
icmp_code_host_unreachable icmp_code_host_unreachable
Unsigned 32-bit integer
icmp_code_net_unreachable icmp_code_net_unreachable
Unsigned 32-bit integer
icmp_code_port_unreachable icmp_code_port_unreachable
Unsigned 32-bit integer
icmp_code_protocol_unreachable icmp_code_protocol_unreachable
Unsigned 32-bit integer
icmp_code_source_route_failed icmp_code_source_route_failed
Unsigned 32-bit integer
icmp_type icmp_type
Unsigned 8-bit integer
icmp_unreachable_counter icmp_unreachable_counter
Unsigned 32-bit integer
idle_alarm idle_alarm
Signed 32-bit integer
idle_time_out idle_time_out
Unsigned 32-bit integer
if_add_seq_required_avp if_add_seq_required_avp
Unsigned 8-bit integer
include_return_key include_return_key
Signed 16-bit integer
incoming_t38_port_option incoming_t38_port_option
Signed 32-bit integer
index index
Signed 32-bit integer
index_0 index_0
Signed 32-bit integer
index_1 index_1
Signed 32-bit integer
index_10 index_10
Signed 32-bit integer
index_11 index_11
Signed 32-bit integer
index_12 index_12
Signed 32-bit integer
index_13 index_13
Signed 32-bit integer
index_14 index_14
Signed 32-bit integer
index_15 index_15
Signed 32-bit integer
index_16 index_16
Signed 32-bit integer
index_17 index_17
Signed 32-bit integer
index_18 index_18
Signed 32-bit integer
index_19 index_19
Signed 32-bit integer
index_2 index_2
Signed 32-bit integer
index_20 index_20
Signed 32-bit integer
index_21 index_21
Signed 32-bit integer
index_22 index_22
Signed 32-bit integer
index_23 index_23
Signed 32-bit integer
index_24 index_24
Signed 32-bit integer
index_25 index_25
Signed 32-bit integer
index_26 index_26
Signed 32-bit integer
index_27 index_27
Signed 32-bit integer
index_28 index_28
Signed 32-bit integer
index_29 index_29
Signed 32-bit integer
index_3 index_3
Signed 32-bit integer
index_30 index_30
Signed 32-bit integer
index_31 index_31
Signed 32-bit integer
index_32 index_32
Signed 32-bit integer
index_33 index_33
Signed 32-bit integer
index_34 index_34
Signed 32-bit integer
index_35 index_35
Signed 32-bit integer
index_4 index_4
Signed 32-bit integer
index_5 index_5
Signed 32-bit integer
index_6 index_6
Signed 32-bit integer
index_7 index_7
Signed 32-bit integer
index_8 index_8
Signed 32-bit integer
index_9 index_9
Signed 32-bit integer
info0 info0
Signed 32-bit integer
info1 info1
Signed 32-bit integer
info2 info2
Signed 32-bit integer
info3 info3
Signed 32-bit integer
info4 info4
Signed 32-bit integer
info5 info5
Signed 32-bit integer
inhibition_status inhibition_status
Signed 32-bit integer
ini_file ini_file
String
ini_file_length ini_file_length
Signed 32-bit integer
ini_file_ver ini_file_ver
Signed 32-bit integer
input_gain input_gain
Signed 32-bit integer
input_port_0 input_port_0
Unsigned 8-bit integer
input_tdm_bus_0 input_tdm_bus_0
Unsigned 8-bit integer
input_time_slot_0 input_time_slot_0
Unsigned 16-bit integer
input_voice_signaling_mode_0 input_voice_signaling_mode_0
Unsigned 8-bit integer
instance_type instance_type
Signed 32-bit integer
inter_cas_time_0 inter_cas_time_0
Signed 32-bit integer
inter_cas_time_1 inter_cas_time_1
Signed 32-bit integer
inter_cas_time_10 inter_cas_time_10
Signed 32-bit integer
inter_cas_time_11 inter_cas_time_11
Signed 32-bit integer
inter_cas_time_12 inter_cas_time_12
Signed 32-bit integer
inter_cas_time_13 inter_cas_time_13
Signed 32-bit integer
inter_cas_time_14 inter_cas_time_14
Signed 32-bit integer
inter_cas_time_15 inter_cas_time_15
Signed 32-bit integer
inter_cas_time_16 inter_cas_time_16
Signed 32-bit integer
inter_cas_time_17 inter_cas_time_17
Signed 32-bit integer
inter_cas_time_18 inter_cas_time_18
Signed 32-bit integer
inter_cas_time_19 inter_cas_time_19
Signed 32-bit integer
inter_cas_time_2 inter_cas_time_2
Signed 32-bit integer
inter_cas_time_20 inter_cas_time_20
Signed 32-bit integer
inter_cas_time_21 inter_cas_time_21
Signed 32-bit integer
inter_cas_time_22 inter_cas_time_22
Signed 32-bit integer
inter_cas_time_23 inter_cas_time_23
Signed 32-bit integer
inter_cas_time_24 inter_cas_time_24
Signed 32-bit integer
inter_cas_time_25 inter_cas_time_25
Signed 32-bit integer
inter_cas_time_26 inter_cas_time_26
Signed 32-bit integer
inter_cas_time_27 inter_cas_time_27
Signed 32-bit integer
inter_cas_time_28 inter_cas_time_28
Signed 32-bit integer
inter_cas_time_29 inter_cas_time_29
Signed 32-bit integer
inter_cas_time_3 inter_cas_time_3
Signed 32-bit integer
inter_cas_time_30 inter_cas_time_30
Signed 32-bit integer
inter_cas_time_31 inter_cas_time_31
Signed 32-bit integer
inter_cas_time_32 inter_cas_time_32
Signed 32-bit integer
inter_cas_time_33 inter_cas_time_33
Signed 32-bit integer
inter_cas_time_34 inter_cas_time_34
Signed 32-bit integer
inter_cas_time_35 inter_cas_time_35
Signed 32-bit integer
inter_cas_time_36 inter_cas_time_36
Signed 32-bit integer
inter_cas_time_37 inter_cas_time_37
Signed 32-bit integer
inter_cas_time_38 inter_cas_time_38
Signed 32-bit integer
inter_cas_time_39 inter_cas_time_39
Signed 32-bit integer
inter_cas_time_4 inter_cas_time_4
Signed 32-bit integer
inter_cas_time_40 inter_cas_time_40
Signed 32-bit integer
inter_cas_time_41 inter_cas_time_41
Signed 32-bit integer
inter_cas_time_42 inter_cas_time_42
Signed 32-bit integer
inter_cas_time_43 inter_cas_time_43
Signed 32-bit integer
inter_cas_time_44 inter_cas_time_44
Signed 32-bit integer
inter_cas_time_45 inter_cas_time_45
Signed 32-bit integer
inter_cas_time_46 inter_cas_time_46
Signed 32-bit integer
inter_cas_time_47 inter_cas_time_47
Signed 32-bit integer
inter_cas_time_48 inter_cas_time_48
Signed 32-bit integer
inter_cas_time_49 inter_cas_time_49
Signed 32-bit integer
inter_cas_time_5 inter_cas_time_5
Signed 32-bit integer
inter_cas_time_6 inter_cas_time_6
Signed 32-bit integer
inter_cas_time_7 inter_cas_time_7
Signed 32-bit integer
inter_cas_time_8 inter_cas_time_8
Signed 32-bit integer
inter_cas_time_9 inter_cas_time_9
Signed 32-bit integer
inter_digit_critical_timer inter_digit_critical_timer
Signed 32-bit integer
inter_digit_time_0 inter_digit_time_0
Signed 32-bit integer
inter_digit_time_1 inter_digit_time_1
Signed 32-bit integer
inter_digit_time_10 inter_digit_time_10
Signed 32-bit integer
inter_digit_time_11 inter_digit_time_11
Signed 32-bit integer
inter_digit_time_12 inter_digit_time_12
Signed 32-bit integer
inter_digit_time_13 inter_digit_time_13
Signed 32-bit integer
inter_digit_time_14 inter_digit_time_14
Signed 32-bit integer
inter_digit_time_15 inter_digit_time_15
Signed 32-bit integer
inter_digit_time_16 inter_digit_time_16
Signed 32-bit integer
inter_digit_time_17 inter_digit_time_17
Signed 32-bit integer
inter_digit_time_18 inter_digit_time_18
Signed 32-bit integer
inter_digit_time_19 inter_digit_time_19
Signed 32-bit integer
inter_digit_time_2 inter_digit_time_2
Signed 32-bit integer
inter_digit_time_20 inter_digit_time_20
Signed 32-bit integer
inter_digit_time_21 inter_digit_time_21
Signed 32-bit integer
inter_digit_time_22 inter_digit_time_22
Signed 32-bit integer
inter_digit_time_23 inter_digit_time_23
Signed 32-bit integer
inter_digit_time_24 inter_digit_time_24
Signed 32-bit integer
inter_digit_time_25 inter_digit_time_25
Signed 32-bit integer
inter_digit_time_26 inter_digit_time_26
Signed 32-bit integer
inter_digit_time_27 inter_digit_time_27
Signed 32-bit integer
inter_digit_time_28 inter_digit_time_28
Signed 32-bit integer
inter_digit_time_29 inter_digit_time_29
Signed 32-bit integer
inter_digit_time_3 inter_digit_time_3
Signed 32-bit integer
inter_digit_time_30 inter_digit_time_30
Signed 32-bit integer
inter_digit_time_31 inter_digit_time_31
Signed 32-bit integer
inter_digit_time_32 inter_digit_time_32
Signed 32-bit integer
inter_digit_time_33 inter_digit_time_33
Signed 32-bit integer
inter_digit_time_34 inter_digit_time_34
Signed 32-bit integer
inter_digit_time_35 inter_digit_time_35
Signed 32-bit integer
inter_digit_time_36 inter_digit_time_36
Signed 32-bit integer
inter_digit_time_37 inter_digit_time_37
Signed 32-bit integer
inter_digit_time_38 inter_digit_time_38
Signed 32-bit integer
inter_digit_time_39 inter_digit_time_39
Signed 32-bit integer
inter_digit_time_4 inter_digit_time_4
Signed 32-bit integer
inter_digit_time_5 inter_digit_time_5
Signed 32-bit integer
inter_digit_time_6 inter_digit_time_6
Signed 32-bit integer
inter_digit_time_7 inter_digit_time_7
Signed 32-bit integer
inter_digit_time_8 inter_digit_time_8
Signed 32-bit integer
inter_digit_time_9 inter_digit_time_9
Signed 32-bit integer
inter_digit_timer inter_digit_timer
Signed 32-bit integer
inter_exchange_prefix_num inter_exchange_prefix_num
String
interaction_required interaction_required
Unsigned 8-bit integer
interface_type interface_type
Signed 32-bit integer
internal_vcc_handle internal_vcc_handle
Signed 16-bit integer
interval interval
Signed 32-bit integer
interval_length interval_length
Signed 32-bit integer
ip_address ip_address
Unsigned 32-bit integer
ip_address_0 ip_address_0
Unsigned 32-bit integer
ip_address_1 ip_address_1
Unsigned 32-bit integer
ip_address_2 ip_address_2
Unsigned 32-bit integer
ip_address_3 ip_address_3
Unsigned 32-bit integer
ip_address_4 ip_address_4
Unsigned 32-bit integer
ip_address_5 ip_address_5
Unsigned 32-bit integer
ip_dst_addr ip_dst_addr
Unsigned 32-bit integer
ip_precedence ip_precedence
Signed 32-bit integer
ip_tos_field_in_udp_packet ip_tos_field_in_udp_packet
Unsigned 8-bit integer
iptos iptos
Signed 32-bit integer
ipv6_addr_0 ipv6_addr_0
Unsigned 32-bit integer
ipv6_addr_1 ipv6_addr_1
Unsigned 32-bit integer
ipv6_addr_2 ipv6_addr_2
Unsigned 32-bit integer
ipv6_addr_3 ipv6_addr_3
Unsigned 32-bit integer
is_active is_active
Unsigned 8-bit integer
is_available is_available
Unsigned 8-bit integer
is_burn_success is_burn_success
Unsigned 8-bit integer
is_data_flow_control is_data_flow_control
Unsigned 8-bit integer
is_duplex_0 is_duplex_0
Signed 32-bit integer
is_duplex_1 is_duplex_1
Signed 32-bit integer
is_duplex_2 is_duplex_2
Signed 32-bit integer
is_duplex_3 is_duplex_3
Signed 32-bit integer
is_duplex_4 is_duplex_4
Signed 32-bit integer
is_duplex_5 is_duplex_5
Signed 32-bit integer
is_enable_listener_only_participants is_enable_listener_only_participants
Signed 32-bit integer
is_external_grammar is_external_grammar
Unsigned 8-bit integer
is_last is_last
Signed 32-bit integer
is_link_up_0 is_link_up_0
Signed 32-bit integer
is_link_up_1 is_link_up_1
Signed 32-bit integer
is_link_up_2 is_link_up_2
Signed 32-bit integer
is_link_up_3 is_link_up_3
Signed 32-bit integer
is_link_up_4 is_link_up_4
Signed 32-bit integer
is_link_up_5 is_link_up_5
Signed 32-bit integer
is_load_success is_load_success
Unsigned 8-bit integer
is_multiple_ip_addresses_enabled_0 is_multiple_ip_addresses_enabled_0
Signed 32-bit integer
is_multiple_ip_addresses_enabled_1 is_multiple_ip_addresses_enabled_1
Signed 32-bit integer
is_multiple_ip_addresses_enabled_2 is_multiple_ip_addresses_enabled_2
Signed 32-bit integer
is_multiple_ip_addresses_enabled_3 is_multiple_ip_addresses_enabled_3
Signed 32-bit integer
is_multiple_ip_addresses_enabled_4 is_multiple_ip_addresses_enabled_4
Signed 32-bit integer
is_multiple_ip_addresses_enabled_5 is_multiple_ip_addresses_enabled_5
Signed 32-bit integer
is_proxy_lcp_required is_proxy_lcp_required
Unsigned 8-bit integer
is_repeat_dial_string is_repeat_dial_string
Signed 32-bit integer
is_single_tunnel_required is_single_tunnel_required
Unsigned 8-bit integer
is_threshold_alarm_active is_threshold_alarm_active
Unsigned 8-bit integer
is_tunnel_auth_required is_tunnel_auth_required
Unsigned 8-bit integer
is_tunnel_security_required is_tunnel_security_required
Unsigned 8-bit integer
is_vlan_enabled_0 is_vlan_enabled_0
Signed 32-bit integer
is_vlan_enabled_1 is_vlan_enabled_1
Signed 32-bit integer
is_vlan_enabled_2 is_vlan_enabled_2
Signed 32-bit integer
is_vlan_enabled_3 is_vlan_enabled_3
Signed 32-bit integer
is_vlan_enabled_4 is_vlan_enabled_4
Signed 32-bit integer
is_vlan_enabled_5 is_vlan_enabled_5
Signed 32-bit integer
is_vmwi is_vmwi
Unsigned 8-bit integer
isdn_progress_ind_description isdn_progress_ind_description
Signed 32-bit integer
isdn_progress_ind_location isdn_progress_ind_location
Signed 32-bit integer
isup_msg_type isup_msg_type
Signed 32-bit integer
iterations iterations
Unsigned 16-bit integer
jb_abs_max_delay jb_abs_max_delay
Unsigned 16-bit integer
jb_max_delay jb_max_delay
Unsigned 16-bit integer
jb_nom_delay jb_nom_delay
Unsigned 16-bit integer
jitter jitter
Unsigned 32-bit integer
keep_digits keep_digits
Signed 32-bit integer
key key
String
key_length key_length
Signed 32-bit integer
keypad_size keypad_size
Signed 32-bit integer
keypad_string keypad_string
String
keys_patterns keys_patterns
String
l2_startup_not_ok l2_startup_not_ok
Signed 32-bit integer
l2tp_tunnel_id l2tp_tunnel_id
Unsigned 16-bit integer
l_ais l_ais
Signed 32-bit integer
l_rdi l_rdi
Signed 32-bit integer
largest_conference_enable largest_conference_enable
Signed 32-bit integer
last_cas last_cas
Signed 32-bit integer
last_current_disconnect_duration last_current_disconnect_duration
Unsigned 32-bit integer
last_rtt last_rtt
Unsigned 32-bit integer
last_value last_value
Signed 32-bit integer
lcd lcd
Signed 32-bit integer
length length
Signed 32-bit integer
license_key license_key
String
line_code_violation line_code_violation
Signed 32-bit integer
line_errored_seconds line_errored_seconds
Signed 32-bit integer
line_in_file line_in_file
Signed 32-bit integer
line_number line_number
Signed 32-bit integer
line_polarity line_polarity
Signed 32-bit integer
line_polarity_state line_polarity_state
Signed 32-bit integer
link link
Signed 32-bit integer
link_control_protocol_data_link_error link_control_protocol_data_link_error
Signed 32-bit integer
link_event_cause link_event_cause
Signed 32-bit integer
link_id link_id
Signed 32-bit integer
link_set link_set
Signed 32-bit integer
link_set_event_cause link_set_event_cause
Signed 32-bit integer
link_set_name link_set_name
String
link_set_no link_set_no
Signed 32-bit integer
links_configured_no links_configured_no
Signed 32-bit integer
links_no_0 links_no_0
Signed 32-bit integer
links_no_1 links_no_1
Signed 32-bit integer
links_no_10 links_no_10
Signed 32-bit integer
links_no_11 links_no_11
Signed 32-bit integer
links_no_12 links_no_12
Signed 32-bit integer
links_no_13 links_no_13
Signed 32-bit integer
links_no_14 links_no_14
Signed 32-bit integer
links_no_15 links_no_15
Signed 32-bit integer
links_no_2 links_no_2
Signed 32-bit integer
links_no_3 links_no_3
Signed 32-bit integer
links_no_4 links_no_4
Signed 32-bit integer
links_no_5 links_no_5
Signed 32-bit integer
links_no_6 links_no_6
Signed 32-bit integer
links_no_7 links_no_7
Signed 32-bit integer
links_no_8 links_no_8
Signed 32-bit integer
links_no_9 links_no_9
Signed 32-bit integer
links_per_card links_per_card
Signed 32-bit integer
links_per_linkset links_per_linkset
Signed 32-bit integer
links_slc_0 links_slc_0
Signed 32-bit integer
links_slc_1 links_slc_1
Signed 32-bit integer
links_slc_10 links_slc_10
Signed 32-bit integer
links_slc_11 links_slc_11
Signed 32-bit integer
links_slc_12 links_slc_12
Signed 32-bit integer
links_slc_13 links_slc_13
Signed 32-bit integer
links_slc_14 links_slc_14
Signed 32-bit integer
links_slc_15 links_slc_15
Signed 32-bit integer
links_slc_2 links_slc_2
Signed 32-bit integer
links_slc_3 links_slc_3
Signed 32-bit integer
links_slc_4 links_slc_4
Signed 32-bit integer
links_slc_5 links_slc_5
Signed 32-bit integer
links_slc_6 links_slc_6
Signed 32-bit integer
links_slc_7 links_slc_7
Signed 32-bit integer
links_slc_8 links_slc_8
Signed 32-bit integer
links_slc_9 links_slc_9
Signed 32-bit integer
linkset_timer_sets linkset_timer_sets
Signed 32-bit integer
linksets_per_routeset linksets_per_routeset
Signed 32-bit integer
linksets_per_sn linksets_per_sn
Signed 32-bit integer
llid llid
String
lo_alarm_status_0 lo_alarm_status_0
Signed 32-bit integer
lo_alarm_status_1 lo_alarm_status_1
Signed 32-bit integer
lo_alarm_status_10 lo_alarm_status_10
Signed 32-bit integer
lo_alarm_status_11 lo_alarm_status_11
Signed 32-bit integer
lo_alarm_status_12 lo_alarm_status_12
Signed 32-bit integer
lo_alarm_status_13 lo_alarm_status_13
Signed 32-bit integer
lo_alarm_status_14 lo_alarm_status_14
Signed 32-bit integer
lo_alarm_status_15 lo_alarm_status_15
Signed 32-bit integer
lo_alarm_status_16 lo_alarm_status_16
Signed 32-bit integer
lo_alarm_status_17 lo_alarm_status_17
Signed 32-bit integer
lo_alarm_status_18 lo_alarm_status_18
Signed 32-bit integer
lo_alarm_status_19 lo_alarm_status_19
Signed 32-bit integer
lo_alarm_status_2 lo_alarm_status_2
Signed 32-bit integer
lo_alarm_status_20 lo_alarm_status_20
Signed 32-bit integer
lo_alarm_status_21 lo_alarm_status_21
Signed 32-bit integer
lo_alarm_status_22 lo_alarm_status_22
Signed 32-bit integer
lo_alarm_status_23 lo_alarm_status_23
Signed 32-bit integer
lo_alarm_status_24 lo_alarm_status_24
Signed 32-bit integer
lo_alarm_status_25 lo_alarm_status_25
Signed 32-bit integer
lo_alarm_status_26 lo_alarm_status_26
Signed 32-bit integer
lo_alarm_status_27 lo_alarm_status_27
Signed 32-bit integer
lo_alarm_status_28 lo_alarm_status_28
Signed 32-bit integer
lo_alarm_status_29 lo_alarm_status_29
Signed 32-bit integer
lo_alarm_status_3 lo_alarm_status_3
Signed 32-bit integer
lo_alarm_status_30 lo_alarm_status_30
Signed 32-bit integer
lo_alarm_status_31 lo_alarm_status_31
Signed 32-bit integer
lo_alarm_status_32 lo_alarm_status_32
Signed 32-bit integer
lo_alarm_status_33 lo_alarm_status_33
Signed 32-bit integer
lo_alarm_status_34 lo_alarm_status_34
Signed 32-bit integer
lo_alarm_status_35 lo_alarm_status_35
Signed 32-bit integer
lo_alarm_status_36 lo_alarm_status_36
Signed 32-bit integer
lo_alarm_status_37 lo_alarm_status_37
Signed 32-bit integer
lo_alarm_status_38 lo_alarm_status_38
Signed 32-bit integer
lo_alarm_status_39 lo_alarm_status_39
Signed 32-bit integer
lo_alarm_status_4 lo_alarm_status_4
Signed 32-bit integer
lo_alarm_status_40 lo_alarm_status_40
Signed 32-bit integer
lo_alarm_status_41 lo_alarm_status_41
Signed 32-bit integer
lo_alarm_status_42 lo_alarm_status_42
Signed 32-bit integer
lo_alarm_status_43 lo_alarm_status_43
Signed 32-bit integer
lo_alarm_status_44 lo_alarm_status_44
Signed 32-bit integer
lo_alarm_status_45 lo_alarm_status_45
Signed 32-bit integer
lo_alarm_status_46 lo_alarm_status_46
Signed 32-bit integer
lo_alarm_status_47 lo_alarm_status_47
Signed 32-bit integer
lo_alarm_status_48 lo_alarm_status_48
Signed 32-bit integer
lo_alarm_status_49 lo_alarm_status_49
Signed 32-bit integer
lo_alarm_status_5 lo_alarm_status_5
Signed 32-bit integer
lo_alarm_status_50 lo_alarm_status_50
Signed 32-bit integer
lo_alarm_status_51 lo_alarm_status_51
Signed 32-bit integer
lo_alarm_status_52 lo_alarm_status_52
Signed 32-bit integer
lo_alarm_status_53 lo_alarm_status_53
Signed 32-bit integer
lo_alarm_status_54 lo_alarm_status_54
Signed 32-bit integer
lo_alarm_status_55 lo_alarm_status_55
Signed 32-bit integer
lo_alarm_status_56 lo_alarm_status_56
Signed 32-bit integer
lo_alarm_status_57 lo_alarm_status_57
Signed 32-bit integer
lo_alarm_status_58 lo_alarm_status_58
Signed 32-bit integer
lo_alarm_status_59 lo_alarm_status_59
Signed 32-bit integer
lo_alarm_status_6 lo_alarm_status_6
Signed 32-bit integer
lo_alarm_status_60 lo_alarm_status_60
Signed 32-bit integer
lo_alarm_status_61 lo_alarm_status_61
Signed 32-bit integer
lo_alarm_status_62 lo_alarm_status_62
Signed 32-bit integer
lo_alarm_status_63 lo_alarm_status_63
Signed 32-bit integer
lo_alarm_status_64 lo_alarm_status_64
Signed 32-bit integer
lo_alarm_status_65 lo_alarm_status_65
Signed 32-bit integer
lo_alarm_status_66 lo_alarm_status_66
Signed 32-bit integer
lo_alarm_status_67 lo_alarm_status_67
Signed 32-bit integer
lo_alarm_status_68 lo_alarm_status_68
Signed 32-bit integer
lo_alarm_status_69 lo_alarm_status_69
Signed 32-bit integer
lo_alarm_status_7 lo_alarm_status_7
Signed 32-bit integer
lo_alarm_status_70 lo_alarm_status_70
Signed 32-bit integer
lo_alarm_status_71 lo_alarm_status_71
Signed 32-bit integer
lo_alarm_status_72 lo_alarm_status_72
Signed 32-bit integer
lo_alarm_status_73 lo_alarm_status_73
Signed 32-bit integer
lo_alarm_status_74 lo_alarm_status_74
Signed 32-bit integer
lo_alarm_status_75 lo_alarm_status_75
Signed 32-bit integer
lo_alarm_status_76 lo_alarm_status_76
Signed 32-bit integer
lo_alarm_status_77 lo_alarm_status_77
Signed 32-bit integer
lo_alarm_status_78 lo_alarm_status_78
Signed 32-bit integer
lo_alarm_status_79 lo_alarm_status_79
Signed 32-bit integer
lo_alarm_status_8 lo_alarm_status_8
Signed 32-bit integer
lo_alarm_status_80 lo_alarm_status_80
Signed 32-bit integer
lo_alarm_status_81 lo_alarm_status_81
Signed 32-bit integer
lo_alarm_status_82 lo_alarm_status_82
Signed 32-bit integer
lo_alarm_status_83 lo_alarm_status_83
Signed 32-bit integer
lo_alarm_status_9 lo_alarm_status_9
Signed 32-bit integer
local_port_0 local_port_0
Signed 32-bit integer
local_port_1 local_port_1
Signed 32-bit integer
local_port_10 local_port_10
Signed 32-bit integer
local_port_11 local_port_11
Signed 32-bit integer
local_port_12 local_port_12
Signed 32-bit integer
local_port_13 local_port_13
Signed 32-bit integer
local_port_14 local_port_14
Signed 32-bit integer
local_port_15 local_port_15
Signed 32-bit integer
local_port_16 local_port_16
Signed 32-bit integer
local_port_17 local_port_17
Signed 32-bit integer
local_port_18 local_port_18
Signed 32-bit integer
local_port_19 local_port_19
Signed 32-bit integer
local_port_2 local_port_2
Signed 32-bit integer
local_port_20 local_port_20
Signed 32-bit integer
local_port_21 local_port_21
Signed 32-bit integer
local_port_22 local_port_22
Signed 32-bit integer
local_port_23 local_port_23
Signed 32-bit integer
local_port_24 local_port_24
Signed 32-bit integer
local_port_25 local_port_25
Signed 32-bit integer
local_port_26 local_port_26
Signed 32-bit integer
local_port_27 local_port_27
Signed 32-bit integer
local_port_28 local_port_28
Signed 32-bit integer
local_port_29 local_port_29
Signed 32-bit integer
local_port_3 local_port_3
Signed 32-bit integer
local_port_30 local_port_30
Signed 32-bit integer
local_port_31 local_port_31
Signed 32-bit integer
local_port_4 local_port_4
Signed 32-bit integer
local_port_5 local_port_5
Signed 32-bit integer
local_port_6 local_port_6
Signed 32-bit integer
local_port_7 local_port_7
Signed 32-bit integer
local_port_8 local_port_8
Signed 32-bit integer
local_port_9 local_port_9
Signed 32-bit integer
local_rtp_port local_rtp_port
Unsigned 16-bit integer
local_session_id local_session_id
Signed 32-bit integer
local_session_seq_num local_session_seq_num
Signed 32-bit integer
locally_inhibited locally_inhibited
Signed 32-bit integer
lof lof
Signed 32-bit integer
loop_back_port_state_0 loop_back_port_state_0
Signed 32-bit integer
loop_back_port_state_1 loop_back_port_state_1
Signed 32-bit integer
loop_back_port_state_2 loop_back_port_state_2
Signed 32-bit integer
loop_back_port_state_3 loop_back_port_state_3
Signed 32-bit integer
loop_back_port_state_4 loop_back_port_state_4
Signed 32-bit integer
loop_back_port_state_5 loop_back_port_state_5
Signed 32-bit integer
loop_back_port_state_6 loop_back_port_state_6
Signed 32-bit integer
loop_back_port_state_7 loop_back_port_state_7
Signed 32-bit integer
loop_back_port_state_8 loop_back_port_state_8
Signed 32-bit integer
loop_back_port_state_9 loop_back_port_state_9
Signed 32-bit integer
loop_back_status loop_back_status
Signed 32-bit integer
loop_code loop_code
Signed 32-bit integer
loop_direction loop_direction
Signed 32-bit integer
loop_type loop_type
Signed 32-bit integer
lop lop
Signed 32-bit integer
los los
Signed 32-bit integer
los_of_signal los_of_signal
Signed 32-bit integer
los_port_state_0 los_port_state_0
Signed 32-bit integer
los_port_state_1 los_port_state_1
Signed 32-bit integer
los_port_state_2 los_port_state_2
Signed 32-bit integer
los_port_state_3 los_port_state_3
Signed 32-bit integer
los_port_state_4 los_port_state_4
Signed 32-bit integer
los_port_state_5 los_port_state_5
Signed 32-bit integer
los_port_state_6 los_port_state_6
Signed 32-bit integer
los_port_state_7 los_port_state_7
Signed 32-bit integer
los_port_state_8 los_port_state_8
Signed 32-bit integer
los_port_state_9 los_port_state_9
Signed 32-bit integer
loss_of_frame loss_of_frame
Signed 32-bit integer
loss_of_signal loss_of_signal
Signed 32-bit integer
loss_rate loss_rate
Unsigned 8-bit integer
lost_crc4multiframe_sync lost_crc4multiframe_sync
Signed 32-bit integer
low_threshold low_threshold
Signed 32-bit integer
m m
Signed 32-bit integer
maal_state maal_state
Unsigned 8-bit integer
mac_addr_lsb mac_addr_lsb
Signed 32-bit integer
mac_addr_lsb_0 mac_addr_lsb_0
Signed 32-bit integer
mac_addr_lsb_1 mac_addr_lsb_1
Signed 32-bit integer
mac_addr_lsb_2 mac_addr_lsb_2
Signed 32-bit integer
mac_addr_lsb_3 mac_addr_lsb_3
Signed 32-bit integer
mac_addr_lsb_4 mac_addr_lsb_4
Signed 32-bit integer
mac_addr_lsb_5 mac_addr_lsb_5
Signed 32-bit integer
mac_addr_msb mac_addr_msb
Signed 32-bit integer
mac_addr_msb_0 mac_addr_msb_0
Signed 32-bit integer
mac_addr_msb_1 mac_addr_msb_1
Signed 32-bit integer
mac_addr_msb_2 mac_addr_msb_2
Signed 32-bit integer
mac_addr_msb_3 mac_addr_msb_3
Signed 32-bit integer
mac_addr_msb_4 mac_addr_msb_4
Signed 32-bit integer
mac_addr_msb_5 mac_addr_msb_5
Signed 32-bit integer
maintenance_field_m1 maintenance_field_m1
Signed 32-bit integer
maintenance_field_m2 maintenance_field_m2
Signed 32-bit integer
maintenance_field_m3 maintenance_field_m3
Signed 32-bit integer
master_temperature master_temperature
Signed 32-bit integer
match_grammar_name match_grammar_name
String
matched_map_index matched_map_index
Signed 32-bit integer
matched_map_num matched_map_num
Signed 32-bit integer
matched_value matched_value
String
max max
Signed 32-bit integer
max_ack_time_out max_ack_time_out
Unsigned 32-bit integer
max_attempts max_attempts
Signed 32-bit integer
max_dial_string_length max_dial_string_length
Signed 32-bit integer
max_dtmf_digits_in_caller_id_string max_dtmf_digits_in_caller_id_string
Unsigned 8-bit integer
max_end_dial_timer max_end_dial_timer
Signed 32-bit integer
max_long_inter_digit_timer max_long_inter_digit_timer
Signed 32-bit integer
max_num_of_indexes max_num_of_indexes
Signed 32-bit integer
max_participants max_participants
Signed 32-bit integer
max_rtt max_rtt
Unsigned 32-bit integer
max_short_inter_digit_timer max_short_inter_digit_timer
Signed 16-bit integer
max_simultaneous_speakers max_simultaneous_speakers
Signed 32-bit integer
max_start_timer max_start_timer
Signed 32-bit integer
mbs mbs
Signed 32-bit integer
measurement_error measurement_error
Signed 32-bit integer
measurement_mode measurement_mode
Signed 32-bit integer
measurement_trigger measurement_trigger
Signed 32-bit integer
measurement_unit measurement_unit
Signed 32-bit integer
media_gateway_address_0 media_gateway_address_0
Unsigned 32-bit integer
media_gateway_address_1 media_gateway_address_1
Unsigned 32-bit integer
media_gateway_address_2 media_gateway_address_2
Unsigned 32-bit integer
media_gateway_address_3 media_gateway_address_3
Unsigned 32-bit integer
media_gateway_address_4 media_gateway_address_4
Unsigned 32-bit integer
media_gateway_address_5 media_gateway_address_5
Unsigned 32-bit integer
media_ip_address_0 media_ip_address_0
Unsigned 32-bit integer
media_ip_address_1 media_ip_address_1
Unsigned 32-bit integer
media_ip_address_2 media_ip_address_2
Unsigned 32-bit integer
media_ip_address_3 media_ip_address_3
Unsigned 32-bit integer
media_ip_address_4 media_ip_address_4
Unsigned 32-bit integer
media_ip_address_5 media_ip_address_5
Unsigned 32-bit integer
media_subnet_mask_address_0 media_subnet_mask_address_0
Unsigned 32-bit integer
media_subnet_mask_address_1 media_subnet_mask_address_1
Unsigned 32-bit integer
media_subnet_mask_address_2 media_subnet_mask_address_2
Unsigned 32-bit integer
media_subnet_mask_address_3 media_subnet_mask_address_3
Unsigned 32-bit integer
media_subnet_mask_address_4 media_subnet_mask_address_4
Unsigned 32-bit integer
media_subnet_mask_address_5 media_subnet_mask_address_5
Unsigned 32-bit integer
media_type media_type
Signed 32-bit integer
media_types_enabled media_types_enabled
Signed 32-bit integer
media_vlan_id_0 media_vlan_id_0
Unsigned 32-bit integer
media_vlan_id_1 media_vlan_id_1
Unsigned 32-bit integer
media_vlan_id_2 media_vlan_id_2
Unsigned 32-bit integer
media_vlan_id_3 media_vlan_id_3
Unsigned 32-bit integer
media_vlan_id_4 media_vlan_id_4
Unsigned 32-bit integer
media_vlan_id_5 media_vlan_id_5
Unsigned 32-bit integer
mediation_level mediation_level
Signed 32-bit integer
mediation_packet_format mediation_packet_format
Signed 32-bit integer
message message
String
message_id message_id
Signed 32-bit integer
message_length message_length
Unsigned 8-bit integer
message_type message_type
Signed 32-bit integer
message_waiting_indication message_waiting_indication
Signed 32-bit integer
method method
Unsigned 32-bit integer
mf_transport_type mf_transport_type
Signed 32-bit integer
mgci_paddr mgci_paddr
Unsigned 32-bit integer
mgci_paddr_0 mgci_paddr_0
Unsigned 32-bit integer
mgci_paddr_1 mgci_paddr_1
Unsigned 32-bit integer
mgci_paddr_2 mgci_paddr_2
Unsigned 32-bit integer
mgci_paddr_3 mgci_paddr_3
Unsigned 32-bit integer
mgci_paddr_4 mgci_paddr_4
Unsigned 32-bit integer
min min
Signed 32-bit integer
min_digit_len min_digit_len
Signed 32-bit integer
min_dtmf_digits_in_caller_id_string min_dtmf_digits_in_caller_id_string
Unsigned 8-bit integer
min_gap_size min_gap_size
Unsigned 8-bit integer
min_inter_digit_len min_inter_digit_len
Signed 32-bit integer
min_long_event_timer min_long_event_timer
Signed 32-bit integer
min_rtt min_rtt
Unsigned 32-bit integer
minute minute
Signed 32-bit integer
minutes minutes
Signed 32-bit integer
mlpp_circuit_reserved mlpp_circuit_reserved
Signed 32-bit integer
mlpp_coding_standard mlpp_coding_standard
Signed 32-bit integer
mlpp_domain_0 mlpp_domain_0
Unsigned 8-bit integer
mlpp_domain_1 mlpp_domain_1
Unsigned 8-bit integer
mlpp_domain_2 mlpp_domain_2
Unsigned 8-bit integer
mlpp_domain_3 mlpp_domain_3
Unsigned 8-bit integer
mlpp_domain_4 mlpp_domain_4
Unsigned 8-bit integer
mlpp_domain_size mlpp_domain_size
Signed 32-bit integer
mlpp_lfb_ind mlpp_lfb_ind
Signed 32-bit integer
mlpp_prec_level mlpp_prec_level
Signed 32-bit integer
mlpp_precedence_level_change_privilege mlpp_precedence_level_change_privilege
Signed 32-bit integer
mlpp_present mlpp_present
Unsigned 32-bit integer
mlpp_status_request mlpp_status_request
Signed 32-bit integer
mode mode
Signed 32-bit integer
modem_address_and_control_compression modem_address_and_control_compression
Unsigned 8-bit integer
modem_compression modem_compression
Unsigned 8-bit integer
modem_data_mode modem_data_mode
Unsigned 8-bit integer
modem_data_protocol modem_data_protocol
Unsigned 8-bit integer
modem_debug_mode modem_debug_mode
Unsigned 8-bit integer
modem_disable_line_quality_monitoring modem_disable_line_quality_monitoring
Unsigned 8-bit integer
modem_max_rate modem_max_rate
Unsigned 8-bit integer
modem_on_hold_mode modem_on_hold_mode
Unsigned 8-bit integer
modem_on_hold_time_out modem_on_hold_time_out
Unsigned 8-bit integer
modem_pstn_access modem_pstn_access
Unsigned 8-bit integer
modem_ras_call_type modem_ras_call_type
Unsigned 8-bit integer
modem_relay_max_rate modem_relay_max_rate
Signed 32-bit integer
modem_relay_redundancy_depth modem_relay_redundancy_depth
Signed 32-bit integer
modem_rtp_bypass_payload_type modem_rtp_bypass_payload_type
Signed 32-bit integer
modem_standard modem_standard
Unsigned 8-bit integer
modify_t1e1_span_code modify_t1e1_span_code
Signed 32-bit integer
modulation_type modulation_type
Signed 32-bit integer
module module
Signed 16-bit integer
module_firm_ware module_firm_ware
Signed 32-bit integer
module_origin module_origin
Signed 32-bit integer
monitor_signaling_changes_only monitor_signaling_changes_only
Unsigned 8-bit integer
month month
Signed 32-bit integer
mos_cq mos_cq
Unsigned 8-bit integer
mos_lq mos_lq
Unsigned 8-bit integer
ms_alarms_status_0 ms_alarms_status_0
Signed 32-bit integer
ms_alarms_status_1 ms_alarms_status_1
Signed 32-bit integer
ms_alarms_status_2 ms_alarms_status_2
Signed 32-bit integer
ms_alarms_status_3 ms_alarms_status_3
Signed 32-bit integer
ms_alarms_status_4 ms_alarms_status_4
Signed 32-bit integer
ms_alarms_status_5 ms_alarms_status_5
Signed 32-bit integer
ms_alarms_status_6 ms_alarms_status_6
Signed 32-bit integer
ms_alarms_status_7 ms_alarms_status_7
Signed 32-bit integer
ms_alarms_status_8 ms_alarms_status_8
Signed 32-bit integer
ms_alarms_status_9 ms_alarms_status_9
Signed 32-bit integer
msec_duration msec_duration
Signed 32-bit integer
msg_type msg_type
Signed 32-bit integer
msu_error_cause msu_error_cause
Signed 32-bit integer
mute_mode mute_mode
Signed 32-bit integer
muted_participant_id muted_participant_id
Signed 32-bit integer
muted_participants_handle_list_0 muted_participants_handle_list_0
Signed 32-bit integer
muted_participants_handle_list_1 muted_participants_handle_list_1
Signed 32-bit integer
muted_participants_handle_list_10 muted_participants_handle_list_10
Signed 32-bit integer
muted_participants_handle_list_100 muted_participants_handle_list_100
Signed 32-bit integer
muted_participants_handle_list_101 muted_participants_handle_list_101
Signed 32-bit integer
muted_participants_handle_list_102 muted_participants_handle_list_102
Signed 32-bit integer
muted_participants_handle_list_103 muted_participants_handle_list_103
Signed 32-bit integer
muted_participants_handle_list_104 muted_participants_handle_list_104
Signed 32-bit integer
muted_participants_handle_list_105 muted_participants_handle_list_105
Signed 32-bit integer
muted_participants_handle_list_106 muted_participants_handle_list_106
Signed 32-bit integer
muted_participants_handle_list_107 muted_participants_handle_list_107
Signed 32-bit integer
muted_participants_handle_list_108 muted_participants_handle_list_108
Signed 32-bit integer
muted_participants_handle_list_109 muted_participants_handle_list_109
Signed 32-bit integer
muted_participants_handle_list_11 muted_participants_handle_list_11
Signed 32-bit integer
muted_participants_handle_list_110 muted_participants_handle_list_110
Signed 32-bit integer
muted_participants_handle_list_111 muted_participants_handle_list_111
Signed 32-bit integer
muted_participants_handle_list_112 muted_participants_handle_list_112
Signed 32-bit integer
muted_participants_handle_list_113 muted_participants_handle_list_113
Signed 32-bit integer
muted_participants_handle_list_114 muted_participants_handle_list_114
Signed 32-bit integer
muted_participants_handle_list_115 muted_participants_handle_list_115
Signed 32-bit integer
muted_participants_handle_list_116 muted_participants_handle_list_116
Signed 32-bit integer
muted_participants_handle_list_117 muted_participants_handle_list_117
Signed 32-bit integer
muted_participants_handle_list_118 muted_participants_handle_list_118
Signed 32-bit integer
muted_participants_handle_list_119 muted_participants_handle_list_119
Signed 32-bit integer
muted_participants_handle_list_12 muted_participants_handle_list_12
Signed 32-bit integer
muted_participants_handle_list_120 muted_participants_handle_list_120
Signed 32-bit integer
muted_participants_handle_list_121 muted_participants_handle_list_121
Signed 32-bit integer
muted_participants_handle_list_122 muted_participants_handle_list_122
Signed 32-bit integer
muted_participants_handle_list_123 muted_participants_handle_list_123
Signed 32-bit integer
muted_participants_handle_list_124 muted_participants_handle_list_124
Signed 32-bit integer
muted_participants_handle_list_125 muted_participants_handle_list_125
Signed 32-bit integer
muted_participants_handle_list_126 muted_participants_handle_list_126
Signed 32-bit integer
muted_participants_handle_list_127 muted_participants_handle_list_127
Signed 32-bit integer
muted_participants_handle_list_128 muted_participants_handle_list_128
Signed 32-bit integer
muted_participants_handle_list_129 muted_participants_handle_list_129
Signed 32-bit integer
muted_participants_handle_list_13 muted_participants_handle_list_13
Signed 32-bit integer
muted_participants_handle_list_130 muted_participants_handle_list_130
Signed 32-bit integer
muted_participants_handle_list_131 muted_participants_handle_list_131
Signed 32-bit integer
muted_participants_handle_list_132 muted_participants_handle_list_132
Signed 32-bit integer
muted_participants_handle_list_133 muted_participants_handle_list_133
Signed 32-bit integer
muted_participants_handle_list_134 muted_participants_handle_list_134
Signed 32-bit integer
muted_participants_handle_list_135 muted_participants_handle_list_135
Signed 32-bit integer
muted_participants_handle_list_136 muted_participants_handle_list_136
Signed 32-bit integer
muted_participants_handle_list_137 muted_participants_handle_list_137
Signed 32-bit integer
muted_participants_handle_list_138 muted_participants_handle_list_138
Signed 32-bit integer
muted_participants_handle_list_139 muted_participants_handle_list_139
Signed 32-bit integer
muted_participants_handle_list_14 muted_participants_handle_list_14
Signed 32-bit integer
muted_participants_handle_list_140 muted_participants_handle_list_140
Signed 32-bit integer
muted_participants_handle_list_141 muted_participants_handle_list_141
Signed 32-bit integer
muted_participants_handle_list_142 muted_participants_handle_list_142
Signed 32-bit integer
muted_participants_handle_list_143 muted_participants_handle_list_143
Signed 32-bit integer
muted_participants_handle_list_144 muted_participants_handle_list_144
Signed 32-bit integer
muted_participants_handle_list_145 muted_participants_handle_list_145
Signed 32-bit integer
muted_participants_handle_list_146 muted_participants_handle_list_146
Signed 32-bit integer
muted_participants_handle_list_147 muted_participants_handle_list_147
Signed 32-bit integer
muted_participants_handle_list_148 muted_participants_handle_list_148
Signed 32-bit integer
muted_participants_handle_list_149 muted_participants_handle_list_149
Signed 32-bit integer
muted_participants_handle_list_15 muted_participants_handle_list_15
Signed 32-bit integer
muted_participants_handle_list_150 muted_participants_handle_list_150
Signed 32-bit integer
muted_participants_handle_list_151 muted_participants_handle_list_151
Signed 32-bit integer
muted_participants_handle_list_152 muted_participants_handle_list_152
Signed 32-bit integer
muted_participants_handle_list_153 muted_participants_handle_list_153
Signed 32-bit integer
muted_participants_handle_list_154 muted_participants_handle_list_154
Signed 32-bit integer
muted_participants_handle_list_155 muted_participants_handle_list_155
Signed 32-bit integer
muted_participants_handle_list_156 muted_participants_handle_list_156
Signed 32-bit integer
muted_participants_handle_list_157 muted_participants_handle_list_157
Signed 32-bit integer
muted_participants_handle_list_158 muted_participants_handle_list_158
Signed 32-bit integer
muted_participants_handle_list_159 muted_participants_handle_list_159
Signed 32-bit integer
muted_participants_handle_list_16 muted_participants_handle_list_16
Signed 32-bit integer
muted_participants_handle_list_160 muted_participants_handle_list_160
Signed 32-bit integer
muted_participants_handle_list_161 muted_participants_handle_list_161
Signed 32-bit integer
muted_participants_handle_list_162 muted_participants_handle_list_162
Signed 32-bit integer
muted_participants_handle_list_163 muted_participants_handle_list_163
Signed 32-bit integer
muted_participants_handle_list_164 muted_participants_handle_list_164
Signed 32-bit integer
muted_participants_handle_list_165 muted_participants_handle_list_165
Signed 32-bit integer
muted_participants_handle_list_166 muted_participants_handle_list_166
Signed 32-bit integer
muted_participants_handle_list_167 muted_participants_handle_list_167
Signed 32-bit integer
muted_participants_handle_list_168 muted_participants_handle_list_168
Signed 32-bit integer
muted_participants_handle_list_169 muted_participants_handle_list_169
Signed 32-bit integer
muted_participants_handle_list_17 muted_participants_handle_list_17
Signed 32-bit integer
muted_participants_handle_list_170 muted_participants_handle_list_170
Signed 32-bit integer
muted_participants_handle_list_171 muted_participants_handle_list_171
Signed 32-bit integer
muted_participants_handle_list_172 muted_participants_handle_list_172
Signed 32-bit integer
muted_participants_handle_list_173 muted_participants_handle_list_173
Signed 32-bit integer
muted_participants_handle_list_174 muted_participants_handle_list_174
Signed 32-bit integer
muted_participants_handle_list_175 muted_participants_handle_list_175
Signed 32-bit integer
muted_participants_handle_list_176 muted_participants_handle_list_176
Signed 32-bit integer
muted_participants_handle_list_177 muted_participants_handle_list_177
Signed 32-bit integer
muted_participants_handle_list_178 muted_participants_handle_list_178
Signed 32-bit integer
muted_participants_handle_list_179 muted_participants_handle_list_179
Signed 32-bit integer
muted_participants_handle_list_18 muted_participants_handle_list_18
Signed 32-bit integer
muted_participants_handle_list_180 muted_participants_handle_list_180
Signed 32-bit integer
muted_participants_handle_list_181 muted_participants_handle_list_181
Signed 32-bit integer
muted_participants_handle_list_182 muted_participants_handle_list_182
Signed 32-bit integer
muted_participants_handle_list_183 muted_participants_handle_list_183
Signed 32-bit integer
muted_participants_handle_list_184 muted_participants_handle_list_184
Signed 32-bit integer
muted_participants_handle_list_185 muted_participants_handle_list_185
Signed 32-bit integer
muted_participants_handle_list_186 muted_participants_handle_list_186
Signed 32-bit integer
muted_participants_handle_list_187 muted_participants_handle_list_187
Signed 32-bit integer
muted_participants_handle_list_188 muted_participants_handle_list_188
Signed 32-bit integer
muted_participants_handle_list_189 muted_participants_handle_list_189
Signed 32-bit integer
muted_participants_handle_list_19 muted_participants_handle_list_19
Signed 32-bit integer
muted_participants_handle_list_190 muted_participants_handle_list_190
Signed 32-bit integer
muted_participants_handle_list_191 muted_participants_handle_list_191
Signed 32-bit integer
muted_participants_handle_list_192 muted_participants_handle_list_192
Signed 32-bit integer
muted_participants_handle_list_193 muted_participants_handle_list_193
Signed 32-bit integer
muted_participants_handle_list_194 muted_participants_handle_list_194
Signed 32-bit integer
muted_participants_handle_list_195 muted_participants_handle_list_195
Signed 32-bit integer
muted_participants_handle_list_196 muted_participants_handle_list_196
Signed 32-bit integer
muted_participants_handle_list_197 muted_participants_handle_list_197
Signed 32-bit integer
muted_participants_handle_list_198 muted_participants_handle_list_198
Signed 32-bit integer
muted_participants_handle_list_199 muted_participants_handle_list_199
Signed 32-bit integer
muted_participants_handle_list_2 muted_participants_handle_list_2
Signed 32-bit integer
muted_participants_handle_list_20 muted_participants_handle_list_20
Signed 32-bit integer
muted_participants_handle_list_200 muted_participants_handle_list_200
Signed 32-bit integer
muted_participants_handle_list_201 muted_participants_handle_list_201
Signed 32-bit integer
muted_participants_handle_list_202 muted_participants_handle_list_202
Signed 32-bit integer
muted_participants_handle_list_203 muted_participants_handle_list_203
Signed 32-bit integer
muted_participants_handle_list_204 muted_participants_handle_list_204
Signed 32-bit integer
muted_participants_handle_list_205 muted_participants_handle_list_205
Signed 32-bit integer
muted_participants_handle_list_206 muted_participants_handle_list_206
Signed 32-bit integer
muted_participants_handle_list_207 muted_participants_handle_list_207
Signed 32-bit integer
muted_participants_handle_list_208 muted_participants_handle_list_208
Signed 32-bit integer
muted_participants_handle_list_209 muted_participants_handle_list_209
Signed 32-bit integer
muted_participants_handle_list_21 muted_participants_handle_list_21
Signed 32-bit integer
muted_participants_handle_list_210 muted_participants_handle_list_210
Signed 32-bit integer
muted_participants_handle_list_211 muted_participants_handle_list_211
Signed 32-bit integer
muted_participants_handle_list_212 muted_participants_handle_list_212
Signed 32-bit integer
muted_participants_handle_list_213 muted_participants_handle_list_213
Signed 32-bit integer
muted_participants_handle_list_214 muted_participants_handle_list_214
Signed 32-bit integer
muted_participants_handle_list_215 muted_participants_handle_list_215
Signed 32-bit integer
muted_participants_handle_list_216 muted_participants_handle_list_216
Signed 32-bit integer
muted_participants_handle_list_217 muted_participants_handle_list_217
Signed 32-bit integer
muted_participants_handle_list_218 muted_participants_handle_list_218
Signed 32-bit integer
muted_participants_handle_list_219 muted_participants_handle_list_219
Signed 32-bit integer
muted_participants_handle_list_22 muted_participants_handle_list_22
Signed 32-bit integer
muted_participants_handle_list_220 muted_participants_handle_list_220
Signed 32-bit integer
muted_participants_handle_list_221 muted_participants_handle_list_221
Signed 32-bit integer
muted_participants_handle_list_222 muted_participants_handle_list_222
Signed 32-bit integer
muted_participants_handle_list_223 muted_participants_handle_list_223
Signed 32-bit integer
muted_participants_handle_list_224 muted_participants_handle_list_224
Signed 32-bit integer
muted_participants_handle_list_225 muted_participants_handle_list_225
Signed 32-bit integer
muted_participants_handle_list_226 muted_participants_handle_list_226
Signed 32-bit integer
muted_participants_handle_list_227 muted_participants_handle_list_227
Signed 32-bit integer
muted_participants_handle_list_228 muted_participants_handle_list_228
Signed 32-bit integer
muted_participants_handle_list_229 muted_participants_handle_list_229
Signed 32-bit integer
muted_participants_handle_list_23 muted_participants_handle_list_23
Signed 32-bit integer
muted_participants_handle_list_230 muted_participants_handle_list_230
Signed 32-bit integer
muted_participants_handle_list_231 muted_participants_handle_list_231
Signed 32-bit integer
muted_participants_handle_list_232 muted_participants_handle_list_232
Signed 32-bit integer
muted_participants_handle_list_233 muted_participants_handle_list_233
Signed 32-bit integer
muted_participants_handle_list_234 muted_participants_handle_list_234
Signed 32-bit integer
muted_participants_handle_list_235 muted_participants_handle_list_235
Signed 32-bit integer
muted_participants_handle_list_236 muted_participants_handle_list_236
Signed 32-bit integer
muted_participants_handle_list_237 muted_participants_handle_list_237
Signed 32-bit integer
muted_participants_handle_list_238 muted_participants_handle_list_238
Signed 32-bit integer
muted_participants_handle_list_239 muted_participants_handle_list_239
Signed 32-bit integer
muted_participants_handle_list_24 muted_participants_handle_list_24
Signed 32-bit integer
muted_participants_handle_list_240 muted_participants_handle_list_240
Signed 32-bit integer
muted_participants_handle_list_241 muted_participants_handle_list_241
Signed 32-bit integer
muted_participants_handle_list_242 muted_participants_handle_list_242
Signed 32-bit integer
muted_participants_handle_list_243 muted_participants_handle_list_243
Signed 32-bit integer
muted_participants_handle_list_244 muted_participants_handle_list_244
Signed 32-bit integer
muted_participants_handle_list_245 muted_participants_handle_list_245
Signed 32-bit integer
muted_participants_handle_list_246 muted_participants_handle_list_246
Signed 32-bit integer
muted_participants_handle_list_247 muted_participants_handle_list_247
Signed 32-bit integer
muted_participants_handle_list_248 muted_participants_handle_list_248
Signed 32-bit integer
muted_participants_handle_list_249 muted_participants_handle_list_249
Signed 32-bit integer
muted_participants_handle_list_25 muted_participants_handle_list_25
Signed 32-bit integer
muted_participants_handle_list_250 muted_participants_handle_list_250
Signed 32-bit integer
muted_participants_handle_list_251 muted_participants_handle_list_251
Signed 32-bit integer
muted_participants_handle_list_252 muted_participants_handle_list_252
Signed 32-bit integer
muted_participants_handle_list_253 muted_participants_handle_list_253
Signed 32-bit integer
muted_participants_handle_list_254 muted_participants_handle_list_254
Signed 32-bit integer
muted_participants_handle_list_255 muted_participants_handle_list_255
Signed 32-bit integer
muted_participants_handle_list_26 muted_participants_handle_list_26
Signed 32-bit integer
muted_participants_handle_list_27 muted_participants_handle_list_27
Signed 32-bit integer
muted_participants_handle_list_28 muted_participants_handle_list_28
Signed 32-bit integer
muted_participants_handle_list_29 muted_participants_handle_list_29
Signed 32-bit integer
muted_participants_handle_list_3 muted_participants_handle_list_3
Signed 32-bit integer
muted_participants_handle_list_30 muted_participants_handle_list_30
Signed 32-bit integer
muted_participants_handle_list_31 muted_participants_handle_list_31
Signed 32-bit integer
muted_participants_handle_list_32 muted_participants_handle_list_32
Signed 32-bit integer
muted_participants_handle_list_33 muted_participants_handle_list_33
Signed 32-bit integer
muted_participants_handle_list_34 muted_participants_handle_list_34
Signed 32-bit integer
muted_participants_handle_list_35 muted_participants_handle_list_35
Signed 32-bit integer
muted_participants_handle_list_36 muted_participants_handle_list_36
Signed 32-bit integer
muted_participants_handle_list_37 muted_participants_handle_list_37
Signed 32-bit integer
muted_participants_handle_list_38 muted_participants_handle_list_38
Signed 32-bit integer
muted_participants_handle_list_39 muted_participants_handle_list_39
Signed 32-bit integer
muted_participants_handle_list_4 muted_participants_handle_list_4
Signed 32-bit integer
muted_participants_handle_list_40 muted_participants_handle_list_40
Signed 32-bit integer
muted_participants_handle_list_41 muted_participants_handle_list_41
Signed 32-bit integer
muted_participants_handle_list_42 muted_participants_handle_list_42
Signed 32-bit integer
muted_participants_handle_list_43 muted_participants_handle_list_43
Signed 32-bit integer
muted_participants_handle_list_44 muted_participants_handle_list_44
Signed 32-bit integer
muted_participants_handle_list_45 muted_participants_handle_list_45
Signed 32-bit integer
muted_participants_handle_list_46 muted_participants_handle_list_46
Signed 32-bit integer
muted_participants_handle_list_47 muted_participants_handle_list_47
Signed 32-bit integer
muted_participants_handle_list_48 muted_participants_handle_list_48
Signed 32-bit integer
muted_participants_handle_list_49 muted_participants_handle_list_49
Signed 32-bit integer
muted_participants_handle_list_5 muted_participants_handle_list_5
Signed 32-bit integer
muted_participants_handle_list_50 muted_participants_handle_list_50
Signed 32-bit integer
muted_participants_handle_list_51 muted_participants_handle_list_51
Signed 32-bit integer
muted_participants_handle_list_52 muted_participants_handle_list_52
Signed 32-bit integer
muted_participants_handle_list_53 muted_participants_handle_list_53
Signed 32-bit integer
muted_participants_handle_list_54 muted_participants_handle_list_54
Signed 32-bit integer
muted_participants_handle_list_55 muted_participants_handle_list_55
Signed 32-bit integer
muted_participants_handle_list_56 muted_participants_handle_list_56
Signed 32-bit integer
muted_participants_handle_list_57 muted_participants_handle_list_57
Signed 32-bit integer
muted_participants_handle_list_58 muted_participants_handle_list_58
Signed 32-bit integer
muted_participants_handle_list_59 muted_participants_handle_list_59
Signed 32-bit integer
muted_participants_handle_list_6 muted_participants_handle_list_6
Signed 32-bit integer
muted_participants_handle_list_60 muted_participants_handle_list_60
Signed 32-bit integer
muted_participants_handle_list_61 muted_participants_handle_list_61
Signed 32-bit integer
muted_participants_handle_list_62 muted_participants_handle_list_62
Signed 32-bit integer
muted_participants_handle_list_63 muted_participants_handle_list_63
Signed 32-bit integer
muted_participants_handle_list_64 muted_participants_handle_list_64
Signed 32-bit integer
muted_participants_handle_list_65 muted_participants_handle_list_65
Signed 32-bit integer
muted_participants_handle_list_66 muted_participants_handle_list_66
Signed 32-bit integer
muted_participants_handle_list_67 muted_participants_handle_list_67
Signed 32-bit integer
muted_participants_handle_list_68 muted_participants_handle_list_68
Signed 32-bit integer
muted_participants_handle_list_69 muted_participants_handle_list_69
Signed 32-bit integer
muted_participants_handle_list_7 muted_participants_handle_list_7
Signed 32-bit integer
muted_participants_handle_list_70 muted_participants_handle_list_70
Signed 32-bit integer
muted_participants_handle_list_71 muted_participants_handle_list_71
Signed 32-bit integer
muted_participants_handle_list_72 muted_participants_handle_list_72
Signed 32-bit integer
muted_participants_handle_list_73 muted_participants_handle_list_73
Signed 32-bit integer
muted_participants_handle_list_74 muted_participants_handle_list_74
Signed 32-bit integer
muted_participants_handle_list_75 muted_participants_handle_list_75
Signed 32-bit integer
muted_participants_handle_list_76 muted_participants_handle_list_76
Signed 32-bit integer
muted_participants_handle_list_77 muted_participants_handle_list_77
Signed 32-bit integer
muted_participants_handle_list_78 muted_participants_handle_list_78
Signed 32-bit integer
muted_participants_handle_list_79 muted_participants_handle_list_79
Signed 32-bit integer
muted_participants_handle_list_8 muted_participants_handle_list_8
Signed 32-bit integer
muted_participants_handle_list_80 muted_participants_handle_list_80
Signed 32-bit integer
muted_participants_handle_list_81 muted_participants_handle_list_81
Signed 32-bit integer
muted_participants_handle_list_82 muted_participants_handle_list_82
Signed 32-bit integer
muted_participants_handle_list_83 muted_participants_handle_list_83
Signed 32-bit integer
muted_participants_handle_list_84 muted_participants_handle_list_84
Signed 32-bit integer
muted_participants_handle_list_85 muted_participants_handle_list_85
Signed 32-bit integer
muted_participants_handle_list_86 muted_participants_handle_list_86
Signed 32-bit integer
muted_participants_handle_list_87 muted_participants_handle_list_87
Signed 32-bit integer
muted_participants_handle_list_88 muted_participants_handle_list_88
Signed 32-bit integer
muted_participants_handle_list_89 muted_participants_handle_list_89
Signed 32-bit integer
muted_participants_handle_list_9 muted_participants_handle_list_9
Signed 32-bit integer
muted_participants_handle_list_90 muted_participants_handle_list_90
Signed 32-bit integer
muted_participants_handle_list_91 muted_participants_handle_list_91
Signed 32-bit integer
muted_participants_handle_list_92 muted_participants_handle_list_92
Signed 32-bit integer
muted_participants_handle_list_93 muted_participants_handle_list_93
Signed 32-bit integer
muted_participants_handle_list_94 muted_participants_handle_list_94
Signed 32-bit integer
muted_participants_handle_list_95 muted_participants_handle_list_95
Signed 32-bit integer
muted_participants_handle_list_96 muted_participants_handle_list_96
Signed 32-bit integer
muted_participants_handle_list_97 muted_participants_handle_list_97
Signed 32-bit integer
muted_participants_handle_list_98 muted_participants_handle_list_98
Signed 32-bit integer
muted_participants_handle_list_99 muted_participants_handle_list_99
Signed 32-bit integer
nai nai
Signed 32-bit integer
name name
String
name_availability name_availability
Unsigned 8-bit integer
net_cause net_cause
Signed 32-bit integer
net_unreachable net_unreachable
Unsigned 32-bit integer
network_code network_code
String
network_indicator network_indicator
Signed 32-bit integer
network_status network_status
Signed 32-bit integer
network_system_message_status network_system_message_status
Unsigned 8-bit integer
network_type network_type
Unsigned 8-bit integer
new_admin_state new_admin_state
Signed 32-bit integer
new_clock_source new_clock_source
Signed 32-bit integer
new_clock_state new_clock_state
Signed 32-bit integer
new_lock_clock_source new_lock_clock_source
Signed 32-bit integer
new_state new_state
Signed 32-bit integer
ni ni
Signed 32-bit integer
nmarc nmarc
Unsigned 16-bit integer
no_input_timeout no_input_timeout
Signed 32-bit integer
no_of_channels no_of_channels
Signed 32-bit integer
no_of_mgc no_of_mgc
Signed 32-bit integer
no_operation_interval no_operation_interval
Signed 32-bit integer
no_operation_sending_mode no_operation_sending_mode
Signed 32-bit integer
node_connection_info node_connection_info
Signed 32-bit integer
node_connection_status node_connection_status
Signed 32-bit integer
node_id node_id
Signed 32-bit integer
noise_level noise_level
Unsigned 8-bit integer
noise_reduction_activation_direction noise_reduction_activation_direction
Unsigned 8-bit integer
noise_reduction_intensity noise_reduction_intensity
Unsigned 8-bit integer
noise_suppression_enable noise_suppression_enable
Signed 32-bit integer
noisy_environment_mode noisy_environment_mode
Signed 32-bit integer
non_notification_reason non_notification_reason
Signed 32-bit integer
normal_cmd normal_cmd
Signed 32-bit integer
not_used not_used
Signed 32-bit integer
notify_indicator_description notify_indicator_description
Signed 32-bit integer
notify_indicator_ext_size notify_indicator_ext_size
Signed 32-bit integer
notify_indicator_present notify_indicator_present
Signed 32-bit integer
nsap_address nsap_address
String
nse_mode nse_mode
Unsigned 8-bit integer
nse_payload_type nse_payload_type
Unsigned 8-bit integer
nte_max_duration nte_max_duration
Signed 32-bit integer
ntt_called_numbering_plan_identifier ntt_called_numbering_plan_identifier
String
ntt_called_type_of_number ntt_called_type_of_number
Unsigned 8-bit integer
ntt_direct_inward_dialing_signalling_form ntt_direct_inward_dialing_signalling_form
Signed 32-bit integer
num_active num_active
Signed 32-bit integer
num_active_to_nw num_active_to_nw
Signed 32-bit integer
num_attempts num_attempts
Unsigned 32-bit integer
num_broken num_broken
Signed 32-bit integer
num_changes num_changes
Signed 32-bit integer
num_cmd_processed num_cmd_processed
Signed 32-bit integer
num_data num_data
Signed 32-bit integer
num_digits num_digits
Signed 32-bit integer
num_djb_errors num_djb_errors
Signed 32-bit integer
num_error_info_msg num_error_info_msg
Signed 32-bit integer
num_fax num_fax
Signed 32-bit integer
num_of_active_conferences num_of_active_conferences
Signed 32-bit integer
num_of_active_participants num_of_active_participants
Signed 32-bit integer
num_of_active_speakers num_of_active_speakers
Signed 32-bit integer
num_of_added_voice_prompts num_of_added_voice_prompts
Signed 32-bit integer
num_of_analog_channels num_of_analog_channels
Signed 32-bit integer
num_of_announcements num_of_announcements
Signed 32-bit integer
num_of_cid num_of_cid
Signed 16-bit integer
num_of_components num_of_components
Signed 32-bit integer
num_of_listener_only_participants num_of_listener_only_participants
Signed 32-bit integer
num_of_muted_participants num_of_muted_participants
Signed 32-bit integer
num_of_participants num_of_participants
Signed 32-bit integer
num_of_pulses num_of_pulses
Signed 32-bit integer
num_ports num_ports
Signed 32-bit integer
num_rx_packet num_rx_packet
Signed 32-bit integer
num_status_sent num_status_sent
Signed 32-bit integer
num_tx_packet num_tx_packet
Signed 32-bit integer
num_voice_prompts num_voice_prompts
Signed 32-bit integer
number number
String
number_availability number_availability
Unsigned 8-bit integer
number_of_bit_reports number_of_bit_reports
Signed 32-bit integer
number_of_channels number_of_channels
String
number_of_connections number_of_connections
Unsigned 32-bit integer
number_of_errors number_of_errors
Signed 32-bit integer
number_of_fax_pages number_of_fax_pages
Signed 32-bit integer
number_of_fax_pages_so_far number_of_fax_pages_so_far
Signed 32-bit integer
number_of_rfci number_of_rfci
Unsigned 8-bit integer
number_of_trunks number_of_trunks
Signed 32-bit integer
numbering_plan_identifier numbering_plan_identifier
String
oam_type oam_type
Signed 32-bit integer
occupied occupied
Signed 32-bit integer
octet_count octet_count
Unsigned 32-bit integer
offset offset
Signed 32-bit integer
old_clock_state old_clock_state
Signed 32-bit integer
old_lock_clock_source old_lock_clock_source
Signed 32-bit integer
old_remote_rtcpip_add old_remote_rtcpip_add
Unsigned 32-bit integer
old_remote_rtpip_addr old_remote_rtpip_addr
Signed 32-bit integer
old_remote_t38ip_addr old_remote_t38ip_addr
Signed 32-bit integer
old_state old_state
Signed 32-bit integer
old_video_conference_switching_interval old_video_conference_switching_interval
Signed 32-bit integer
old_video_enable_active_speaker_highlight old_video_enable_active_speaker_highlight
Signed 32-bit integer
old_voice_prompt_repository_id old_voice_prompt_repository_id
Signed 32-bit integer
opc opc
Unsigned 32-bit integer
open_channel_spare1 open_channel_spare1
Unsigned 8-bit integer
open_channel_spare2 open_channel_spare2
Unsigned 8-bit integer
open_channel_spare3 open_channel_spare3
Unsigned 8-bit integer
open_channel_spare4 open_channel_spare4
Unsigned 8-bit integer
open_channel_spare5 open_channel_spare5
Unsigned 8-bit integer
open_channel_spare6 open_channel_spare6
Unsigned 8-bit integer
open_channel_without_dsp open_channel_without_dsp
Unsigned 8-bit integer
oper_state oper_state
Signed 32-bit integer
operational_state operational_state
Signed 32-bit integer
origin origin
Signed 32-bit integer
originating_line_information originating_line_information
Signed 32-bit integer
osc_speed osc_speed
Signed 32-bit integer
other_call_conn_id other_call_conn_id
Signed 32-bit integer
other_call_handle other_call_handle
Signed 32-bit integer
other_call_trunk_id other_call_trunk_id
Signed 32-bit integer
out_of_farme out_of_farme
Signed 32-bit integer
out_of_frame out_of_frame
Signed 32-bit integer
out_of_frame_counter out_of_frame_counter
Unsigned 16-bit integer
out_of_service out_of_service
Signed 32-bit integer
output output
String
output_gain output_gain
Signed 32-bit integer
output_port_0 output_port_0
Unsigned 8-bit integer
output_port_state_0 output_port_state_0
Signed 32-bit integer
output_port_state_1 output_port_state_1
Signed 32-bit integer
output_port_state_2 output_port_state_2
Signed 32-bit integer
output_port_state_3 output_port_state_3
Signed 32-bit integer
output_port_state_4 output_port_state_4
Signed 32-bit integer
output_port_state_5 output_port_state_5
Signed 32-bit integer
output_port_state_6 output_port_state_6
Signed 32-bit integer
output_port_state_7 output_port_state_7
Signed 32-bit integer
output_port_state_8 output_port_state_8
Signed 32-bit integer
output_port_state_9 output_port_state_9
Signed 32-bit integer
output_tdm_bus output_tdm_bus
Unsigned 16-bit integer
output_time_slot_0 output_time_slot_0
Unsigned 16-bit integer
overlap_digits overlap_digits
String
override_connections override_connections
Signed 32-bit integer
overwrite overwrite
Signed 32-bit integer
ovlp_digit_string ovlp_digit_string
String
p_ais p_ais
Signed 32-bit integer
p_rdi p_rdi
Signed 32-bit integer
packet_cable_call_content_connection_id packet_cable_call_content_connection_id
Signed 32-bit integer
packet_count packet_count
Unsigned 32-bit integer
packet_counter packet_counter
Unsigned 32-bit integer
pad1 pad1
Unsigned 8-bit integer
pad2 pad2
String
pad3 pad3
Unsigned 8-bit integer
pad4 pad4
String
pad_key pad_key
String
padding padding
String
param1 param1
Signed 32-bit integer
param2 param2
Signed 32-bit integer
param3 param3
Signed 32-bit integer
param4 param4
Signed 32-bit integer
parameter_id parameter_id
Signed 16-bit integer
partial_response partial_response
Unsigned 8-bit integer
participant_handle participant_handle
Signed 32-bit integer
participant_id participant_id
Signed 32-bit integer
participant_source participant_source
Signed 32-bit integer
participant_type participant_type
Signed 32-bit integer
participants_handle_list_0 participants_handle_list_0
Signed 32-bit integer
participants_handle_list_1 participants_handle_list_1
Signed 32-bit integer
participants_handle_list_10 participants_handle_list_10
Signed 32-bit integer
participants_handle_list_100 participants_handle_list_100
Signed 32-bit integer
participants_handle_list_101 participants_handle_list_101
Signed 32-bit integer
participants_handle_list_102 participants_handle_list_102
Signed 32-bit integer
participants_handle_list_103 participants_handle_list_103
Signed 32-bit integer
participants_handle_list_104 participants_handle_list_104
Signed 32-bit integer
participants_handle_list_105 participants_handle_list_105
Signed 32-bit integer
participants_handle_list_106 participants_handle_list_106
Signed 32-bit integer
participants_handle_list_107 participants_handle_list_107
Signed 32-bit integer
participants_handle_list_108 participants_handle_list_108
Signed 32-bit integer
participants_handle_list_109 participants_handle_list_109
Signed 32-bit integer
participants_handle_list_11 participants_handle_list_11
Signed 32-bit integer
participants_handle_list_110 participants_handle_list_110
Signed 32-bit integer
participants_handle_list_111 participants_handle_list_111
Signed 32-bit integer
participants_handle_list_112 participants_handle_list_112
Signed 32-bit integer
participants_handle_list_113 participants_handle_list_113
Signed 32-bit integer
participants_handle_list_114 participants_handle_list_114
Signed 32-bit integer
participants_handle_list_115 participants_handle_list_115
Signed 32-bit integer
participants_handle_list_116 participants_handle_list_116
Signed 32-bit integer
participants_handle_list_117 participants_handle_list_117
Signed 32-bit integer
participants_handle_list_118 participants_handle_list_118
Signed 32-bit integer
participants_handle_list_119 participants_handle_list_119
Signed 32-bit integer
participants_handle_list_12 participants_handle_list_12
Signed 32-bit integer
participants_handle_list_120 participants_handle_list_120
Signed 32-bit integer
participants_handle_list_121 participants_handle_list_121
Signed 32-bit integer
participants_handle_list_122 participants_handle_list_122
Signed 32-bit integer
participants_handle_list_123 participants_handle_list_123
Signed 32-bit integer
participants_handle_list_124 participants_handle_list_124
Signed 32-bit integer
participants_handle_list_125 participants_handle_list_125
Signed 32-bit integer
participants_handle_list_126 participants_handle_list_126
Signed 32-bit integer
participants_handle_list_127 participants_handle_list_127
Signed 32-bit integer
participants_handle_list_128 participants_handle_list_128
Signed 32-bit integer
participants_handle_list_129 participants_handle_list_129
Signed 32-bit integer
participants_handle_list_13 participants_handle_list_13
Signed 32-bit integer
participants_handle_list_130 participants_handle_list_130
Signed 32-bit integer
participants_handle_list_131 participants_handle_list_131
Signed 32-bit integer
participants_handle_list_132 participants_handle_list_132
Signed 32-bit integer
participants_handle_list_133 participants_handle_list_133
Signed 32-bit integer
participants_handle_list_134 participants_handle_list_134
Signed 32-bit integer
participants_handle_list_135 participants_handle_list_135
Signed 32-bit integer
participants_handle_list_136 participants_handle_list_136
Signed 32-bit integer
participants_handle_list_137 participants_handle_list_137
Signed 32-bit integer
participants_handle_list_138 participants_handle_list_138
Signed 32-bit integer
participants_handle_list_139 participants_handle_list_139
Signed 32-bit integer
participants_handle_list_14 participants_handle_list_14
Signed 32-bit integer
participants_handle_list_140 participants_handle_list_140
Signed 32-bit integer
participants_handle_list_141 participants_handle_list_141
Signed 32-bit integer
participants_handle_list_142 participants_handle_list_142
Signed 32-bit integer
participants_handle_list_143 participants_handle_list_143
Signed 32-bit integer
participants_handle_list_144 participants_handle_list_144
Signed 32-bit integer
participants_handle_list_145 participants_handle_list_145
Signed 32-bit integer
participants_handle_list_146 participants_handle_list_146
Signed 32-bit integer
participants_handle_list_147 participants_handle_list_147
Signed 32-bit integer
participants_handle_list_148 participants_handle_list_148
Signed 32-bit integer
participants_handle_list_149 participants_handle_list_149
Signed 32-bit integer
participants_handle_list_15 participants_handle_list_15
Signed 32-bit integer
participants_handle_list_150 participants_handle_list_150
Signed 32-bit integer
participants_handle_list_151 participants_handle_list_151
Signed 32-bit integer
participants_handle_list_152 participants_handle_list_152
Signed 32-bit integer
participants_handle_list_153 participants_handle_list_153
Signed 32-bit integer
participants_handle_list_154 participants_handle_list_154
Signed 32-bit integer
participants_handle_list_155 participants_handle_list_155
Signed 32-bit integer
participants_handle_list_156 participants_handle_list_156
Signed 32-bit integer
participants_handle_list_157 participants_handle_list_157
Signed 32-bit integer
participants_handle_list_158 participants_handle_list_158
Signed 32-bit integer
participants_handle_list_159 participants_handle_list_159
Signed 32-bit integer
participants_handle_list_16 participants_handle_list_16
Signed 32-bit integer
participants_handle_list_160 participants_handle_list_160
Signed 32-bit integer
participants_handle_list_161 participants_handle_list_161
Signed 32-bit integer
participants_handle_list_162 participants_handle_list_162
Signed 32-bit integer
participants_handle_list_163 participants_handle_list_163
Signed 32-bit integer
participants_handle_list_164 participants_handle_list_164
Signed 32-bit integer
participants_handle_list_165 participants_handle_list_165
Signed 32-bit integer
participants_handle_list_166 participants_handle_list_166
Signed 32-bit integer
participants_handle_list_167 participants_handle_list_167
Signed 32-bit integer
participants_handle_list_168 participants_handle_list_168
Signed 32-bit integer
participants_handle_list_169 participants_handle_list_169
Signed 32-bit integer
participants_handle_list_17 participants_handle_list_17
Signed 32-bit integer
participants_handle_list_170 participants_handle_list_170
Signed 32-bit integer
participants_handle_list_171 participants_handle_list_171
Signed 32-bit integer
participants_handle_list_172 participants_handle_list_172
Signed 32-bit integer
participants_handle_list_173 participants_handle_list_173
Signed 32-bit integer
participants_handle_list_174 participants_handle_list_174
Signed 32-bit integer
participants_handle_list_175 participants_handle_list_175
Signed 32-bit integer
participants_handle_list_176 participants_handle_list_176
Signed 32-bit integer
participants_handle_list_177 participants_handle_list_177
Signed 32-bit integer
participants_handle_list_178 participants_handle_list_178
Signed 32-bit integer
participants_handle_list_179 participants_handle_list_179
Signed 32-bit integer
participants_handle_list_18 participants_handle_list_18
Signed 32-bit integer
participants_handle_list_180 participants_handle_list_180
Signed 32-bit integer
participants_handle_list_181 participants_handle_list_181
Signed 32-bit integer
participants_handle_list_182 participants_handle_list_182
Signed 32-bit integer
participants_handle_list_183 participants_handle_list_183
Signed 32-bit integer
participants_handle_list_184 participants_handle_list_184
Signed 32-bit integer
participants_handle_list_185 participants_handle_list_185
Signed 32-bit integer
participants_handle_list_186 participants_handle_list_186
Signed 32-bit integer
participants_handle_list_187 participants_handle_list_187
Signed 32-bit integer
participants_handle_list_188 participants_handle_list_188
Signed 32-bit integer
participants_handle_list_189 participants_handle_list_189
Signed 32-bit integer
participants_handle_list_19 participants_handle_list_19
Signed 32-bit integer
participants_handle_list_190 participants_handle_list_190
Signed 32-bit integer
participants_handle_list_191 participants_handle_list_191
Signed 32-bit integer
participants_handle_list_192 participants_handle_list_192
Signed 32-bit integer
participants_handle_list_193 participants_handle_list_193
Signed 32-bit integer
participants_handle_list_194 participants_handle_list_194
Signed 32-bit integer
participants_handle_list_195 participants_handle_list_195
Signed 32-bit integer
participants_handle_list_196 participants_handle_list_196
Signed 32-bit integer
participants_handle_list_197 participants_handle_list_197
Signed 32-bit integer
participants_handle_list_198 participants_handle_list_198
Signed 32-bit integer
participants_handle_list_199 participants_handle_list_199
Signed 32-bit integer
participants_handle_list_2 participants_handle_list_2
Signed 32-bit integer
participants_handle_list_20 participants_handle_list_20
Signed 32-bit integer
participants_handle_list_200 participants_handle_list_200
Signed 32-bit integer
participants_handle_list_201 participants_handle_list_201
Signed 32-bit integer
participants_handle_list_202 participants_handle_list_202
Signed 32-bit integer
participants_handle_list_203 participants_handle_list_203
Signed 32-bit integer
participants_handle_list_204 participants_handle_list_204
Signed 32-bit integer
participants_handle_list_205 participants_handle_list_205
Signed 32-bit integer
participants_handle_list_206 participants_handle_list_206
Signed 32-bit integer
participants_handle_list_207 participants_handle_list_207
Signed 32-bit integer
participants_handle_list_208 participants_handle_list_208
Signed 32-bit integer
participants_handle_list_209 participants_handle_list_209
Signed 32-bit integer
participants_handle_list_21 participants_handle_list_21
Signed 32-bit integer
participants_handle_list_210 participants_handle_list_210
Signed 32-bit integer
participants_handle_list_211 participants_handle_list_211
Signed 32-bit integer
participants_handle_list_212 participants_handle_list_212
Signed 32-bit integer
participants_handle_list_213 participants_handle_list_213
Signed 32-bit integer
participants_handle_list_214 participants_handle_list_214
Signed 32-bit integer
participants_handle_list_215 participants_handle_list_215
Signed 32-bit integer
participants_handle_list_216 participants_handle_list_216
Signed 32-bit integer
participants_handle_list_217 participants_handle_list_217
Signed 32-bit integer
participants_handle_list_218 participants_handle_list_218
Signed 32-bit integer
participants_handle_list_219 participants_handle_list_219
Signed 32-bit integer
participants_handle_list_22 participants_handle_list_22
Signed 32-bit integer
participants_handle_list_220 participants_handle_list_220
Signed 32-bit integer
participants_handle_list_221 participants_handle_list_221
Signed 32-bit integer
participants_handle_list_222 participants_handle_list_222
Signed 32-bit integer
participants_handle_list_223 participants_handle_list_223
Signed 32-bit integer
participants_handle_list_224 participants_handle_list_224
Signed 32-bit integer
participants_handle_list_225 participants_handle_list_225
Signed 32-bit integer
participants_handle_list_226 participants_handle_list_226
Signed 32-bit integer
participants_handle_list_227 participants_handle_list_227
Signed 32-bit integer
participants_handle_list_228 participants_handle_list_228
Signed 32-bit integer
participants_handle_list_229 participants_handle_list_229
Signed 32-bit integer
participants_handle_list_23 participants_handle_list_23
Signed 32-bit integer
participants_handle_list_230 participants_handle_list_230
Signed 32-bit integer
participants_handle_list_231 participants_handle_list_231
Signed 32-bit integer
participants_handle_list_232 participants_handle_list_232
Signed 32-bit integer
participants_handle_list_233 participants_handle_list_233
Signed 32-bit integer
participants_handle_list_234 participants_handle_list_234
Signed 32-bit integer
participants_handle_list_235 participants_handle_list_235
Signed 32-bit integer
participants_handle_list_236 participants_handle_list_236
Signed 32-bit integer
participants_handle_list_237 participants_handle_list_237
Signed 32-bit integer
participants_handle_list_238 participants_handle_list_238
Signed 32-bit integer
participants_handle_list_239 participants_handle_list_239
Signed 32-bit integer
participants_handle_list_24 participants_handle_list_24
Signed 32-bit integer
participants_handle_list_240 participants_handle_list_240
Signed 32-bit integer
participants_handle_list_241 participants_handle_list_241
Signed 32-bit integer
participants_handle_list_242 participants_handle_list_242
Signed 32-bit integer
participants_handle_list_243 participants_handle_list_243
Signed 32-bit integer
participants_handle_list_244 participants_handle_list_244
Signed 32-bit integer
participants_handle_list_245 participants_handle_list_245
Signed 32-bit integer
participants_handle_list_246 participants_handle_list_246
Signed 32-bit integer
participants_handle_list_247 participants_handle_list_247
Signed 32-bit integer
participants_handle_list_248 participants_handle_list_248
Signed 32-bit integer
participants_handle_list_249 participants_handle_list_249
Signed 32-bit integer
participants_handle_list_25 participants_handle_list_25
Signed 32-bit integer
participants_handle_list_250 participants_handle_list_250
Signed 32-bit integer
participants_handle_list_251 participants_handle_list_251
Signed 32-bit integer
participants_handle_list_252 participants_handle_list_252
Signed 32-bit integer
participants_handle_list_253 participants_handle_list_253
Signed 32-bit integer
participants_handle_list_254 participants_handle_list_254
Signed 32-bit integer
participants_handle_list_255 participants_handle_list_255
Signed 32-bit integer
participants_handle_list_26 participants_handle_list_26
Signed 32-bit integer
participants_handle_list_27 participants_handle_list_27
Signed 32-bit integer
participants_handle_list_28 participants_handle_list_28
Signed 32-bit integer
participants_handle_list_29 participants_handle_list_29
Signed 32-bit integer
participants_handle_list_3 participants_handle_list_3
Signed 32-bit integer
participants_handle_list_30 participants_handle_list_30
Signed 32-bit integer
participants_handle_list_31 participants_handle_list_31
Signed 32-bit integer
participants_handle_list_32 participants_handle_list_32
Signed 32-bit integer
participants_handle_list_33 participants_handle_list_33
Signed 32-bit integer
participants_handle_list_34 participants_handle_list_34
Signed 32-bit integer
participants_handle_list_35 participants_handle_list_35
Signed 32-bit integer
participants_handle_list_36 participants_handle_list_36
Signed 32-bit integer
participants_handle_list_37 participants_handle_list_37
Signed 32-bit integer
participants_handle_list_38 participants_handle_list_38
Signed 32-bit integer
participants_handle_list_39 participants_handle_list_39
Signed 32-bit integer
participants_handle_list_4 participants_handle_list_4
Signed 32-bit integer
participants_handle_list_40 participants_handle_list_40
Signed 32-bit integer
participants_handle_list_41 participants_handle_list_41
Signed 32-bit integer
participants_handle_list_42 participants_handle_list_42
Signed 32-bit integer
participants_handle_list_43 participants_handle_list_43
Signed 32-bit integer
participants_handle_list_44 participants_handle_list_44
Signed 32-bit integer
participants_handle_list_45 participants_handle_list_45
Signed 32-bit integer
participants_handle_list_46 participants_handle_list_46
Signed 32-bit integer
participants_handle_list_47 participants_handle_list_47
Signed 32-bit integer
participants_handle_list_48 participants_handle_list_48
Signed 32-bit integer
participants_handle_list_49 participants_handle_list_49
Signed 32-bit integer
participants_handle_list_5 participants_handle_list_5
Signed 32-bit integer
participants_handle_list_50 participants_handle_list_50
Signed 32-bit integer
participants_handle_list_51 participants_handle_list_51
Signed 32-bit integer
participants_handle_list_52 participants_handle_list_52
Signed 32-bit integer
participants_handle_list_53 participants_handle_list_53
Signed 32-bit integer
participants_handle_list_54 participants_handle_list_54
Signed 32-bit integer
participants_handle_list_55 participants_handle_list_55
Signed 32-bit integer
participants_handle_list_56 participants_handle_list_56
Signed 32-bit integer
participants_handle_list_57 participants_handle_list_57
Signed 32-bit integer
participants_handle_list_58 participants_handle_list_58
Signed 32-bit integer
participants_handle_list_59 participants_handle_list_59
Signed 32-bit integer
participants_handle_list_6 participants_handle_list_6
Signed 32-bit integer
participants_handle_list_60 participants_handle_list_60
Signed 32-bit integer
participants_handle_list_61 participants_handle_list_61
Signed 32-bit integer
participants_handle_list_62 participants_handle_list_62
Signed 32-bit integer
participants_handle_list_63 participants_handle_list_63
Signed 32-bit integer
participants_handle_list_64 participants_handle_list_64
Signed 32-bit integer
participants_handle_list_65 participants_handle_list_65
Signed 32-bit integer
participants_handle_list_66 participants_handle_list_66
Signed 32-bit integer
participants_handle_list_67 participants_handle_list_67
Signed 32-bit integer
participants_handle_list_68 participants_handle_list_68
Signed 32-bit integer
participants_handle_list_69 participants_handle_list_69
Signed 32-bit integer
participants_handle_list_7 participants_handle_list_7
Signed 32-bit integer
participants_handle_list_70 participants_handle_list_70
Signed 32-bit integer
participants_handle_list_71 participants_handle_list_71
Signed 32-bit integer
participants_handle_list_72 participants_handle_list_72
Signed 32-bit integer
participants_handle_list_73 participants_handle_list_73
Signed 32-bit integer
participants_handle_list_74 participants_handle_list_74
Signed 32-bit integer
participants_handle_list_75 participants_handle_list_75
Signed 32-bit integer
participants_handle_list_76 participants_handle_list_76
Signed 32-bit integer
participants_handle_list_77 participants_handle_list_77
Signed 32-bit integer
participants_handle_list_78 participants_handle_list_78
Signed 32-bit integer
participants_handle_list_79 participants_handle_list_79
Signed 32-bit integer
participants_handle_list_8 participants_handle_list_8
Signed 32-bit integer
participants_handle_list_80 participants_handle_list_80
Signed 32-bit integer
participants_handle_list_81 participants_handle_list_81
Signed 32-bit integer
participants_handle_list_82 participants_handle_list_82
Signed 32-bit integer
participants_handle_list_83 participants_handle_list_83
Signed 32-bit integer
participants_handle_list_84 participants_handle_list_84
Signed 32-bit integer
participants_handle_list_85 participants_handle_list_85
Signed 32-bit integer
participants_handle_list_86 participants_handle_list_86
Signed 32-bit integer
participants_handle_list_87 participants_handle_list_87
Signed 32-bit integer
participants_handle_list_88 participants_handle_list_88
Signed 32-bit integer
participants_handle_list_89 participants_handle_list_89
Signed 32-bit integer
participants_handle_list_9 participants_handle_list_9
Signed 32-bit integer
participants_handle_list_90 participants_handle_list_90
Signed 32-bit integer
participants_handle_list_91 participants_handle_list_91
Signed 32-bit integer
participants_handle_list_92 participants_handle_list_92
Signed 32-bit integer
participants_handle_list_93 participants_handle_list_93
Signed 32-bit integer
participants_handle_list_94 participants_handle_list_94
Signed 32-bit integer
participants_handle_list_95 participants_handle_list_95
Signed 32-bit integer
participants_handle_list_96 participants_handle_list_96
Signed 32-bit integer
participants_handle_list_97 participants_handle_list_97
Signed 32-bit integer
participants_handle_list_98 participants_handle_list_98
Signed 32-bit integer
participants_handle_list_99 participants_handle_list_99
Signed 32-bit integer
path_coding_violation path_coding_violation
Signed 32-bit integer
path_failed path_failed
Signed 32-bit integer
pattern pattern
Unsigned 32-bit integer
pattern_detector_cmd pattern_detector_cmd
Signed 32-bit integer
pattern_expected pattern_expected
Unsigned 8-bit integer
pattern_index pattern_index
Signed 32-bit integer
pattern_received pattern_received
Unsigned 8-bit integer
patterns patterns
String
payload payload
String
payload_length payload_length
Unsigned 16-bit integer
payload_type_0 payload_type_0
Signed 32-bit integer
payload_type_1 payload_type_1
Signed 32-bit integer
payload_type_2 payload_type_2
Signed 32-bit integer
payload_type_3 payload_type_3
Signed 32-bit integer
payload_type_4 payload_type_4
Signed 32-bit integer
pcm_coder_type pcm_coder_type
Unsigned 8-bit integer
pcm_switch_bit_return_code pcm_switch_bit_return_code
Signed 32-bit integer
pcm_sync_fail_number pcm_sync_fail_number
Signed 32-bit integer
pcr pcr
Signed 32-bit integer
peer_info_ip_dst_addr peer_info_ip_dst_addr
Unsigned 32-bit integer
peer_info_udp_dst_port peer_info_udp_dst_port
Unsigned 16-bit integer
performance_monitoring_element performance_monitoring_element
Signed 32-bit integer
performance_monitoring_enable performance_monitoring_enable
Signed 32-bit integer
performance_monitoring_interval performance_monitoring_interval
Signed 32-bit integer
performance_monitoring_state performance_monitoring_state
Signed 32-bit integer
pfe pfe
Signed 32-bit integer
phy_test_bit_return_code phy_test_bit_return_code
Signed 32-bit integer
phys_channel phys_channel
Signed 32-bit integer
phys_core_num phys_core_num
Signed 32-bit integer
physical_link_status physical_link_status
Signed 32-bit integer
physical_link_type physical_link_type
Signed 32-bit integer
plan plan
Signed 32-bit integer
play_bytes_processed play_bytes_processed
Unsigned 32-bit integer
play_coder play_coder
Signed 32-bit integer
play_timing play_timing
Unsigned 8-bit integer
playing_time playing_time
Signed 32-bit integer
plm plm
Signed 32-bit integer
polarity_status polarity_status
Signed 32-bit integer
port port
Unsigned 8-bit integer
port_activity_mode_0 port_activity_mode_0
Signed 32-bit integer
port_activity_mode_1 port_activity_mode_1
Signed 32-bit integer
port_activity_mode_2 port_activity_mode_2
Signed 32-bit integer
port_activity_mode_3 port_activity_mode_3
Signed 32-bit integer
port_activity_mode_4 port_activity_mode_4
Signed 32-bit integer
port_activity_mode_5 port_activity_mode_5
Signed 32-bit integer
port_control_command port_control_command
Signed 32-bit integer
port_id port_id
Unsigned 32-bit integer
port_id_0 port_id_0
Unsigned 32-bit integer
port_id_1 port_id_1
Unsigned 32-bit integer
port_id_2 port_id_2
Unsigned 32-bit integer
port_id_3 port_id_3
Unsigned 32-bit integer
port_id_4 port_id_4
Unsigned 32-bit integer
port_id_5 port_id_5
Unsigned 32-bit integer
port_speed_0 port_speed_0
Signed 32-bit integer
port_speed_1 port_speed_1
Signed 32-bit integer
port_speed_2 port_speed_2
Signed 32-bit integer
port_speed_3 port_speed_3
Signed 32-bit integer
port_speed_4 port_speed_4
Signed 32-bit integer
port_speed_5 port_speed_5
Signed 32-bit integer
port_type port_type
Signed 32-bit integer
port_unreachable port_unreachable
Unsigned 32-bit integer
port_user_mode_0 port_user_mode_0
Signed 32-bit integer
port_user_mode_1 port_user_mode_1
Signed 32-bit integer
port_user_mode_2 port_user_mode_2
Signed 32-bit integer
port_user_mode_3 port_user_mode_3
Signed 32-bit integer
port_user_mode_4 port_user_mode_4
Signed 32-bit integer
port_user_mode_5 port_user_mode_5
Signed 32-bit integer
post_speech_timer post_speech_timer
Signed 32-bit integer
pre_speech_timer pre_speech_timer
Signed 32-bit integer
prerecorded_tone_hdr prerecorded_tone_hdr
String
presentation presentation
Signed 32-bit integer
primary_clock_source primary_clock_source
Signed 32-bit integer
primary_clock_source_status primary_clock_source_status
Signed 32-bit integer
primary_language primary_language
Signed 32-bit integer
profile_entry profile_entry
Unsigned 8-bit integer
profile_group profile_group
Unsigned 8-bit integer
profile_id profile_id
Unsigned 8-bit integer
progress_cause progress_cause
Signed 32-bit integer
progress_ind progress_ind
Signed 32-bit integer
progress_ind_description progress_ind_description
Signed 32-bit integer
progress_ind_location progress_ind_location
Signed 32-bit integer
prompt_timer prompt_timer
Signed 16-bit integer
protection_dl1_error protection_dl1_error
Signed 32-bit integer
protection_dl2_error protection_dl2_error
Signed 32-bit integer
protocol_parameter_duration_type protocol_parameter_duration_type
Signed 32-bit integer
protocol_parameter_signal_type protocol_parameter_signal_type
Signed 32-bit integer
protocol_unreachable protocol_unreachable
Unsigned 32-bit integer
pstn_protocol_data_link_error pstn_protocol_data_link_error
Signed 32-bit integer
pstn_stack_message_add_or_conn_id pstn_stack_message_add_or_conn_id
Signed 32-bit integer
pstn_stack_message_code pstn_stack_message_code
Signed 32-bit integer
pstn_stack_message_data pstn_stack_message_data
String
pstn_stack_message_data_size pstn_stack_message_data_size
Signed 32-bit integer
pstn_stack_message_from pstn_stack_message_from
Signed 32-bit integer
pstn_stack_message_inf0 pstn_stack_message_inf0
Signed 32-bit integer
pstn_stack_message_nai pstn_stack_message_nai
Signed 32-bit integer
pstn_stack_message_sapi pstn_stack_message_sapi
Signed 32-bit integer
pstn_stack_message_to pstn_stack_message_to
Signed 32-bit integer
pstn_state pstn_state
Signed 32-bit integer
pstn_trunk_bchannels_status_0 pstn_trunk_bchannels_status_0
Signed 32-bit integer
pstn_trunk_bchannels_status_1 pstn_trunk_bchannels_status_1
Signed 32-bit integer
pstn_trunk_bchannels_status_10 pstn_trunk_bchannels_status_10
Signed 32-bit integer
pstn_trunk_bchannels_status_11 pstn_trunk_bchannels_status_11
Signed 32-bit integer
pstn_trunk_bchannels_status_12 pstn_trunk_bchannels_status_12
Signed 32-bit integer
pstn_trunk_bchannels_status_13 pstn_trunk_bchannels_status_13
Signed 32-bit integer
pstn_trunk_bchannels_status_14 pstn_trunk_bchannels_status_14
Signed 32-bit integer
pstn_trunk_bchannels_status_15 pstn_trunk_bchannels_status_15
Signed 32-bit integer
pstn_trunk_bchannels_status_16 pstn_trunk_bchannels_status_16
Signed 32-bit integer
pstn_trunk_bchannels_status_17 pstn_trunk_bchannels_status_17
Signed 32-bit integer
pstn_trunk_bchannels_status_18 pstn_trunk_bchannels_status_18
Signed 32-bit integer
pstn_trunk_bchannels_status_19 pstn_trunk_bchannels_status_19
Signed 32-bit integer
pstn_trunk_bchannels_status_2 pstn_trunk_bchannels_status_2
Signed 32-bit integer
pstn_trunk_bchannels_status_20 pstn_trunk_bchannels_status_20
Signed 32-bit integer
pstn_trunk_bchannels_status_21 pstn_trunk_bchannels_status_21
Signed 32-bit integer
pstn_trunk_bchannels_status_22 pstn_trunk_bchannels_status_22
Signed 32-bit integer
pstn_trunk_bchannels_status_23 pstn_trunk_bchannels_status_23
Signed 32-bit integer
pstn_trunk_bchannels_status_24 pstn_trunk_bchannels_status_24
Signed 32-bit integer
pstn_trunk_bchannels_status_25 pstn_trunk_bchannels_status_25
Signed 32-bit integer
pstn_trunk_bchannels_status_26 pstn_trunk_bchannels_status_26
Signed 32-bit integer
pstn_trunk_bchannels_status_27 pstn_trunk_bchannels_status_27
Signed 32-bit integer
pstn_trunk_bchannels_status_28 pstn_trunk_bchannels_status_28
Signed 32-bit integer
pstn_trunk_bchannels_status_29 pstn_trunk_bchannels_status_29
Signed 32-bit integer
pstn_trunk_bchannels_status_3 pstn_trunk_bchannels_status_3
Signed 32-bit integer
pstn_trunk_bchannels_status_30 pstn_trunk_bchannels_status_30
Signed 32-bit integer
pstn_trunk_bchannels_status_31 pstn_trunk_bchannels_status_31
Signed 32-bit integer
pstn_trunk_bchannels_status_4 pstn_trunk_bchannels_status_4
Signed 32-bit integer
pstn_trunk_bchannels_status_5 pstn_trunk_bchannels_status_5
Signed 32-bit integer
pstn_trunk_bchannels_status_6 pstn_trunk_bchannels_status_6
Signed 32-bit integer
pstn_trunk_bchannels_status_7 pstn_trunk_bchannels_status_7
Signed 32-bit integer
pstn_trunk_bchannels_status_8 pstn_trunk_bchannels_status_8
Signed 32-bit integer
pstn_trunk_bchannels_status_9 pstn_trunk_bchannels_status_9
Signed 32-bit integer
pstn_user_port_id pstn_user_port_id
Signed 32-bit integer
pulse_count pulse_count
Signed 32-bit integer
pulse_type pulse_type
Signed 32-bit integer
pulsed_signal pulsed_signal
Signed 32-bit integer
pulsed_signal_signal_type pulsed_signal_signal_type
Signed 32-bit integer
qcelp13_rate qcelp13_rate
Signed 32-bit integer
qcelp8_rate qcelp8_rate
Signed 32-bit integer
query_result query_result
Signed 32-bit integer
query_seq_no query_seq_no
Signed 32-bit integer
r_factor r_factor
Unsigned 8-bit integer
ra_state ra_state
Signed 32-bit integer
rai rai
Signed 32-bit integer
ras_debug_mode ras_debug_mode
Unsigned 8-bit integer
rate_0 rate_0
Signed 32-bit integer
rate_1 rate_1
Signed 32-bit integer
rate_2 rate_2
Signed 32-bit integer
rate_3 rate_3
Signed 32-bit integer
rate_4 rate_4
Signed 32-bit integer
rate_5 rate_5
Signed 32-bit integer
rate_6 rate_6
Signed 32-bit integer
rate_7 rate_7
Signed 32-bit integer
rate_type rate_type
Signed 32-bit integer
ready_for_update ready_for_update
Signed 32-bit integer
rear_firm_ware_ver rear_firm_ware_ver
Signed 32-bit integer
rear_io_id rear_io_id
Signed 32-bit integer
reason reason
Unsigned 32-bit integer
reassembly_timeout reassembly_timeout
Unsigned 32-bit integer
rec_buff_size rec_buff_size
Signed 32-bit integer
receive_window_size_offered receive_window_size_offered
Unsigned 16-bit integer
received received
Unsigned 32-bit integer
received_digit_ack_req_ind received_digit_ack_req_ind
Signed 32-bit integer
received_octets received_octets
Unsigned 32-bit integer
received_packets received_packets
Unsigned 32-bit integer
recognize_timeout recognize_timeout
Signed 32-bit integer
record_bytes_processed record_bytes_processed
Signed 32-bit integer
record_coder record_coder
Signed 32-bit integer
record_length_timer record_length_timer
Signed 32-bit integer
record_points record_points
Unsigned 32-bit integer
recording_id recording_id
String
recording_time recording_time
Signed 32-bit integer
red_alarm red_alarm
Signed 32-bit integer
redirecting_number redirecting_number
String
redirecting_number_plan redirecting_number_plan
Signed 32-bit integer
redirecting_number_pres redirecting_number_pres
Signed 32-bit integer
redirecting_number_reason redirecting_number_reason
Signed 32-bit integer
redirecting_number_screen redirecting_number_screen
Signed 32-bit integer
redirecting_number_size redirecting_number_size
Signed 32-bit integer
redirecting_number_type redirecting_number_type
Signed 32-bit integer
redirecting_phone_num redirecting_phone_num
String
redirection redirection
Signed 32-bit integer
reduction_intensity reduction_intensity
Unsigned 8-bit integer
redundancy_level_0 redundancy_level_0
Signed 32-bit integer
redundancy_level_1 redundancy_level_1
Signed 32-bit integer
redundancy_level_2 redundancy_level_2
Signed 32-bit integer
redundancy_level_3 redundancy_level_3
Signed 32-bit integer
redundancy_level_4 redundancy_level_4
Signed 32-bit integer
redundancy_level_5 redundancy_level_5
Signed 32-bit integer
redundancy_level_6 redundancy_level_6
Signed 32-bit integer
redundancy_level_7 redundancy_level_7
Signed 32-bit integer
redundant_cmd redundant_cmd
Signed 32-bit integer
ref_energy ref_energy
Signed 32-bit integer
reg reg
Signed 32-bit integer
register_value register_value
Signed 32-bit integer
registration_state registration_state
Signed 32-bit integer
reinput_key_sequence reinput_key_sequence
String
reject_cause reject_cause
Signed 32-bit integer
relay_bypass relay_bypass
Signed 32-bit integer
release_indication_cause release_indication_cause
Signed 32-bit integer
remote_alarm remote_alarm
Unsigned 16-bit integer
remote_alarm_received remote_alarm_received
Signed 32-bit integer
remote_apip remote_apip
Unsigned 32-bit integer
remote_disconnect remote_disconnect
Signed 32-bit integer
remote_file_coder remote_file_coder
Signed 32-bit integer
remote_file_duration remote_file_duration
Signed 32-bit integer
remote_file_query_result remote_file_query_result
Signed 32-bit integer
remote_gwip remote_gwip
Unsigned 32-bit integer
remote_ip_addr remote_ip_addr
Signed 32-bit integer
remote_ip_addr_0 remote_ip_addr_0
Unsigned 32-bit integer
remote_ip_addr_1 remote_ip_addr_1
Unsigned 32-bit integer
remote_ip_addr_10 remote_ip_addr_10
Unsigned 32-bit integer
remote_ip_addr_11 remote_ip_addr_11
Unsigned 32-bit integer
remote_ip_addr_12 remote_ip_addr_12
Unsigned 32-bit integer
remote_ip_addr_13 remote_ip_addr_13
Unsigned 32-bit integer
remote_ip_addr_14 remote_ip_addr_14
Unsigned 32-bit integer
remote_ip_addr_15 remote_ip_addr_15
Unsigned 32-bit integer
remote_ip_addr_16 remote_ip_addr_16
Unsigned 32-bit integer
remote_ip_addr_17 remote_ip_addr_17
Unsigned 32-bit integer
remote_ip_addr_18 remote_ip_addr_18
Unsigned 32-bit integer
remote_ip_addr_19 remote_ip_addr_19
Unsigned 32-bit integer
remote_ip_addr_2 remote_ip_addr_2
Unsigned 32-bit integer
remote_ip_addr_20 remote_ip_addr_20
Unsigned 32-bit integer
remote_ip_addr_21 remote_ip_addr_21
Unsigned 32-bit integer
remote_ip_addr_22 remote_ip_addr_22
Unsigned 32-bit integer
remote_ip_addr_23 remote_ip_addr_23
Unsigned 32-bit integer
remote_ip_addr_24 remote_ip_addr_24
Unsigned 32-bit integer
remote_ip_addr_25 remote_ip_addr_25
Unsigned 32-bit integer
remote_ip_addr_26 remote_ip_addr_26
Unsigned 32-bit integer
remote_ip_addr_27 remote_ip_addr_27
Unsigned 32-bit integer
remote_ip_addr_28 remote_ip_addr_28
Unsigned 32-bit integer
remote_ip_addr_29 remote_ip_addr_29
Unsigned 32-bit integer
remote_ip_addr_3 remote_ip_addr_3
Unsigned 32-bit integer
remote_ip_addr_30 remote_ip_addr_30
Unsigned 32-bit integer
remote_ip_addr_31 remote_ip_addr_31
Unsigned 32-bit integer
remote_ip_addr_4 remote_ip_addr_4
Unsigned 32-bit integer
remote_ip_addr_5 remote_ip_addr_5
Unsigned 32-bit integer
remote_ip_addr_6 remote_ip_addr_6
Unsigned 32-bit integer
remote_ip_addr_7 remote_ip_addr_7
Unsigned 32-bit integer
remote_ip_addr_8 remote_ip_addr_8
Unsigned 32-bit integer
remote_ip_addr_9 remote_ip_addr_9
Unsigned 32-bit integer
remote_port_0 remote_port_0
Signed 32-bit integer
remote_port_1 remote_port_1
Signed 32-bit integer
remote_port_10 remote_port_10
Signed 32-bit integer
remote_port_11 remote_port_11
Signed 32-bit integer
remote_port_12 remote_port_12
Signed 32-bit integer
remote_port_13 remote_port_13
Signed 32-bit integer
remote_port_14 remote_port_14
Signed 32-bit integer
remote_port_15 remote_port_15
Signed 32-bit integer
remote_port_16 remote_port_16
Signed 32-bit integer
remote_port_17 remote_port_17
Signed 32-bit integer
remote_port_18 remote_port_18
Signed 32-bit integer
remote_port_19 remote_port_19
Signed 32-bit integer
remote_port_2 remote_port_2
Signed 32-bit integer
remote_port_20 remote_port_20
Signed 32-bit integer
remote_port_21 remote_port_21
Signed 32-bit integer
remote_port_22 remote_port_22
Signed 32-bit integer
remote_port_23 remote_port_23
Signed 32-bit integer
remote_port_24 remote_port_24
Signed 32-bit integer
remote_port_25 remote_port_25
Signed 32-bit integer
remote_port_26 remote_port_26
Signed 32-bit integer
remote_port_27 remote_port_27
Signed 32-bit integer
remote_port_28 remote_port_28
Signed 32-bit integer
remote_port_29 remote_port_29
Signed 32-bit integer
remote_port_3 remote_port_3
Signed 32-bit integer
remote_port_30 remote_port_30
Signed 32-bit integer
remote_port_31 remote_port_31
Signed 32-bit integer
remote_port_4 remote_port_4
Signed 32-bit integer
remote_port_5 remote_port_5
Signed 32-bit integer
remote_port_6 remote_port_6
Signed 32-bit integer
remote_port_7 remote_port_7
Signed 32-bit integer
remote_port_8 remote_port_8
Signed 32-bit integer
remote_port_9 remote_port_9
Signed 32-bit integer
remote_rtcp_port remote_rtcp_port
Unsigned 16-bit integer
remote_rtcpip_add_address_family remote_rtcpip_add_address_family
Signed 32-bit integer
remote_rtcpip_add_ipv6_addr_0 remote_rtcpip_add_ipv6_addr_0
Unsigned 32-bit integer
remote_rtcpip_add_ipv6_addr_1 remote_rtcpip_add_ipv6_addr_1
Unsigned 32-bit integer
remote_rtcpip_add_ipv6_addr_2 remote_rtcpip_add_ipv6_addr_2
Unsigned 32-bit integer
remote_rtcpip_add_ipv6_addr_3 remote_rtcpip_add_ipv6_addr_3
Unsigned 32-bit integer
remote_rtcpip_addr_address_family remote_rtcpip_addr_address_family
Signed 32-bit integer
remote_rtcpip_addr_ipv6_addr_0 remote_rtcpip_addr_ipv6_addr_0
Unsigned 32-bit integer
remote_rtcpip_addr_ipv6_addr_1 remote_rtcpip_addr_ipv6_addr_1
Unsigned 32-bit integer
remote_rtcpip_addr_ipv6_addr_2 remote_rtcpip_addr_ipv6_addr_2
Unsigned 32-bit integer
remote_rtcpip_addr_ipv6_addr_3 remote_rtcpip_addr_ipv6_addr_3
Unsigned 32-bit integer
remote_rtp_port remote_rtp_port
Unsigned 16-bit integer
remote_rtpip_addr_address_family remote_rtpip_addr_address_family
Signed 32-bit integer
remote_rtpip_addr_ipv6_addr_0 remote_rtpip_addr_ipv6_addr_0
Unsigned 32-bit integer
remote_rtpip_addr_ipv6_addr_1 remote_rtpip_addr_ipv6_addr_1
Unsigned 32-bit integer
remote_rtpip_addr_ipv6_addr_2 remote_rtpip_addr_ipv6_addr_2
Unsigned 32-bit integer
remote_rtpip_addr_ipv6_addr_3 remote_rtpip_addr_ipv6_addr_3
Unsigned 32-bit integer
remote_session_id remote_session_id
Signed 32-bit integer
remote_session_seq_num remote_session_seq_num
Signed 32-bit integer
remote_t38_port remote_t38_port
Signed 32-bit integer
remote_t38ip_addr_address_family remote_t38ip_addr_address_family
Signed 32-bit integer
remote_t38ip_addr_ipv6_addr_0 remote_t38ip_addr_ipv6_addr_0
Unsigned 32-bit integer
remote_t38ip_addr_ipv6_addr_1 remote_t38ip_addr_ipv6_addr_1
Unsigned 32-bit integer
remote_t38ip_addr_ipv6_addr_2 remote_t38ip_addr_ipv6_addr_2
Unsigned 32-bit integer
remote_t38ip_addr_ipv6_addr_3 remote_t38ip_addr_ipv6_addr_3
Unsigned 32-bit integer
remotely_inhibited remotely_inhibited
Signed 32-bit integer
repeat repeat
Unsigned 8-bit integer
repeated_dial_string_total_duration repeated_dial_string_total_duration
Signed 32-bit integer
repeated_string_total_duration repeated_string_total_duration
Signed 32-bit integer
report_lbc report_lbc
Signed 32-bit integer
report_reason report_reason
Signed 32-bit integer
report_type report_type
Signed 32-bit integer
report_ubc report_ubc
Signed 32-bit integer
reporting_pulse_count reporting_pulse_count
Signed 32-bit integer
request request
Signed 32-bit integer
reserve reserve
String
reserve1 reserve1
String
reserve2 reserve2
String
reserve3 reserve3
String
reserve4 reserve4
String
reserve_0 reserve_0
Signed 32-bit integer
reserve_1 reserve_1
Signed 32-bit integer
reserve_2 reserve_2
Signed 32-bit integer
reserve_3 reserve_3
Signed 32-bit integer
reserve_4 reserve_4
Signed 32-bit integer
reserve_5 reserve_5
Signed 32-bit integer
reserved reserved
Signed 32-bit integer
reserved1 reserved1
Signed 32-bit integer
reserved2 reserved2
Signed 32-bit integer
reserved3 reserved3
Signed 32-bit integer
reserved4 reserved4
Signed 32-bit integer
reserved5 reserved5
Signed 32-bit integer
reserved_0 reserved_0
Signed 32-bit integer
reserved_1 reserved_1
Signed 32-bit integer
reserved_10 reserved_10
Signed 16-bit integer
reserved_11 reserved_11
Signed 16-bit integer
reserved_2 reserved_2
Signed 32-bit integer
reserved_3 reserved_3
Signed 32-bit integer
reserved_4 reserved_4
Signed 16-bit integer
reserved_5 reserved_5
Signed 16-bit integer
reserved_6 reserved_6
Signed 16-bit integer
reserved_7 reserved_7
Signed 16-bit integer
reserved_8 reserved_8
Signed 16-bit integer
reserved_9 reserved_9
Signed 16-bit integer
reset_cmd reset_cmd
Signed 32-bit integer
reset_mode reset_mode
Signed 32-bit integer
reset_source_report_bit_return_code reset_source_report_bit_return_code
Signed 32-bit integer
reset_total reset_total
Unsigned 8-bit integer
residual_echo_return_loss residual_echo_return_loss
Unsigned 8-bit integer
response_code response_code
Signed 32-bit integer
restart_key_sequence restart_key_sequence
String
restart_not_ok restart_not_ok
Signed 32-bit integer
resume_call_action_code resume_call_action_code
Signed 32-bit integer
resynchronized resynchronized
Unsigned 16-bit integer
ret_cause ret_cause
Signed 32-bit integer
retrc retrc
Unsigned 16-bit integer
return_code return_code
Signed 32-bit integer
return_key_sequence return_key_sequence
String
rev_num rev_num
Signed 32-bit integer
reversal_polarity reversal_polarity
Signed 32-bit integer
rfc rfc
Signed 32-bit integer
rfc2833_rtp_rx_payload_type rfc2833_rtp_rx_payload_type
Signed 32-bit integer
rfc2833_rtp_tx_payload_type rfc2833_rtp_tx_payload_type
Signed 32-bit integer
ria_crc ria_crc
Signed 32-bit integer
ring ring
Signed 32-bit integer
ring_splash ring_splash
Signed 32-bit integer
ring_state ring_state
Signed 32-bit integer
ring_type ring_type
Signed 32-bit integer
round_trip round_trip
Unsigned 32-bit integer
route_set route_set
Signed 32-bit integer
route_set_event_cause route_set_event_cause
Signed 32-bit integer
route_set_name route_set_name
String
route_set_no route_set_no
Signed 32-bit integer
routesets_per_sn routesets_per_sn
Signed 32-bit integer
rs_alarms_status_0 rs_alarms_status_0
Signed 32-bit integer
rs_alarms_status_1 rs_alarms_status_1
Signed 32-bit integer
rs_alarms_status_2 rs_alarms_status_2
Signed 32-bit integer
rs_alarms_status_3 rs_alarms_status_3
Signed 32-bit integer
rs_alarms_status_4 rs_alarms_status_4
Signed 32-bit integer
rs_alarms_status_5 rs_alarms_status_5
Signed 32-bit integer
rs_alarms_status_6 rs_alarms_status_6
Signed 32-bit integer
rs_alarms_status_7 rs_alarms_status_7
Signed 32-bit integer
rs_alarms_status_8 rs_alarms_status_8
Signed 32-bit integer
rs_alarms_status_9 rs_alarms_status_9
Signed 32-bit integer
rsip_reason rsip_reason
Signed 16-bit integer
rt_delay rt_delay
Unsigned 16-bit integer
rtcp_authentication_algorithm rtcp_authentication_algorithm
Signed 32-bit integer
rtcp_bye_reason rtcp_bye_reason
String
rtcp_bye_reason_length rtcp_bye_reason_length
Unsigned 8-bit integer
rtcp_encryption_algorithm rtcp_encryption_algorithm
Signed 32-bit integer
rtcp_encryption_key rtcp_encryption_key
String
rtcp_encryption_key_size rtcp_encryption_key_size
Unsigned 32-bit integer
rtcp_extension_msg rtcp_extension_msg
String
rtcp_icmp_received_data_icmp_type rtcp_icmp_received_data_icmp_type
Unsigned 8-bit integer
rtcp_icmp_received_data_icmp_unreachable_counter rtcp_icmp_received_data_icmp_unreachable_counter
Unsigned 32-bit integer
rtcp_mac_key rtcp_mac_key
String
rtcp_mac_key_size rtcp_mac_key_size
Unsigned 32-bit integer
rtcp_mean_tx_interval rtcp_mean_tx_interval
Signed 32-bit integer
rtcp_peer_info_ip_dst_addr rtcp_peer_info_ip_dst_addr
Unsigned 32-bit integer
rtcp_peer_info_udp_dst_port rtcp_peer_info_udp_dst_port
Unsigned 16-bit integer
rtp_authentication_algorithm rtp_authentication_algorithm
Signed 32-bit integer
rtp_encryption_algorithm rtp_encryption_algorithm
Signed 32-bit integer
rtp_encryption_key rtp_encryption_key
String
rtp_encryption_key_size rtp_encryption_key_size
Unsigned 32-bit integer
rtp_init_key rtp_init_key
String
rtp_init_key_size rtp_init_key_size
Unsigned 32-bit integer
rtp_mac_key rtp_mac_key
String
rtp_mac_key_size rtp_mac_key_size
Unsigned 32-bit integer
rtp_no_operation_payload_type rtp_no_operation_payload_type
Signed 32-bit integer
rtp_redundancy_depth rtp_redundancy_depth
Signed 32-bit integer
rtp_redundancy_rfc2198_payload_type rtp_redundancy_rfc2198_payload_type
Signed 32-bit integer
rtp_reflector_mode rtp_reflector_mode
Unsigned 8-bit integer
rtp_sequence_number_mode rtp_sequence_number_mode
Signed 32-bit integer
rtp_silence_indicator_coefficients_number rtp_silence_indicator_coefficients_number
Signed 32-bit integer
rtp_silence_indicator_packets_enable rtp_silence_indicator_packets_enable
Signed 32-bit integer
rtp_time_stamp rtp_time_stamp
Unsigned 32-bit integer
rtpdtmfrfc2833_payload_type rtpdtmfrfc2833_payload_type
Signed 32-bit integer
rtpssrc_mode rtpssrc_mode
Signed 32-bit integer
rx_bytes rx_bytes
Unsigned 32-bit integer
rx_config rx_config
Unsigned 8-bit integer
rx_config_zero_fill rx_config_zero_fill
Unsigned 8-bit integer
rx_dtmf_hang_over_time rx_dtmf_hang_over_time
Signed 16-bit integer
rx_dumped_pckts_cnt rx_dumped_pckts_cnt
Unsigned 16-bit integer
rx_rtp_payload_type rx_rtp_payload_type
Signed 32-bit integer
s_nname s_nname
String
sample_based_coders_rtp_packet_interval sample_based_coders_rtp_packet_interval
Signed 32-bit integer
sce sce
Signed 32-bit integer
scr scr
Signed 32-bit integer
screening screening
Signed 32-bit integer
sdh_lp_mappingtype sdh_lp_mappingtype
Signed 32-bit integer
sdh_sonet_mode sdh_sonet_mode
Signed 32-bit integer
sdram_bit_return_code sdram_bit_return_code
Signed 32-bit integer
second second
Signed 32-bit integer
second_digit_country_code second_digit_country_code
Unsigned 8-bit integer
second_redirecting_number_plan second_redirecting_number_plan
Signed 32-bit integer
second_redirecting_number_pres second_redirecting_number_pres
Signed 32-bit integer
second_redirecting_number_reason second_redirecting_number_reason
Signed 32-bit integer
second_redirecting_number_screen second_redirecting_number_screen
Signed 32-bit integer
second_redirecting_number_size second_redirecting_number_size
Signed 32-bit integer
second_redirecting_number_type second_redirecting_number_type
Signed 32-bit integer
second_redirecting_phone_num second_redirecting_phone_num
String
second_tone_duration second_tone_duration
Unsigned 32-bit integer
secondary_clock_source secondary_clock_source
Signed 32-bit integer
secondary_clock_source_status secondary_clock_source_status
Signed 32-bit integer
secondary_language secondary_language
Signed 32-bit integer
seconds seconds
Signed 32-bit integer
section section
Signed 32-bit integer
security_cmd_offset security_cmd_offset
Signed 32-bit integer
segment segment
Signed 32-bit integer
seized_line seized_line
Signed 32-bit integer
send_alarm_operation send_alarm_operation
Signed 32-bit integer
send_dummy_packets send_dummy_packets
Unsigned 8-bit integer
send_each_digit send_each_digit
Signed 32-bit integer
send_event_board_started_flag send_event_board_started_flag
Signed 32-bit integer
send_once send_once
Signed 32-bit integer
send_rtcp_bye_packet_mode send_rtcp_bye_packet_mode
Signed 32-bit integer
send_silence_dummy_packets send_silence_dummy_packets
Signed 32-bit integer
sending_complete sending_complete
Signed 32-bit integer
sending_mode sending_mode
Signed 32-bit integer
sensor_id sensor_id
Signed 32-bit integer
seq_number seq_number
Unsigned 16-bit integer
sequence_response sequence_response
Signed 32-bit integer
serial_id serial_id
Signed 32-bit integer
serial_num serial_num
Signed 32-bit integer
server_id server_id
Unsigned 32-bit integer
service_change_delay service_change_delay
Signed 32-bit integer
service_change_reason service_change_reason
Unsigned 32-bit integer
service_error_type service_error_type
Signed 32-bit integer
service_report_type service_report_type
Signed 32-bit integer
service_status service_status
Signed 32-bit integer
service_type service_type
Signed 32-bit integer
session_id session_id
Signed 32-bit integer
set_mode_action set_mode_action
Signed 32-bit integer
set_mode_code set_mode_code
Signed 32-bit integer
severely_errored_framing_seconds severely_errored_framing_seconds
Signed 32-bit integer
severely_errored_seconds severely_errored_seconds
Signed 32-bit integer
severity severity
Signed 32-bit integer
si si
Signed 32-bit integer
signal_generation_enable signal_generation_enable
Signed 32-bit integer
signal_level signal_level
Signed 32-bit integer
signal_level_decimal signal_level_decimal
Signed 16-bit integer
signal_level_integer signal_level_integer
Signed 16-bit integer
signal_lost signal_lost
Unsigned 16-bit integer
signal_type signal_type
Signed 32-bit integer
signaling_detectors_control signaling_detectors_control
Signed 32-bit integer
signaling_input_connection_bus signaling_input_connection_bus
Signed 32-bit integer
signaling_input_connection_occupied signaling_input_connection_occupied
Signed 32-bit integer
signaling_input_connection_port signaling_input_connection_port
Signed 32-bit integer
signaling_input_connection_time_slot signaling_input_connection_time_slot
Signed 32-bit integer
signaling_system signaling_system
Signed 32-bit integer
signaling_system_0 signaling_system_0
Signed 32-bit integer
signaling_system_1 signaling_system_1
Signed 32-bit integer
signaling_system_10 signaling_system_10
Signed 32-bit integer
signaling_system_11 signaling_system_11
Signed 32-bit integer
signaling_system_12 signaling_system_12
Signed 32-bit integer
signaling_system_13 signaling_system_13
Signed 32-bit integer
signaling_system_14 signaling_system_14
Signed 32-bit integer
signaling_system_15 signaling_system_15
Signed 32-bit integer
signaling_system_16 signaling_system_16
Signed 32-bit integer
signaling_system_17 signaling_system_17
Signed 32-bit integer
signaling_system_18 signaling_system_18
Signed 32-bit integer
signaling_system_19 signaling_system_19
Signed 32-bit integer
signaling_system_2 signaling_system_2
Signed 32-bit integer
signaling_system_20 signaling_system_20
Signed 32-bit integer
signaling_system_21 signaling_system_21
Signed 32-bit integer
signaling_system_22 signaling_system_22
Signed 32-bit integer
signaling_system_23 signaling_system_23
Signed 32-bit integer
signaling_system_24 signaling_system_24
Signed 32-bit integer
signaling_system_25 signaling_system_25
Signed 32-bit integer
signaling_system_26 signaling_system_26
Signed 32-bit integer
signaling_system_27 signaling_system_27
Signed 32-bit integer
signaling_system_28 signaling_system_28
Signed 32-bit integer
signaling_system_29 signaling_system_29
Signed 32-bit integer
signaling_system_3 signaling_system_3
Signed 32-bit integer
signaling_system_30 signaling_system_30
Signed 32-bit integer
signaling_system_31 signaling_system_31
Signed 32-bit integer
signaling_system_32 signaling_system_32
Signed 32-bit integer
signaling_system_33 signaling_system_33
Signed 32-bit integer
signaling_system_34 signaling_system_34
Signed 32-bit integer
signaling_system_35 signaling_system_35
Signed 32-bit integer
signaling_system_36 signaling_system_36
Signed 32-bit integer
signaling_system_37 signaling_system_37
Signed 32-bit integer
signaling_system_38 signaling_system_38
Signed 32-bit integer
signaling_system_39 signaling_system_39
Signed 32-bit integer
signaling_system_4 signaling_system_4
Signed 32-bit integer
signaling_system_5 signaling_system_5
Signed 32-bit integer
signaling_system_6 signaling_system_6
Signed 32-bit integer
signaling_system_7 signaling_system_7
Signed 32-bit integer
signaling_system_8 signaling_system_8
Signed 32-bit integer
signaling_system_9 signaling_system_9
Signed 32-bit integer
silence_length_between_iterations silence_length_between_iterations
Unsigned 32-bit integer
single_listener_participant_id single_listener_participant_id
Signed 32-bit integer
single_vcc single_vcc
Unsigned 8-bit integer
size size
Signed 32-bit integer
skip_interval skip_interval
Signed 32-bit integer
slave_temperature slave_temperature
Signed 32-bit integer
slc slc
Signed 32-bit integer
sli sli
Signed 32-bit integer
slot_name slot_name
String
sls sls
Signed 32-bit integer
smooth_average_round_trip smooth_average_round_trip
Unsigned 32-bit integer
sn sn
Signed 32-bit integer
sn_event_cause sn_event_cause
Signed 32-bit integer
sn_timer_sets sn_timer_sets
Signed 32-bit integer
sns_per_card sns_per_card
Signed 32-bit integer
source_category source_category
Signed 32-bit integer
source_cid source_cid
Signed 32-bit integer
source_direction source_direction
Signed 32-bit integer
source_ip_address_family source_ip_address_family
Signed 32-bit integer
source_ip_ipv6_addr_0 source_ip_ipv6_addr_0
Unsigned 32-bit integer
source_ip_ipv6_addr_1 source_ip_ipv6_addr_1
Unsigned 32-bit integer
source_ip_ipv6_addr_2 source_ip_ipv6_addr_2
Unsigned 32-bit integer
source_ip_ipv6_addr_3 source_ip_ipv6_addr_3
Unsigned 32-bit integer
source_number_non_notification_reason source_number_non_notification_reason
Signed 32-bit integer
source_number_plan source_number_plan
Signed 32-bit integer
source_number_pres source_number_pres
Signed 32-bit integer
source_number_screening source_number_screening
Signed 32-bit integer
source_number_type source_number_type
Signed 32-bit integer
source_phone_num source_phone_num
String
source_phone_sub_num source_phone_sub_num
String
source_route_failed source_route_failed
Unsigned 32-bit integer
source_sub_address_format source_sub_address_format
Signed 32-bit integer
source_sub_address_type source_sub_address_type
Signed 32-bit integer
sp_stp sp_stp
Signed 32-bit integer
speed speed
Signed 32-bit integer
ss7_additional_info ss7_additional_info
String
ss7_config_text ss7_config_text
String
ss7_mon_msg ss7_mon_msg
String
ss7_mon_msg_size ss7_mon_msg_size
Signed 32-bit integer
sscf_state sscf_state
Unsigned 8-bit integer
sscop_state sscop_state
Unsigned 8-bit integer
ssf_spare ssf_spare
Signed 32-bit integer
ssrc ssrc
Unsigned 32-bit integer
ssrc_sender ssrc_sender
Unsigned 32-bit integer
start start
Signed 32-bit integer
start_channel_id start_channel_id
Signed 32-bit integer
start_end_testing start_end_testing
Signed 32-bit integer
start_event start_event
Signed 32-bit integer
start_index start_index
Signed 32-bit integer
static_mapped_channels_count static_mapped_channels_count
Signed 32-bit integer
status status
Signed 32-bit integer
status_0 status_0
Signed 32-bit integer
status_1 status_1
Signed 32-bit integer
status_2 status_2
Signed 32-bit integer
status_3 status_3
Signed 32-bit integer
status_4 status_4
Signed 32-bit integer
status_flag status_flag
Signed 32-bit integer
steady_signal steady_signal
Signed 32-bit integer
stm_number stm_number
Unsigned 8-bit integer
stop_mode stop_mode
Signed 32-bit integer
stream_id stream_id
Unsigned 32-bit integer
su_type su_type
Signed 32-bit integer
sub_add_odd_indicator sub_add_odd_indicator
Signed 32-bit integer
sub_add_type sub_add_type
Signed 32-bit integer
sub_generic_event_family sub_generic_event_family
Signed 32-bit integer
subnet_mask subnet_mask
Unsigned 32-bit integer
subnet_mask_address_0 subnet_mask_address_0
Unsigned 32-bit integer
subnet_mask_address_1 subnet_mask_address_1
Unsigned 32-bit integer
subnet_mask_address_2 subnet_mask_address_2
Unsigned 32-bit integer
subnet_mask_address_3 subnet_mask_address_3
Unsigned 32-bit integer
subnet_mask_address_4 subnet_mask_address_4
Unsigned 32-bit integer
subnet_mask_address_5 subnet_mask_address_5
Unsigned 32-bit integer
subtype subtype
Unsigned 8-bit integer
sum_additional_ts_enable sum_additional_ts_enable
Signed 32-bit integer
sum_rtt sum_rtt
Unsigned 32-bit integer
summation_detection_origin summation_detection_origin
Signed 32-bit integer
supp_ind supp_ind
Signed 32-bit integer
suppress_end_event suppress_end_event
Signed 32-bit integer
suspend_call_action_code suspend_call_action_code
Signed 32-bit integer
switching_option switching_option
Signed 32-bit integer
sync_not_possible sync_not_possible
Unsigned 16-bit integer
t1e1_span_code t1e1_span_code
Signed 32-bit integer
t38_fax_relay_ecm_mode t38_fax_relay_ecm_mode
Signed 32-bit integer
t38_fax_relay_protection_mode t38_fax_relay_protection_mode
Signed 32-bit integer
t38_icmp_received_data_icmp_code_fragmentation_needed_and_df_set t38_icmp_received_data_icmp_code_fragmentation_needed_and_df_set
Unsigned 32-bit integer
t38_icmp_received_data_icmp_code_host_unreachable t38_icmp_received_data_icmp_code_host_unreachable
Unsigned 32-bit integer
t38_icmp_received_data_icmp_code_net_unreachable t38_icmp_received_data_icmp_code_net_unreachable
Unsigned 32-bit integer
t38_icmp_received_data_icmp_code_port_unreachable t38_icmp_received_data_icmp_code_port_unreachable
Unsigned 32-bit integer
t38_icmp_received_data_icmp_code_protocol_unreachable t38_icmp_received_data_icmp_code_protocol_unreachable
Unsigned 32-bit integer
t38_icmp_received_data_icmp_code_source_route_failed t38_icmp_received_data_icmp_code_source_route_failed
Unsigned 32-bit integer
t38_icmp_received_data_icmp_type t38_icmp_received_data_icmp_type
Unsigned 8-bit integer
t38_icmp_received_data_icmp_unreachable_counter t38_icmp_received_data_icmp_unreachable_counter
Unsigned 32-bit integer
t38_icmp_received_data_peer_info_ip_dst_addr t38_icmp_received_data_peer_info_ip_dst_addr
Unsigned 32-bit integer
t38_icmp_received_data_peer_info_udp_dst_port t38_icmp_received_data_peer_info_udp_dst_port
Unsigned 16-bit integer
t38_peer_info_ip_dst_addr t38_peer_info_ip_dst_addr
Unsigned 32-bit integer
t38_peer_info_udp_dst_port t38_peer_info_udp_dst_port
Unsigned 16-bit integer
talker_participant_id talker_participant_id
Signed 32-bit integer
tar_file_url tar_file_url
String
target_addr target_addr
Signed 32-bit integer
target_energy target_energy
Signed 32-bit integer
tdm_bus_in tdm_bus_in
Signed 32-bit integer
tdm_bus_input_channel tdm_bus_input_channel
Signed 32-bit integer
tdm_bus_input_port tdm_bus_input_port
Signed 32-bit integer
tdm_bus_out tdm_bus_out
Signed 32-bit integer
tdm_bus_output_channel tdm_bus_output_channel
Signed 32-bit integer
tdm_bus_output_disable tdm_bus_output_disable
Signed 32-bit integer
tdm_bus_output_port tdm_bus_output_port
Signed 32-bit integer
tdm_bus_type tdm_bus_type
Signed 32-bit integer
tdm_connection_mode tdm_connection_mode
Signed 32-bit integer
temp temp
Signed 32-bit integer
ter_type ter_type
Signed 32-bit integer
termination_cause termination_cause
Signed 32-bit integer
termination_result termination_result
Signed 32-bit integer
termination_state termination_state
Signed 32-bit integer
test_mode test_mode
Signed 32-bit integer
test_result test_result
Signed 32-bit integer
test_results test_results
Signed 32-bit integer
test_tone_enable test_tone_enable
Signed 32-bit integer
text_to_speak text_to_speak
String
tfc tfc
Signed 32-bit integer
tftp_server_ip tftp_server_ip
Unsigned 32-bit integer
third_digit_country_code third_digit_country_code
Unsigned 8-bit integer
third_tone_duration third_tone_duration
Unsigned 32-bit integer
time_above_high_threshold time_above_high_threshold
Signed 16-bit integer
time_below_low_threshold time_below_low_threshold
Signed 16-bit integer
time_between_high_low_threshold time_between_high_low_threshold
Signed 16-bit integer
time_milli_sec time_milli_sec
Signed 16-bit integer
time_out_value time_out_value
Unsigned 8-bit integer
time_sec time_sec
Signed 32-bit integer
time_slot time_slot
Signed 32-bit integer
time_slot_number time_slot_number
Unsigned 8-bit integer
time_stamp time_stamp
Unsigned 16-bit integer
timer_idx timer_idx
Signed 32-bit integer
timeslot timeslot
Signed 32-bit integer
to_entity to_entity
Signed 32-bit integer
to_fiber_link to_fiber_link
Signed 32-bit integer
to_trunk to_trunk
Signed 32-bit integer
tone_component_reserved tone_component_reserved
String
tone_component_reserved_0 tone_component_reserved_0
String
tone_component_reserved_1 tone_component_reserved_1
String
tone_duration tone_duration
Unsigned 32-bit integer
tone_generation_interface tone_generation_interface
Unsigned 8-bit integer
tone_index tone_index
Signed 32-bit integer
tone_level tone_level
Unsigned 32-bit integer
tone_number tone_number
Signed 32-bit integer
tone_reserved tone_reserved
String
tone_type tone_type
Signed 32-bit integer
total total
Signed 32-bit integer
total_duration_time total_duration_time
Unsigned 32-bit integer
total_remote_file_length total_remote_file_length
Signed 32-bit integer
total_vaild_dsp_channels_left total_vaild_dsp_channels_left
Signed 32-bit integer
total_voice_prompt_length total_voice_prompt_length
Signed 32-bit integer
tpncp.channel_id Channel ID
Signed 32-bit integer
tpncp.command_id Command ID
Unsigned 32-bit integer
tpncp.event_id Event ID
Unsigned 32-bit integer
tpncp.length Length
Unsigned 16-bit integer
tpncp.old_command_id Command ID
Unsigned 16-bit integer
tpncp.old_event_seq_number Sequence number
Unsigned 32-bit integer
tpncp.reserved Reserved
Unsigned 16-bit integer
tpncp.seq_number Sequence number
Unsigned 16-bit integer
tpncp.version Version
Unsigned 16-bit integer
tpncp_port tpncp_port
Unsigned 32-bit integer
tpncpip tpncpip
Unsigned 32-bit integer
tr08_alarm_format tr08_alarm_format
Signed 32-bit integer
tr08_field tr08_field
Signed 32-bit integer
tr08_group_id tr08_group_id
Signed 32-bit integer
tr08_last_line_switch_received tr08_last_line_switch_received
Signed 32-bit integer
tr08_line_switch tr08_line_switch
Signed 32-bit integer
tr08_line_switch_state tr08_line_switch_state
Signed 32-bit integer
tr08_maintenance_info_detection tr08_maintenance_info_detection
Signed 32-bit integer
tr08_member tr08_member
Signed 32-bit integer
trace_level trace_level
Signed 32-bit integer
traffic_type traffic_type
Unsigned 32-bit integer
transaction_id transaction_id
Unsigned 32-bit integer
transceiver_port_state_0 transceiver_port_state_0
Signed 32-bit integer
transceiver_port_state_1 transceiver_port_state_1
Signed 32-bit integer
transceiver_port_state_2 transceiver_port_state_2
Signed 32-bit integer
transceiver_port_state_3 transceiver_port_state_3
Signed 32-bit integer
transceiver_port_state_4 transceiver_port_state_4
Signed 32-bit integer
transceiver_port_state_5 transceiver_port_state_5
Signed 32-bit integer
transceiver_port_state_6 transceiver_port_state_6
Signed 32-bit integer
transceiver_port_state_7 transceiver_port_state_7
Signed 32-bit integer
transceiver_port_state_8 transceiver_port_state_8
Signed 32-bit integer
transceiver_port_state_9 transceiver_port_state_9
Signed 32-bit integer
transcode transcode
Unsigned 8-bit integer
transcoding_mode transcoding_mode
Signed 32-bit integer
transfer_cap transfer_cap
Signed 32-bit integer
transmitted transmitted
Unsigned 32-bit integer
transport_media transport_media
Unsigned 8-bit integer
trigger_cause trigger_cause
Signed 32-bit integer
trigger_event trigger_event
Signed 32-bit integer
trigger_on_duration trigger_on_duration
Signed 32-bit integer
trunk trunk
Signed 32-bit integer
trunk_b_channel trunk_b_channel
Signed 16-bit integer
trunk_blocking_mode trunk_blocking_mode
Signed 32-bit integer
trunk_blocking_mode_status trunk_blocking_mode_status
Signed 32-bit integer
trunk_count trunk_count
Signed 32-bit integer
trunk_id trunk_id
Signed 32-bit integer
trunk_id1 trunk_id1
Signed 32-bit integer
trunk_id2 trunk_id2
Signed 32-bit integer
trunk_number trunk_number
Signed 16-bit integer
trunk_number_0 trunk_number_0
Unsigned 32-bit integer
trunk_number_1 trunk_number_1
Unsigned 32-bit integer
trunk_number_10 trunk_number_10
Unsigned 32-bit integer
trunk_number_11 trunk_number_11
Unsigned 32-bit integer
trunk_number_12 trunk_number_12
Unsigned 32-bit integer
trunk_number_13 trunk_number_13
Unsigned 32-bit integer
trunk_number_14 trunk_number_14
Unsigned 32-bit integer
trunk_number_15 trunk_number_15
Unsigned 32-bit integer
trunk_number_16 trunk_number_16
Unsigned 32-bit integer
trunk_number_17 trunk_number_17
Unsigned 32-bit integer
trunk_number_18 trunk_number_18
Unsigned 32-bit integer
trunk_number_19 trunk_number_19
Unsigned 32-bit integer
trunk_number_2 trunk_number_2
Unsigned 32-bit integer
trunk_number_20 trunk_number_20
Unsigned 32-bit integer
trunk_number_21 trunk_number_21
Unsigned 32-bit integer
trunk_number_22 trunk_number_22
Unsigned 32-bit integer
trunk_number_23 trunk_number_23
Unsigned 32-bit integer
trunk_number_24 trunk_number_24
Unsigned 32-bit integer
trunk_number_25 trunk_number_25
Unsigned 32-bit integer
trunk_number_26 trunk_number_26
Unsigned 32-bit integer
trunk_number_27 trunk_number_27
Unsigned 32-bit integer
trunk_number_28 trunk_number_28
Unsigned 32-bit integer
trunk_number_29 trunk_number_29
Unsigned 32-bit integer
trunk_number_3 trunk_number_3
Unsigned 32-bit integer
trunk_number_30 trunk_number_30
Unsigned 32-bit integer
trunk_number_31 trunk_number_31
Unsigned 32-bit integer
trunk_number_32 trunk_number_32
Unsigned 32-bit integer
trunk_number_33 trunk_number_33
Unsigned 32-bit integer
trunk_number_34 trunk_number_34
Unsigned 32-bit integer
trunk_number_35 trunk_number_35
Unsigned 32-bit integer
trunk_number_36 trunk_number_36
Unsigned 32-bit integer
trunk_number_37 trunk_number_37
Unsigned 32-bit integer
trunk_number_38 trunk_number_38
Unsigned 32-bit integer
trunk_number_39 trunk_number_39
Unsigned 32-bit integer
trunk_number_4 trunk_number_4
Unsigned 32-bit integer
trunk_number_40 trunk_number_40
Unsigned 32-bit integer
trunk_number_41 trunk_number_41
Unsigned 32-bit integer
trunk_number_42 trunk_number_42
Unsigned 32-bit integer
trunk_number_43 trunk_number_43
Unsigned 32-bit integer
trunk_number_44 trunk_number_44
Unsigned 32-bit integer
trunk_number_45 trunk_number_45
Unsigned 32-bit integer
trunk_number_46 trunk_number_46
Unsigned 32-bit integer
trunk_number_47 trunk_number_47
Unsigned 32-bit integer
trunk_number_48 trunk_number_48
Unsigned 32-bit integer
trunk_number_49 trunk_number_49
Unsigned 32-bit integer
trunk_number_5 trunk_number_5
Unsigned 32-bit integer
trunk_number_50 trunk_number_50
Unsigned 32-bit integer
trunk_number_51 trunk_number_51
Unsigned 32-bit integer
trunk_number_52 trunk_number_52
Unsigned 32-bit integer
trunk_number_53 trunk_number_53
Unsigned 32-bit integer
trunk_number_54 trunk_number_54
Unsigned 32-bit integer
trunk_number_55 trunk_number_55
Unsigned 32-bit integer
trunk_number_56 trunk_number_56
Unsigned 32-bit integer
trunk_number_57 trunk_number_57
Unsigned 32-bit integer
trunk_number_58 trunk_number_58
Unsigned 32-bit integer
trunk_number_59 trunk_number_59
Unsigned 32-bit integer
trunk_number_6 trunk_number_6
Unsigned 32-bit integer
trunk_number_60 trunk_number_60
Unsigned 32-bit integer
trunk_number_61 trunk_number_61
Unsigned 32-bit integer
trunk_number_62 trunk_number_62
Unsigned 32-bit integer
trunk_number_63 trunk_number_63
Unsigned 32-bit integer
trunk_number_64 trunk_number_64
Unsigned 32-bit integer
trunk_number_65 trunk_number_65
Unsigned 32-bit integer
trunk_number_66 trunk_number_66
Unsigned 32-bit integer
trunk_number_67 trunk_number_67
Unsigned 32-bit integer
trunk_number_68 trunk_number_68
Unsigned 32-bit integer
trunk_number_69 trunk_number_69
Unsigned 32-bit integer
trunk_number_7 trunk_number_7
Unsigned 32-bit integer
trunk_number_70 trunk_number_70
Unsigned 32-bit integer
trunk_number_71 trunk_number_71
Unsigned 32-bit integer
trunk_number_72 trunk_number_72
Unsigned 32-bit integer
trunk_number_73 trunk_number_73
Unsigned 32-bit integer
trunk_number_74 trunk_number_74
Unsigned 32-bit integer
trunk_number_75 trunk_number_75
Unsigned 32-bit integer
trunk_number_76 trunk_number_76
Unsigned 32-bit integer
trunk_number_77 trunk_number_77
Unsigned 32-bit integer
trunk_number_78 trunk_number_78
Unsigned 32-bit integer
trunk_number_79 trunk_number_79
Unsigned 32-bit integer
trunk_number_8 trunk_number_8
Unsigned 32-bit integer
trunk_number_80 trunk_number_80
Unsigned 32-bit integer
trunk_number_81 trunk_number_81
Unsigned 32-bit integer
trunk_number_82 trunk_number_82
Unsigned 32-bit integer
trunk_number_83 trunk_number_83
Unsigned 32-bit integer
trunk_number_9 trunk_number_9
Unsigned 32-bit integer
trunk_pack_software_compilation_type trunk_pack_software_compilation_type
Unsigned 8-bit integer
trunk_pack_software_date trunk_pack_software_date
String
trunk_pack_software_fix_num trunk_pack_software_fix_num
Signed 32-bit integer
trunk_pack_software_minor_ver trunk_pack_software_minor_ver
Signed 32-bit integer
trunk_pack_software_stream_name trunk_pack_software_stream_name
String
trunk_pack_software_ver trunk_pack_software_ver
Signed 32-bit integer
trunk_pack_software_version_string trunk_pack_software_version_string
String
trunk_status trunk_status
Signed 32-bit integer
trunk_testing_fsk_duration trunk_testing_fsk_duration
Signed 32-bit integer
ts_trib_inst ts_trib_inst
Unsigned 32-bit integer
tty_transport_type tty_transport_type
Signed 32-bit integer
tu_digit tu_digit
Unsigned 32-bit integer
tu_digit_0 tu_digit_0
Unsigned 32-bit integer
tu_digit_1 tu_digit_1
Unsigned 32-bit integer
tu_digit_10 tu_digit_10
Unsigned 32-bit integer
tu_digit_11 tu_digit_11
Unsigned 32-bit integer
tu_digit_12 tu_digit_12
Unsigned 32-bit integer
tu_digit_13 tu_digit_13
Unsigned 32-bit integer
tu_digit_14 tu_digit_14
Unsigned 32-bit integer
tu_digit_15 tu_digit_15
Unsigned 32-bit integer
tu_digit_16 tu_digit_16
Unsigned 32-bit integer
tu_digit_17 tu_digit_17
Unsigned 32-bit integer
tu_digit_18 tu_digit_18
Unsigned 32-bit integer
tu_digit_19 tu_digit_19
Unsigned 32-bit integer
tu_digit_2 tu_digit_2
Unsigned 32-bit integer
tu_digit_20 tu_digit_20
Unsigned 32-bit integer
tu_digit_21 tu_digit_21
Unsigned 32-bit integer
tu_digit_22 tu_digit_22
Unsigned 32-bit integer
tu_digit_23 tu_digit_23
Unsigned 32-bit integer
tu_digit_24 tu_digit_24
Unsigned 32-bit integer
tu_digit_25 tu_digit_25
Unsigned 32-bit integer
tu_digit_26 tu_digit_26
Unsigned 32-bit integer
tu_digit_27 tu_digit_27
Unsigned 32-bit integer
tu_digit_28 tu_digit_28
Unsigned 32-bit integer
tu_digit_29 tu_digit_29
Unsigned 32-bit integer
tu_digit_3 tu_digit_3
Unsigned 32-bit integer
tu_digit_30 tu_digit_30
Unsigned 32-bit integer
tu_digit_31 tu_digit_31
Unsigned 32-bit integer
tu_digit_32 tu_digit_32
Unsigned 32-bit integer
tu_digit_33 tu_digit_33
Unsigned 32-bit integer
tu_digit_34 tu_digit_34
Unsigned 32-bit integer
tu_digit_35 tu_digit_35
Unsigned 32-bit integer
tu_digit_36 tu_digit_36
Unsigned 32-bit integer
tu_digit_37 tu_digit_37
Unsigned 32-bit integer
tu_digit_38 tu_digit_38
Unsigned 32-bit integer
tu_digit_39 tu_digit_39
Unsigned 32-bit integer
tu_digit_4 tu_digit_4
Unsigned 32-bit integer
tu_digit_40 tu_digit_40
Unsigned 32-bit integer
tu_digit_41 tu_digit_41
Unsigned 32-bit integer
tu_digit_42 tu_digit_42
Unsigned 32-bit integer
tu_digit_43 tu_digit_43
Unsigned 32-bit integer
tu_digit_44 tu_digit_44
Unsigned 32-bit integer
tu_digit_45 tu_digit_45
Unsigned 32-bit integer
tu_digit_46 tu_digit_46
Unsigned 32-bit integer
tu_digit_47 tu_digit_47
Unsigned 32-bit integer
tu_digit_48 tu_digit_48
Unsigned 32-bit integer
tu_digit_49 tu_digit_49
Unsigned 32-bit integer
tu_digit_5 tu_digit_5
Unsigned 32-bit integer
tu_digit_50 tu_digit_50
Unsigned 32-bit integer
tu_digit_51 tu_digit_51
Unsigned 32-bit integer
tu_digit_52 tu_digit_52
Unsigned 32-bit integer
tu_digit_53 tu_digit_53
Unsigned 32-bit integer
tu_digit_54 tu_digit_54
Unsigned 32-bit integer
tu_digit_55 tu_digit_55
Unsigned 32-bit integer
tu_digit_56 tu_digit_56
Unsigned 32-bit integer
tu_digit_57 tu_digit_57
Unsigned 32-bit integer
tu_digit_58 tu_digit_58
Unsigned 32-bit integer
tu_digit_59 tu_digit_59
Unsigned 32-bit integer
tu_digit_6 tu_digit_6
Unsigned 32-bit integer
tu_digit_60 tu_digit_60
Unsigned 32-bit integer
tu_digit_61 tu_digit_61
Unsigned 32-bit integer
tu_digit_62 tu_digit_62
Unsigned 32-bit integer
tu_digit_63 tu_digit_63
Unsigned 32-bit integer
tu_digit_64 tu_digit_64
Unsigned 32-bit integer
tu_digit_65 tu_digit_65
Unsigned 32-bit integer
tu_digit_66 tu_digit_66
Unsigned 32-bit integer
tu_digit_67 tu_digit_67
Unsigned 32-bit integer
tu_digit_68 tu_digit_68
Unsigned 32-bit integer
tu_digit_69 tu_digit_69
Unsigned 32-bit integer
tu_digit_7 tu_digit_7
Unsigned 32-bit integer
tu_digit_70 tu_digit_70
Unsigned 32-bit integer
tu_digit_71 tu_digit_71
Unsigned 32-bit integer
tu_digit_72 tu_digit_72
Unsigned 32-bit integer
tu_digit_73 tu_digit_73
Unsigned 32-bit integer
tu_digit_74 tu_digit_74
Unsigned 32-bit integer
tu_digit_75 tu_digit_75
Unsigned 32-bit integer
tu_digit_76 tu_digit_76
Unsigned 32-bit integer
tu_digit_77 tu_digit_77
Unsigned 32-bit integer
tu_digit_78 tu_digit_78
Unsigned 32-bit integer
tu_digit_79 tu_digit_79
Unsigned 32-bit integer
tu_digit_8 tu_digit_8
Unsigned 32-bit integer
tu_digit_80 tu_digit_80
Unsigned 32-bit integer
tu_digit_81 tu_digit_81
Unsigned 32-bit integer
tu_digit_82 tu_digit_82
Unsigned 32-bit integer
tu_digit_83 tu_digit_83
Unsigned 32-bit integer
tu_digit_9 tu_digit_9
Unsigned 32-bit integer
tu_number tu_number
Unsigned 8-bit integer
tug2_digit tug2_digit
Unsigned 32-bit integer
tug2_digit_0 tug2_digit_0
Unsigned 32-bit integer
tug2_digit_1 tug2_digit_1
Unsigned 32-bit integer
tug2_digit_10 tug2_digit_10
Unsigned 32-bit integer
tug2_digit_11 tug2_digit_11
Unsigned 32-bit integer
tug2_digit_12 tug2_digit_12
Unsigned 32-bit integer
tug2_digit_13 tug2_digit_13
Unsigned 32-bit integer
tug2_digit_14 tug2_digit_14
Unsigned 32-bit integer
tug2_digit_15 tug2_digit_15
Unsigned 32-bit integer
tug2_digit_16 tug2_digit_16
Unsigned 32-bit integer
tug2_digit_17 tug2_digit_17
Unsigned 32-bit integer
tug2_digit_18 tug2_digit_18
Unsigned 32-bit integer
tug2_digit_19 tug2_digit_19
Unsigned 32-bit integer
tug2_digit_2 tug2_digit_2
Unsigned 32-bit integer
tug2_digit_20 tug2_digit_20
Unsigned 32-bit integer
tug2_digit_21 tug2_digit_21
Unsigned 32-bit integer
tug2_digit_22 tug2_digit_22
Unsigned 32-bit integer
tug2_digit_23 tug2_digit_23
Unsigned 32-bit integer
tug2_digit_24 tug2_digit_24
Unsigned 32-bit integer
tug2_digit_25 tug2_digit_25
Unsigned 32-bit integer
tug2_digit_26 tug2_digit_26
Unsigned 32-bit integer
tug2_digit_27 tug2_digit_27
Unsigned 32-bit integer
tug2_digit_28 tug2_digit_28
Unsigned 32-bit integer
tug2_digit_29 tug2_digit_29
Unsigned 32-bit integer
tug2_digit_3 tug2_digit_3
Unsigned 32-bit integer
tug2_digit_30 tug2_digit_30
Unsigned 32-bit integer
tug2_digit_31 tug2_digit_31
Unsigned 32-bit integer
tug2_digit_32 tug2_digit_32
Unsigned 32-bit integer
tug2_digit_33 tug2_digit_33
Unsigned 32-bit integer
tug2_digit_34 tug2_digit_34
Unsigned 32-bit integer
tug2_digit_35 tug2_digit_35
Unsigned 32-bit integer
tug2_digit_36 tug2_digit_36
Unsigned 32-bit integer
tug2_digit_37 tug2_digit_37
Unsigned 32-bit integer
tug2_digit_38 tug2_digit_38
Unsigned 32-bit integer
tug2_digit_39 tug2_digit_39
Unsigned 32-bit integer
tug2_digit_4 tug2_digit_4
Unsigned 32-bit integer
tug2_digit_40 tug2_digit_40
Unsigned 32-bit integer
tug2_digit_41 tug2_digit_41
Unsigned 32-bit integer
tug2_digit_42 tug2_digit_42
Unsigned 32-bit integer
tug2_digit_43 tug2_digit_43
Unsigned 32-bit integer
tug2_digit_44 tug2_digit_44
Unsigned 32-bit integer
tug2_digit_45 tug2_digit_45
Unsigned 32-bit integer
tug2_digit_46 tug2_digit_46
Unsigned 32-bit integer
tug2_digit_47 tug2_digit_47
Unsigned 32-bit integer
tug2_digit_48 tug2_digit_48
Unsigned 32-bit integer
tug2_digit_49 tug2_digit_49
Unsigned 32-bit integer
tug2_digit_5 tug2_digit_5
Unsigned 32-bit integer
tug2_digit_50 tug2_digit_50
Unsigned 32-bit integer
tug2_digit_51 tug2_digit_51
Unsigned 32-bit integer
tug2_digit_52 tug2_digit_52
Unsigned 32-bit integer
tug2_digit_53 tug2_digit_53
Unsigned 32-bit integer
tug2_digit_54 tug2_digit_54
Unsigned 32-bit integer
tug2_digit_55 tug2_digit_55
Unsigned 32-bit integer
tug2_digit_56 tug2_digit_56
Unsigned 32-bit integer
tug2_digit_57 tug2_digit_57
Unsigned 32-bit integer
tug2_digit_58 tug2_digit_58
Unsigned 32-bit integer
tug2_digit_59 tug2_digit_59
Unsigned 32-bit integer
tug2_digit_6 tug2_digit_6
Unsigned 32-bit integer
tug2_digit_60 tug2_digit_60
Unsigned 32-bit integer
tug2_digit_61 tug2_digit_61
Unsigned 32-bit integer
tug2_digit_62 tug2_digit_62
Unsigned 32-bit integer
tug2_digit_63 tug2_digit_63
Unsigned 32-bit integer
tug2_digit_64 tug2_digit_64
Unsigned 32-bit integer
tug2_digit_65 tug2_digit_65
Unsigned 32-bit integer
tug2_digit_66 tug2_digit_66
Unsigned 32-bit integer
tug2_digit_67 tug2_digit_67
Unsigned 32-bit integer
tug2_digit_68 tug2_digit_68
Unsigned 32-bit integer
tug2_digit_69 tug2_digit_69
Unsigned 32-bit integer
tug2_digit_7 tug2_digit_7
Unsigned 32-bit integer
tug2_digit_70 tug2_digit_70
Unsigned 32-bit integer
tug2_digit_71 tug2_digit_71
Unsigned 32-bit integer
tug2_digit_72 tug2_digit_72
Unsigned 32-bit integer
tug2_digit_73 tug2_digit_73
Unsigned 32-bit integer
tug2_digit_74 tug2_digit_74
Unsigned 32-bit integer
tug2_digit_75 tug2_digit_75
Unsigned 32-bit integer
tug2_digit_76 tug2_digit_76
Unsigned 32-bit integer
tug2_digit_77 tug2_digit_77
Unsigned 32-bit integer
tug2_digit_78 tug2_digit_78
Unsigned 32-bit integer
tug2_digit_79 tug2_digit_79
Unsigned 32-bit integer
tug2_digit_8 tug2_digit_8
Unsigned 32-bit integer
tug2_digit_80 tug2_digit_80
Unsigned 32-bit integer
tug2_digit_81 tug2_digit_81
Unsigned 32-bit integer
tug2_digit_82 tug2_digit_82
Unsigned 32-bit integer
tug2_digit_83 tug2_digit_83
Unsigned 32-bit integer
tug2_digit_9 tug2_digit_9
Unsigned 32-bit integer
tug_number tug_number
Unsigned 8-bit integer
tunnel_id tunnel_id
Signed 32-bit integer
tx_bytes tx_bytes
Unsigned 32-bit integer
tx_dtmf_hang_over_time tx_dtmf_hang_over_time
Signed 16-bit integer
tx_over_run_cnt tx_over_run_cnt
Unsigned 16-bit integer
tx_rtp_payload_type tx_rtp_payload_type
Signed 32-bit integer
type type
Signed 32-bit integer
type_of_calling_user type_of_calling_user
Unsigned 8-bit integer
type_of_forwarded_call type_of_forwarded_call
Unsigned 8-bit integer
type_of_number type_of_number
Unsigned 8-bit integer
udp_dst_port udp_dst_port
Unsigned 16-bit integer
umts_protocol_mode umts_protocol_mode
Unsigned 8-bit integer
un_available_seconds un_available_seconds
Signed 32-bit integer
uneq uneq
Signed 32-bit integer
uni_directional_pci_mode uni_directional_pci_mode
Signed 32-bit integer
uni_directional_rtp uni_directional_rtp
Signed 32-bit integer
unlocked_clock unlocked_clock
Signed 32-bit integer
up_down up_down
Unsigned 32-bit integer
up_iu_deliver_erroneous_sdu up_iu_deliver_erroneous_sdu
Unsigned 8-bit integer
up_local_rate up_local_rate
Unsigned 8-bit integer
up_mode up_mode
Unsigned 8-bit integer
up_pcm_coder up_pcm_coder
Unsigned 8-bit integer
up_pdu_type up_pdu_type
Unsigned 8-bit integer
up_remote_rate up_remote_rate
Unsigned 8-bit integer
up_rfci_indicators up_rfci_indicators
Unsigned 16-bit integer
up_rfci_values up_rfci_values
String
up_support_mode_type up_support_mode_type
Unsigned 8-bit integer
up_time up_time
Signed 32-bit integer
up_version up_version
Unsigned 16-bit integer
url_to_remote_file url_to_remote_file
String
use_channel_id_as_dsp_handle use_channel_id_as_dsp_handle
Signed 32-bit integer
use_end_dial_key use_end_dial_key
Signed 32-bit integer
use_ni_or_pci use_ni_or_pci
Signed 32-bit integer
user_data user_data
Unsigned 16-bit integer
user_info_l1_protocol user_info_l1_protocol
Signed 32-bit integer
user_port_id user_port_id
Signed 32-bit integer
user_port_type user_port_type
Signed 32-bit integer
utterance utterance
String
uui_data uui_data
String
uui_data_length uui_data_length
Signed 32-bit integer
uui_protocol_description uui_protocol_description
Signed 32-bit integer
uui_sequence_num uui_sequence_num
Signed 32-bit integer
v21_modem_transport_type v21_modem_transport_type
Signed 32-bit integer
v22_modem_transport_type v22_modem_transport_type
Signed 32-bit integer
v23_modem_transport_type v23_modem_transport_type
Signed 32-bit integer
v32_modem_transport_type v32_modem_transport_type
Signed 32-bit integer
v34_fax_transport_type v34_fax_transport_type
Signed 32-bit integer
v34_modem_transport_type v34_modem_transport_type
Signed 32-bit integer
v5_interface_id_not_equal v5_interface_id_not_equal
Signed 32-bit integer
v5_interface_trunk_group_id v5_interface_trunk_group_id
Signed 32-bit integer
v5_trace_level v5_trace_level
Signed 32-bit integer
v5_variant_not_equal v5_variant_not_equal
Signed 32-bit integer
v5id_check_time_out_error v5id_check_time_out_error
Signed 32-bit integer
val val
Signed 32-bit integer
value value
Signed 32-bit integer
variant variant
Signed 32-bit integer
vbr_coder_dtx_max vbr_coder_dtx_max
Signed 16-bit integer
vbr_coder_dtx_min vbr_coder_dtx_min
Signed 16-bit integer
vbr_coder_hangover vbr_coder_hangover
Signed 32-bit integer
vbr_coder_header_format vbr_coder_header_format
Signed 32-bit integer
vbr_coder_noise_suppression vbr_coder_noise_suppression
Unsigned 8-bit integer
vbr_coder_vad_enable vbr_coder_vad_enable
Signed 32-bit integer
vcc_handle vcc_handle
Unsigned 32-bit integer
vcc_id vcc_id
Signed 32-bit integer
vcc_params_atm_port vcc_params_atm_port
Unsigned 32-bit integer
vcc_params_vci vcc_params_vci
Unsigned 32-bit integer
vcc_params_vpi vcc_params_vpi
Unsigned 32-bit integer
vci vci
Unsigned 16-bit integer
vci_lsb vci_lsb
Unsigned 8-bit integer
vci_msb vci_msb
Unsigned 8-bit integer
version version
String
video_broken_connection_event_activation_mode video_broken_connection_event_activation_mode
Unsigned 8-bit integer
video_broken_connection_event_timeout video_broken_connection_event_timeout
Unsigned 32-bit integer
video_buffering_verifier_occupancy video_buffering_verifier_occupancy
Unsigned 8-bit integer
video_buffering_verifier_size video_buffering_verifier_size
Signed 32-bit integer
video_conference_switching_interval video_conference_switching_interval
Signed 32-bit integer
video_decoder_coder video_decoder_coder
Unsigned 8-bit integer
video_decoder_customized_height video_decoder_customized_height
Unsigned 16-bit integer
video_decoder_customized_width video_decoder_customized_width
Unsigned 16-bit integer
video_decoder_deblocking_filter_strength video_decoder_deblocking_filter_strength
Unsigned 8-bit integer
video_decoder_level_at_profile video_decoder_level_at_profile
Unsigned 16-bit integer
video_decoder_max_frame_rate video_decoder_max_frame_rate
Unsigned 8-bit integer
video_decoder_resolution_type video_decoder_resolution_type
Unsigned 8-bit integer
video_djb_optimization_factor video_djb_optimization_factor
Signed 32-bit integer
video_enable_active_speaker_highlight video_enable_active_speaker_highlight
Signed 32-bit integer
video_enable_audio_video_synchronization video_enable_audio_video_synchronization
Unsigned 8-bit integer
video_enable_encoder_denoising_filter video_enable_encoder_denoising_filter
Unsigned 8-bit integer
video_enable_re_sync_header video_enable_re_sync_header
Unsigned 8-bit integer
video_enable_test_pattern video_enable_test_pattern
Unsigned 8-bit integer
video_encoder_coder video_encoder_coder
Unsigned 8-bit integer
video_encoder_customized_height video_encoder_customized_height
Unsigned 16-bit integer
video_encoder_customized_width video_encoder_customized_width
Unsigned 16-bit integer
video_encoder_intra_interval video_encoder_intra_interval
Signed 32-bit integer
video_encoder_level_at_profile video_encoder_level_at_profile
Unsigned 16-bit integer
video_encoder_max_frame_rate video_encoder_max_frame_rate
Unsigned 8-bit integer
video_encoder_resolution_type video_encoder_resolution_type
Unsigned 8-bit integer
video_ip_tos_field_in_udp_packet video_ip_tos_field_in_udp_packet
Unsigned 8-bit integer
video_is_disable_rtcp_interval_randomization video_is_disable_rtcp_interval_randomization
Unsigned 8-bit integer
video_is_self_view video_is_self_view
Signed 32-bit integer
video_jitter_buffer_max_delay video_jitter_buffer_max_delay
Signed 32-bit integer
video_jitter_buffer_min_delay video_jitter_buffer_min_delay
Signed 32-bit integer
video_max_decoder_bit_rate video_max_decoder_bit_rate
Signed 32-bit integer
video_max_packet_size video_max_packet_size
Signed 32-bit integer
video_max_participants video_max_participants
Signed 32-bit integer
video_max_time_between_av_synchronization_events video_max_time_between_av_synchronization_events
Signed 32-bit integer
video_open_video_channel_without_dsp video_open_video_channel_without_dsp
Unsigned 8-bit integer
video_participant_layout video_participant_layout
Signed 32-bit integer
video_participant_name video_participant_name
String
video_participant_trigger_mode video_participant_trigger_mode
Signed 32-bit integer
video_participant_type video_participant_type
Signed 32-bit integer
video_participant_view_at_location_0 video_participant_view_at_location_0
Signed 32-bit integer
video_participant_view_at_location_1 video_participant_view_at_location_1
Signed 32-bit integer
video_participant_view_at_location_10 video_participant_view_at_location_10
Signed 32-bit integer
video_participant_view_at_location_11 video_participant_view_at_location_11
Signed 32-bit integer
video_participant_view_at_location_12 video_participant_view_at_location_12
Signed 32-bit integer
video_participant_view_at_location_13 video_participant_view_at_location_13
Signed 32-bit integer
video_participant_view_at_location_14 video_participant_view_at_location_14
Signed 32-bit integer
video_participant_view_at_location_15 video_participant_view_at_location_15
Signed 32-bit integer
video_participant_view_at_location_2 video_participant_view_at_location_2
Signed 32-bit integer
video_participant_view_at_location_3 video_participant_view_at_location_3
Signed 32-bit integer
video_participant_view_at_location_4 video_participant_view_at_location_4
Signed 32-bit integer
video_participant_view_at_location_5 video_participant_view_at_location_5
Signed 32-bit integer
video_participant_view_at_location_6 video_participant_view_at_location_6
Signed 32-bit integer
video_participant_view_at_location_7 video_participant_view_at_location_7
Signed 32-bit integer
video_participant_view_at_location_8 video_participant_view_at_location_8
Signed 32-bit integer
video_participant_view_at_location_9 video_participant_view_at_location_9
Signed 32-bit integer
video_quality_parameter_for_rate_control video_quality_parameter_for_rate_control
Unsigned 8-bit integer
video_rate_control_type video_rate_control_type
Signed 16-bit integer
video_remote_rtcp_port video_remote_rtcp_port
Unsigned 16-bit integer
video_remote_rtcpip_add_address_family video_remote_rtcpip_add_address_family
Signed 32-bit integer
video_remote_rtcpip_add_ipv6_addr_0 video_remote_rtcpip_add_ipv6_addr_0
Unsigned 32-bit integer
video_remote_rtcpip_add_ipv6_addr_1 video_remote_rtcpip_add_ipv6_addr_1
Unsigned 32-bit integer
video_remote_rtcpip_add_ipv6_addr_2 video_remote_rtcpip_add_ipv6_addr_2
Unsigned 32-bit integer
video_remote_rtcpip_add_ipv6_addr_3 video_remote_rtcpip_add_ipv6_addr_3
Unsigned 32-bit integer
video_remote_rtp_port video_remote_rtp_port
Unsigned 16-bit integer
video_rtcp_mean_tx_interval video_rtcp_mean_tx_interval
Unsigned 16-bit integer
video_rtcpcname video_rtcpcname
String
video_rtp_ssrc video_rtp_ssrc
Unsigned 32-bit integer
video_rx_packetization_mode video_rx_packetization_mode
Unsigned 8-bit integer
video_rx_rtp_payload_type video_rx_rtp_payload_type
Signed 32-bit integer
video_synchronization_method video_synchronization_method
Unsigned 8-bit integer
video_target_bitrate video_target_bitrate
Signed 32-bit integer
video_transmit_sequence_number video_transmit_sequence_number
Unsigned 32-bit integer
video_transmit_time_stamp video_transmit_time_stamp
Unsigned 32-bit integer
video_tx_packetization_mode video_tx_packetization_mode
Unsigned 8-bit integer
video_tx_rtp_payload_type video_tx_rtp_payload_type
Signed 32-bit integer
video_uni_directional_rtp video_uni_directional_rtp
Unsigned 8-bit integer
vlan_id_0 vlan_id_0
Unsigned 32-bit integer
vlan_id_1 vlan_id_1
Unsigned 32-bit integer
vlan_id_2 vlan_id_2
Unsigned 32-bit integer
vlan_id_3 vlan_id_3
Unsigned 32-bit integer
vlan_id_4 vlan_id_4
Unsigned 32-bit integer
vlan_id_5 vlan_id_5
Unsigned 32-bit integer
vlan_traffic_type vlan_traffic_type
Signed 32-bit integer
vmwi_status vmwi_status
Unsigned 8-bit integer
voice_input_connection_bus voice_input_connection_bus
Signed 32-bit integer
voice_input_connection_occupied voice_input_connection_occupied
Signed 32-bit integer
voice_input_connection_port voice_input_connection_port
Signed 32-bit integer
voice_input_connection_time_slot voice_input_connection_time_slot
Signed 32-bit integer
voice_packet_loss_counter voice_packet_loss_counter
Unsigned 32-bit integer
voice_packetizer_stack_ver voice_packetizer_stack_ver
Signed 32-bit integer
voice_payload_format voice_payload_format
Signed 32-bit integer
voice_prompt_addition_status voice_prompt_addition_status
Signed 32-bit integer
voice_prompt_coder voice_prompt_coder
Signed 32-bit integer
voice_prompt_duration voice_prompt_duration
Signed 32-bit integer
voice_prompt_id voice_prompt_id
Signed 32-bit integer
voice_prompt_query_result voice_prompt_query_result
Signed 32-bit integer
voice_quality_monitoring_burst_threshold voice_quality_monitoring_burst_threshold
Signed 32-bit integer
voice_quality_monitoring_delay_threshold voice_quality_monitoring_delay_threshold
Signed 32-bit integer
voice_quality_monitoring_end_of_call_r_val_delay_threshold voice_quality_monitoring_end_of_call_r_val_delay_threshold
Signed 32-bit integer
voice_quality_monitoring_minimum_gap_size voice_quality_monitoring_minimum_gap_size
Signed 32-bit integer
voice_quality_monitoring_mode voice_quality_monitoring_mode
Signed 32-bit integer
voice_quality_monitoring_mode_zero_fill voice_quality_monitoring_mode_zero_fill
Unsigned 8-bit integer
voice_signaling_mode voice_signaling_mode
Unsigned 16-bit integer
voice_spare1 voice_spare1
Unsigned 8-bit integer
voice_spare2 voice_spare2
Unsigned 8-bit integer
voice_stream_error_code voice_stream_error_code
Signed 32-bit integer
voice_stream_type voice_stream_type
Signed 32-bit integer
voice_volume voice_volume
Signed 32-bit integer
voltage_bit_return_code voltage_bit_return_code
Signed 32-bit integer
voltage_current_bit_return_code_0 voltage_current_bit_return_code_0
Signed 32-bit integer
voltage_current_bit_return_code_1 voltage_current_bit_return_code_1
Signed 32-bit integer
voltage_current_bit_return_code_10 voltage_current_bit_return_code_10
Signed 32-bit integer
voltage_current_bit_return_code_11 voltage_current_bit_return_code_11
Signed 32-bit integer
voltage_current_bit_return_code_12 voltage_current_bit_return_code_12
Signed 32-bit integer
voltage_current_bit_return_code_13 voltage_current_bit_return_code_13
Signed 32-bit integer
voltage_current_bit_return_code_14 voltage_current_bit_return_code_14
Signed 32-bit integer
voltage_current_bit_return_code_15 voltage_current_bit_return_code_15
Signed 32-bit integer
voltage_current_bit_return_code_16 voltage_current_bit_return_code_16
Signed 32-bit integer
voltage_current_bit_return_code_17 voltage_current_bit_return_code_17
Signed 32-bit integer
voltage_current_bit_return_code_18 voltage_current_bit_return_code_18
Signed 32-bit integer
voltage_current_bit_return_code_19 voltage_current_bit_return_code_19
Signed 32-bit integer
voltage_current_bit_return_code_2 voltage_current_bit_return_code_2
Signed 32-bit integer
voltage_current_bit_return_code_20 voltage_current_bit_return_code_20
Signed 32-bit integer
voltage_current_bit_return_code_21 voltage_current_bit_return_code_21
Signed 32-bit integer
voltage_current_bit_return_code_22 voltage_current_bit_return_code_22
Signed 32-bit integer
voltage_current_bit_return_code_23 voltage_current_bit_return_code_23
Signed 32-bit integer
voltage_current_bit_return_code_3 voltage_current_bit_return_code_3
Signed 32-bit integer
voltage_current_bit_return_code_4 voltage_current_bit_return_code_4
Signed 32-bit integer
voltage_current_bit_return_code_5 voltage_current_bit_return_code_5
Signed 32-bit integer
voltage_current_bit_return_code_6 voltage_current_bit_return_code_6
Signed 32-bit integer
voltage_current_bit_return_code_7 voltage_current_bit_return_code_7
Signed 32-bit integer
voltage_current_bit_return_code_8 voltage_current_bit_return_code_8
Signed 32-bit integer
voltage_current_bit_return_code_9 voltage_current_bit_return_code_9
Signed 32-bit integer
volume volume
Signed 32-bit integer
vp_end_index_0 vp_end_index_0
Signed 32-bit integer
vp_end_index_1 vp_end_index_1
Signed 32-bit integer
vp_start_index_0 vp_start_index_0
Signed 32-bit integer
vp_start_index_1 vp_start_index_1
Signed 32-bit integer
vpi vpi
Unsigned 16-bit integer
vrh vrh
Unsigned 32-bit integer
vrmr vrmr
Unsigned 32-bit integer
vrr vrr
Unsigned 32-bit integer
vta vta
Unsigned 32-bit integer
vtms vtms
Unsigned 32-bit integer
vtpa vtpa
Unsigned 32-bit integer
vtps vtps
Unsigned 32-bit integer
vts vts
Unsigned 32-bit integer
wrong_payload_type wrong_payload_type
Signed 32-bit integer
year year
Signed 32-bit integer
zero_fill zero_fill
String
zero_fill1 zero_fill1
String
zero_fill2 zero_fill2
String
zero_fill3 zero_fill3
String
zero_fill_padding zero_fill_padding
Unsigned 8-bit integer
actrace.cas.bchannel BChannel
Signed 32-bit integer
BChannel
actrace.cas.conn_id Connection ID
Signed 32-bit integer
Connection ID
actrace.cas.curr_state Current State
Signed 32-bit integer
Current State
actrace.cas.event Event
Signed 32-bit integer
New Event
actrace.cas.function Function
Signed 32-bit integer
Function
actrace.cas.next_state Next State
Signed 32-bit integer
Next State
actrace.cas.par0 Parameter 0
Signed 32-bit integer
Parameter 0
actrace.cas.par1 Parameter 1
Signed 32-bit integer
Parameter 1
actrace.cas.par2 Parameter 2
Signed 32-bit integer
Parameter 2
actrace.cas.source Source
Signed 32-bit integer
Source
actrace.cas.time Time
Signed 32-bit integer
Capture Time
actrace.cas.trunk Trunk Number
Signed 32-bit integer
Trunk Number
actrace.isdn.dir Direction
Signed 32-bit integer
Direction
actrace.isdn.length Length
Signed 16-bit integer
Length
actrace.isdn.trunk Trunk Number
Signed 16-bit integer
Trunk Number
ah.icv AH ICV
Byte array
IP Authentication Header Integrity Check Value
ah.sequence AH Sequence
Unsigned 32-bit integer
IP Authentication Header Sequence Number
ah.spi AH SPI
Unsigned 32-bit integer
IP Authentication Header Security Parameters Index
bvlc.bdt_ip IP
IPv4 address
BDT IP
bvlc.bdt_mask Mask
Byte array
BDT Broadcast Distribution Mask
bvlc.bdt_port Port
Unsigned 16-bit integer
BDT Port
bvlc.fdt_ip IP
IPv4 address
FDT IP
bvlc.fdt_port Port
Unsigned 16-bit integer
FDT Port
bvlc.fdt_timeout Timeout
Unsigned 16-bit integer
Foreign Device Timeout (seconds)
bvlc.fdt_ttl TTL
Unsigned 16-bit integer
Foreign Device Time To Live
bvlc.function Function
Unsigned 8-bit integer
BVLC Function
bvlc.fwd_ip IP
IPv4 address
FWD IP
bvlc.fwd_port Port
Unsigned 16-bit integer
FWD Port
bvlc.length BVLC-Length
Unsigned 16-bit integer
Length of BVLC
bvlc.reg_ttl TTL
Unsigned 16-bit integer
Foreign Device Time To Live
bvlc.result Result
Unsigned 16-bit integer
Result Code
bvlc.type Type
Unsigned 8-bit integer
Type
bctp.bvei BVEI
Unsigned 16-bit integer
BCTP Version Error Indicator
bctp.bvi BVI
Unsigned 16-bit integer
BCTP Version Indicator
bctp.tpei TPEI
Unsigned 16-bit integer
Tunnelled Protocol Error Indicator
bctp.tpi TPI
Unsigned 16-bit integer
Tunnelled Protocol Indicator
tuxedo.magic Magic
Unsigned 32-bit integer
TUXEDO magic
tuxedo.opcode Opcode
Unsigned 32-bit integer
TUXEDO opcode
bsap.dlci.cc Control Channel
Unsigned 8-bit integer
bsap.dlci.rsvd Reserved
Unsigned 8-bit integer
bsap.dlci.sapi SAPI
Unsigned 8-bit integer
bsap.pdu_type Message Type
Unsigned 8-bit integer
bssap.Gs_cause_ie Gs Cause IE
No value
Gs Cause IE
bssap.Tom_prot_disc TOM Protocol Discriminator
Unsigned 8-bit integer
TOM Protocol Discriminator
bssap.cell_global_id_ie Cell global identity IE
No value
Cell global identity IE
bssap.cn_id CN-Id
Unsigned 16-bit integer
CN-Id
bssap.dlci.cc Control Channel
Unsigned 8-bit integer
bssap.dlci.sapi SAPI
Unsigned 8-bit integer
bssap.dlci.spare Spare
Unsigned 8-bit integer
bssap.dlink_tnl_pld_cntrl_amd_inf_ie Downlink Tunnel Payload Control and Info IE
No value
Downlink Tunnel Payload Control and Info IE
bssap.emlpp_prio_ie eMLPP Priority IE
No value
eMLPP Priority IE
bssap.erroneous_msg_ie Erroneous message IE
No value
Erroneous message IE
bssap.extension Extension
Boolean
Extension
bssap.global_cn_id Global CN-Id
Byte array
Global CN-Id
bssap.global_cn_id_ie Global CN-Id IE
No value
Global CN-Id IE
bssap.gprs_loc_upd_type eMLPP Priority
Unsigned 8-bit integer
eMLPP Priority
bssap.ie_data IE Data
Byte array
IE Data
bssap.imei IMEI
String
IMEI
bssap.imei_ie IMEI IE
No value
IMEI IE
bssap.imeisv IMEISV
String
IMEISV
bssap.imesiv IMEISV IE
No value
IMEISV IE
bssap.imsi IMSI
String
IMSI
bssap.imsi_det_from_gprs_serv_type IMSI detach from GPRS service type
Unsigned 8-bit integer
IMSI detach from GPRS service type
bssap.imsi_ie IMSI IE
No value
IMSI IE
bssap.info_req Information requested
Unsigned 8-bit integer
Information requested
bssap.info_req_ie Information requested IE
No value
Information requested IE
bssap.length Length
Unsigned 8-bit integer
bssap.loc_area_id_ie Location area identifier IE
No value
Location area identifier IE
bssap.loc_inf_age Location information age IE
No value
Location information age IE
bssap.loc_upd_type_ie GPRS location update type IE
No value
GPRS location update type IE
bssap.mm_information MM information IE
No value
MM information IE
bssap.mobile_id_ie Mobile identity IE
No value
Mobile identity IE
bssap.mobile_station_state Mobile station state
Unsigned 8-bit integer
Mobile station state
bssap.mobile_station_state_ie Mobile station state IE
No value
Mobile station state IE
bssap.mobile_stn_cls_mrk1_ie Mobile station classmark 1 IE
No value
Mobile station classmark 1 IE
bssap.msi_det_from_gprs_serv_type_ie IMSI detach from GPRS service type IE
No value
IMSI detach from GPRS service type IE
bssap.msi_det_from_non_gprs_serv_type_ie IMSI detach from non-GPRS servic IE
No value
IMSI detach from non-GPRS servic IE
bssap.number_plan Numbering plan identification
Unsigned 8-bit integer
Numbering plan identification
bssap.pdu_type Message Type
Unsigned 8-bit integer
bssap.plmn_id PLMN-Id
Byte array
PLMN-Id
bssap.ptmsi PTMSI
Byte array
PTMSI
bssap.ptmsi_ie PTMSI IE
No value
PTMSI IE
bssap.reject_cause_ie Reject cause IE
No value
Reject cause IE
bssap.sgsn_number SGSN number
String
SGSN number
bssap.tmsi TMSI
Byte array
TMSI
bssap.tmsi_ie TMSI IE
No value
TMSI IE
bssap.tmsi_status TMSI status
Boolean
TMSI status
bssap.tmsi_status_ie TMSI status IE
No value
TMSI status IE
bssap.tunnel_prio Tunnel Priority
Unsigned 8-bit integer
Tunnel Priority
bssap.type_of_number Type of number
Unsigned 8-bit integer
Type of number
bssap.ulink_tnl_pld_cntrl_amd_inf_ie Uplink Tunnel Payload Control and Info IE
No value
Uplink Tunnel Payload Control and Info IE
bssap.vlr_number VLR number
String
VLR number
bssap.vlr_number_ie VLR number IE
No value
VLR number IE
bssap_plus.iei IEI
Unsigned 8-bit integer
bssap_plus.msg_type Message Type
Unsigned 8-bit integer
Message Type
vines_ip.protocol Protocol
Unsigned 8-bit integer
Vines protocol
bssgp.appid Application ID
Unsigned 8-bit integer
Application ID
bssgp.bvci BVCI
Unsigned 16-bit integer
bssgp.ci CI
Unsigned 16-bit integer
Cell Identity
bssgp.ie_type IE Type
Unsigned 8-bit integer
Information element type
bssgp.iei.nacc_cause NACC Cause
Unsigned 8-bit integer
NACC Cause
bssgp.imei IMEI
String
bssgp.imeisv IMEISV
String
bssgp.imsi IMSI
String
bssgp.lac LAC
Unsigned 16-bit integer
bssgp.mcc MCC
Unsigned 8-bit integer
bssgp.mnc MNC
Unsigned 8-bit integer
bssgp.nri NRI
Unsigned 16-bit integer
bssgp.nsei NSEI
Unsigned 16-bit integer
bssgp.pdu_type PDU Type
Unsigned 8-bit integer
bssgp.rac RAC
Unsigned 8-bit integer
bssgp.rad Routing Address Discriminator
Unsigned 8-bit integer
Routing Address Discriminator
bssgp.ran_inf_req_pdu_type_ext PDU Type Extension
Unsigned 8-bit integer
PDU Type Extension
bssgp.ran_req_pdu_type_ext PDU Type Extension
Unsigned 8-bit integer
PDU Type Extension
bssgp.rcid Reporting Cell Identity
Unsigned 64-bit integer
Reporting Cell Identity
bssgp.rrc_si_type RRC SI type
Unsigned 8-bit integer
RRC SI type
bssgp.tlli TLLI
Unsigned 32-bit integer
bssgp.tmsi_ptmsi TMSI/PTMSI
Unsigned 32-bit integer
ber.arbitrary arbitrary
Byte array
ber.T_arbitrary
ber.bitstring.empty Empty
Unsigned 8-bit integer
This is an empty bitstring
ber.bitstring.padding Padding
Unsigned 8-bit integer
Number of unsused bits in the last octet of the bitstring
ber.constructed.OCTETSTRING OCTETSTRING
Byte array
This is a component of an constructed OCTETSTRING
ber.data_value_descriptor data-value-descriptor
String
ber.ObjectDescriptor
ber.direct_reference direct-reference
ber.OBJECT_IDENTIFIER
ber.encoding encoding
Unsigned 32-bit integer
ber.T_encoding
ber.id.class Class
Unsigned 8-bit integer
Class of BER TLV Identifier
ber.id.pc P/C
Boolean
Primitive or Constructed BER encoding
ber.id.tag Tag
Unsigned 8-bit integer
Tag value for non-Universal classes
ber.id.uni_tag Tag
Unsigned 8-bit integer
Universal tag type
ber.indirect_reference indirect-reference
Signed 32-bit integer
ber.INTEGER
ber.length Length
Unsigned 32-bit integer
Length of contents
ber.octet_aligned octet-aligned
Byte array
ber.T_octet_aligned
ber.single_ASN1_type single-ASN1-type
No value
ber.T_single_ASN1_type
ber.unknown.BITSTRING BITSTRING
Byte array
This is an unknown BITSTRING
ber.unknown.BMPString BMPString
String
This is an unknown BMPString
ber.unknown.BOOLEAN BOOLEAN
Unsigned 8-bit integer
This is an unknown BOOLEAN
ber.unknown.ENUMERATED ENUMERATED
Unsigned 32-bit integer
This is an unknown ENUMERATED
ber.unknown.GRAPHICSTRING GRAPHICSTRING
String
This is an unknown GRAPHICSTRING
ber.unknown.GeneralString GeneralString
String
This is an unknown GeneralString
ber.unknown.GeneralizedTime GeneralizedTime
String
This is an unknown GeneralizedTime
ber.unknown.IA5String IA5String
String
This is an unknown IA5String
ber.unknown.INTEGER INTEGER
Unsigned 32-bit integer
This is an unknown INTEGER
ber.unknown.NumericString NumericString
String
This is an unknown NumericString
ber.unknown.OCTETSTRING OCTETSTRING
Byte array
This is an unknown OCTETSTRING
ber.unknown.OID OID
This is an unknown Object Identifier
ber.unknown.PrintableString PrintableString
String
This is an unknown PrintableString
ber.unknown.TeletexString TeletexString
String
This is an unknown TeletexString
ber.unknown.UTCTime UTCTime
String
This is an unknown UTCTime
ber.unknown.UTF8String UTF8String
String
This is an unknown UTF8String
ber.unknown.UniversalString UniversalString
String
This is an unknown UniversalString
ber.unknown.VisibleString VisibleString
String
This is an unknown VisibleString
bicc.cic Call identification Code (CIC)
Unsigned 32-bit integer
bfd.auth.key Authentication Key ID
Unsigned 8-bit integer
The Authentication Key ID, identifies which password is in use for this packet
bfd.auth.len Authentication Length
Unsigned 8-bit integer
The length, in bytes, of the authentication section
bfd.auth.password Password
String
The simple password in use on this session
bfd.auth.seq_num Sequence Number
Unsigned 32-bit integer
The Sequence Number is periodically incremented to prevent replay attacks
bfd.auth.type Authentication Type
Unsigned 8-bit integer
The type of authentication in use on this session
bfd.desired_min_tx_interval Desired Min TX Interval
Unsigned 32-bit integer
The minimum interval to use when transmitting BFD Control packets
bfd.detect_time_multiplier Detect Time Multiplier
Unsigned 8-bit integer
The transmit interval multiplied by this value is the failure detection time
bfd.diag Diagnostic Code
Unsigned 8-bit integer
This field give the reason for a BFD session failure
bfd.flags Message Flags
Unsigned 8-bit integer
bfd.flags.a Authentication Present
Boolean
The Authentication Section is present
bfd.flags.c Control Plane Independent
Boolean
If set, the BFD implementation is implemented in the forwarding plane
bfd.flags.d Demand
Boolean
bfd.flags.f Final
Boolean
bfd.flags.h I hear you
Boolean
bfd.flags.m Multipoint
Boolean
Reserved for future point-to-multipoint extensions
bfd.flags.p Poll
Boolean
bfd.message_length Message Length
Unsigned 8-bit integer
Length of the BFD Control packet, in bytes
bfd.my_discriminator My Discriminator
Unsigned 32-bit integer
bfd.required_min_echo_interval Required Min Echo Interval
Unsigned 32-bit integer
The minimum interval between received BFD Echo packets that this system can support
bfd.required_min_rx_interval Required Min RX Interval
Unsigned 32-bit integer
The minimum interval between received BFD Control packets that this system can support
bfd.sta Session State
Unsigned 8-bit integer
The BFD state as seen by the transmitting system
bfd.version Protocol Version
Unsigned 8-bit integer
The version number of the BFD protocol
bfd.your_discriminator Your Discriminator
Unsigned 32-bit integer
bittorrent.azureus_msg Azureus Message
No value
bittorrent.bdict Dictionary
No value
bittorrent.bdict.entry Entry
No value
bittorrent.bint Integer
Signed 32-bit integer
bittorrent.blist List
No value
bittorrent.bstr String
String
bittorrent.bstr.length String Length
Unsigned 32-bit integer
bittorrent.info_hash SHA1 Hash of info dictionary
Byte array
bittorrent.jpc.addr Cache Address
String
bittorrent.jpc.addr.length Cache Address Length
Unsigned 32-bit integer
bittorrent.jpc.port Port
Unsigned 32-bit integer
bittorrent.jpc.session Session ID
Unsigned 32-bit integer
bittorrent.length Field Length
Unsigned 32-bit integer
bittorrent.msg Message
No value
bittorrent.msg.aztype Message Type
String
bittorrent.msg.bitfield Bitfield data
Byte array
bittorrent.msg.length Message Length
Unsigned 32-bit integer
bittorrent.msg.prio Message Priority
Unsigned 8-bit integer
bittorrent.msg.type Message Type
Unsigned 8-bit integer
bittorrent.msg.typelen Message Type Length
Unsigned 32-bit integer
bittorrent.peer_id Peer ID
Byte array
bittorrent.piece.begin Begin offset of piece
Unsigned 32-bit integer
bittorrent.piece.data Data in a piece
Byte array
bittorrent.piece.index Piece index
Unsigned 32-bit integer
bittorrent.piece.length Piece Length
Unsigned 32-bit integer
bittorrent.protocol.name Protocol Name
String
bittorrent.protocol.name.length Protocol Name Length
Unsigned 8-bit integer
bittorrent.reserved Reserved Extension Bytes
Byte array
beep.ansno Ansno
Unsigned 32-bit integer
beep.channel Channel
Unsigned 32-bit integer
beep.end End
Boolean
beep.more.complete Complete
Boolean
beep.more.intermediate Intermediate
Boolean
beep.msgno Msgno
Unsigned 32-bit integer
beep.req Request
Boolean
beep.req.channel Request Channel Number
Unsigned 32-bit integer
beep.rsp Response
Boolean
beep.rsp.channel Response Channel Number
Unsigned 32-bit integer
beep.seq Sequence
Boolean
beep.seq.ackno Ackno
Unsigned 32-bit integer
beep.seq.channel Sequence Channel Number
Unsigned 32-bit integer
beep.seq.window Window
Unsigned 32-bit integer
beep.seqno Seqno
Unsigned 32-bit integer
beep.size Size
Unsigned 32-bit integer
beep.status.negative Negative
Boolean
beep.status.positive Positive
Boolean
beep.violation Protocol Violation
Boolean
manolito.checksum Checksum
Unsigned 32-bit integer
Checksum used for verifying integrity
manolito.dest Destination IP Address
IPv4 address
Destination IPv4 address
manolito.options Options
Unsigned 32-bit integer
Packet-dependent data
manolito.seqno Sequence Number
Unsigned 32-bit integer
Incremental sequence number
manolito.src Forwarded IP Address
IPv4 address
Host packet was forwarded from (or 0)
hci_h1.direction Direction
Unsigned 8-bit integer
HCI Packet Direction Sent/Rcvd
hci_h1.type HCI Packet Type
Unsigned 8-bit integer
HCI Packet Type
btacl.bc_flag BC Flag
Unsigned 16-bit integer
Broadcast Flag
btacl.chandle Connection Handle
Unsigned 16-bit integer
Connection Handle
btacl.continuation_to This is a continuation to the PDU in frame
Frame number
This is a continuation to the PDU in frame #
btacl.data Data
No value
Data
btacl.length Data Total Length
Unsigned 16-bit integer
Data Total Length
btacl.pb_flag PB Flag
Unsigned 16-bit integer
Packet Boundary Flag
btacl.reassembled_in This PDU is reassembled in frame
Frame number
This PDU is reassembled in frame #
bthci_cmd.afh_ch_assessment_mode AFH Channel Assessment Mode
Unsigned 8-bit integer
AFH Channel Assessment Mode
bthci_cmd.afh_ch_classification Channel Classification
No value
Channel Classification
bthci_cmd.air_coding_format Air Coding Format
Unsigned 16-bit integer
Air Coding Format
bthci_cmd.allow_role_switch Allow Role Switch
Unsigned 8-bit integer
Allow Role Switch
bthci_cmd.auth_enable Authentication Enable
Unsigned 8-bit integer
Authentication Enable
bthci_cmd.auth_requirements Authentication Requirements
Unsigned 8-bit integer
Authentication Requirements
bthci_cmd.auto_accept_flag Auto Accept Flag
Unsigned 8-bit integer
Class of Device of Interest
bthci_cmd.bd_addr BD_ADDR:
No value
Bluetooth Device Address
bthci_cmd.beacon_max_int Beacon Max Interval
Unsigned 16-bit integer
Maximal acceptable number of Baseband slots between consecutive beacons.
bthci_cmd.beacon_min_int Beacon Min Interval
Unsigned 16-bit integer
Minimum acceptable number of Baseband slots between consecutive beacons.
bthci_cmd.class_of_device Class of Device
Unsigned 24-bit integer
Class of Device
bthci_cmd.class_of_device_mask Class of Device Mask
Unsigned 24-bit integer
Bit Mask used to determine which bits of the Class of Device parameter are of interest.
bthci_cmd.clock_offset Clock Offset
Unsigned 16-bit integer
Bit 2-16 of the Clock Offset between CLKmaster-CLKslave
bthci_cmd.clock_offset_valid Clock_Offset_Valid_Flag
Unsigned 16-bit integer
Indicates if clock offset is valid
bthci_cmd.connection_handle Connection Handle
Unsigned 16-bit integer
Connection Handle
bthci_cmd.delay_variation Delay Variation
Unsigned 32-bit integer
Delay Variation, in microseconds
bthci_cmd.delete_all_flag Delete All Flag
Unsigned 8-bit integer
Delete All Flag
bthci_cmd.device_name Device Name
String
Userfriendly descriptive name for the device
bthci_cmd.eir_data Data
Byte array
EIR Data
bthci_cmd.eir_data_type Type
Unsigned 8-bit integer
Data Type
bthci_cmd.eir_struct_length Length
Unsigned 8-bit integer
Structure Length
bthci_cmd.encrypt_mode Encryption Mode
Unsigned 8-bit integer
Encryption Mode
bthci_cmd.encryption_enable Encryption Enable
Unsigned 8-bit integer
Encryption Enable
bthci_cmd.err_data_reporting Erroneous Data Reporting
Unsigned 8-bit integer
Erroneous Data Reporting
bthci_cmd.evt_mask_00 Inquiry Complete
Unsigned 8-bit integer
Inquiry Complete Bit
bthci_cmd.evt_mask_01 Inquiry Result
Unsigned 8-bit integer
Inquiry Result Bit
bthci_cmd.evt_mask_02 Connect Complete
Unsigned 8-bit integer
Connection Complete Bit
bthci_cmd.evt_mask_03 Connect Request
Unsigned 8-bit integer
Connect Request Bit
bthci_cmd.evt_mask_04 Disconnect Complete
Unsigned 8-bit integer
Disconnect Complete Bit
bthci_cmd.evt_mask_05 Auth Complete
Unsigned 8-bit integer
Auth Complete Bit
bthci_cmd.evt_mask_06 Remote Name Req Complete
Unsigned 8-bit integer
Remote Name Req Complete Bit
bthci_cmd.evt_mask_07 Encrypt Change
Unsigned 8-bit integer
Encrypt Change Bit
bthci_cmd.evt_mask_10 Change Connection Link Key Complete
Unsigned 8-bit integer
Change Connection Link Key Complete Bit
bthci_cmd.evt_mask_11 Master Link Key Complete
Unsigned 8-bit integer
Master Link Key Complete Bit
bthci_cmd.evt_mask_12 Read Remote Supported Features
Unsigned 8-bit integer
Read Remote Supported Features Bit
bthci_cmd.evt_mask_13 Read Remote Ver Info Complete
Unsigned 8-bit integer
Read Remote Ver Info Complete Bit
bthci_cmd.evt_mask_14 QoS Setup Complete
Unsigned 8-bit integer
QoS Setup Complete Bit
bthci_cmd.evt_mask_17 Hardware Error
Unsigned 8-bit integer
Hardware Error Bit
bthci_cmd.evt_mask_20 Flush Occurred
Unsigned 8-bit integer
Flush Occurred Bit
bthci_cmd.evt_mask_21 Role Change
Unsigned 8-bit integer
Role Change Bit
bthci_cmd.evt_mask_23 Mode Change
Unsigned 8-bit integer
Mode Change Bit
bthci_cmd.evt_mask_24 Return Link Keys
Unsigned 8-bit integer
Return Link Keys Bit
bthci_cmd.evt_mask_25 PIN Code Request
Unsigned 8-bit integer
PIN Code Request Bit
bthci_cmd.evt_mask_26 Link Key Request
Unsigned 8-bit integer
Link Key Request Bit
bthci_cmd.evt_mask_27 Link Key Notification
Unsigned 8-bit integer
Link Key Notification Bit
bthci_cmd.evt_mask_30 Loopback Command
Unsigned 8-bit integer
Loopback Command Bit
bthci_cmd.evt_mask_31 Data Buffer Overflow
Unsigned 8-bit integer
Data Buffer Overflow Bit
bthci_cmd.evt_mask_32 Max Slots Change
Unsigned 8-bit integer
Max Slots Change Bit
bthci_cmd.evt_mask_33 Read Clock Offset Complete
Unsigned 8-bit integer
Read Clock Offset Complete Bit
bthci_cmd.evt_mask_34 Connection Packet Type Changed
Unsigned 8-bit integer
Connection Packet Type Changed Bit
bthci_cmd.evt_mask_35 QoS Violation
Unsigned 8-bit integer
QoS Violation Bit
bthci_cmd.evt_mask_36 Page Scan Mode Change
Unsigned 8-bit integer
Page Scan Mode Change Bit
bthci_cmd.evt_mask_37 Page Scan Repetition Mode Change
Unsigned 8-bit integer
Page Scan Repetition Mode Change Bit
bthci_cmd.evt_mask_40 Flow Specification Complete
Unsigned 8-bit integer
Flow Specification Complete Bit
bthci_cmd.evt_mask_41 Inquiry Result With RSSI
Unsigned 8-bit integer
Inquiry Result With RSSI Bit
bthci_cmd.evt_mask_42 Read Remote Ext. Features Complete
Unsigned 8-bit integer
Read Remote Ext. Features Complete Bit
bthci_cmd.evt_mask_53 Synchronous Connection Complete
Unsigned 8-bit integer
Synchronous Connection Complete Bit
bthci_cmd.evt_mask_54 Synchronous Connection Changed
Unsigned 8-bit integer
Synchronous Connection Changed Bit
bthci_cmd.evt_mask_55 Sniff Subrate
Unsigned 8-bit integer
Sniff Subrate Bit
bthci_cmd.evt_mask_56 Extended Inquiry Result
Unsigned 8-bit integer
Extended Inquiry Result Bit
bthci_cmd.evt_mask_57 Encryption Key Refresh Complete
Unsigned 8-bit integer
Encryption Key Refresh Complete Bit
bthci_cmd.evt_mask_60 IO Capability Request
Unsigned 8-bit integer
IO Capability Request Bit
bthci_cmd.evt_mask_61 IO Capability Response
Unsigned 8-bit integer
IO Capability Response Bit
bthci_cmd.evt_mask_62 User Confirmation Request
Unsigned 8-bit integer
User Confirmation Request Bit
bthci_cmd.evt_mask_63 User Passkey Request
Unsigned 8-bit integer
User Passkey Request Bit
bthci_cmd.evt_mask_64 Remote OOB Data Request
Unsigned 8-bit integer
Remote OOB Data Request Bit
bthci_cmd.evt_mask_65 Simple Pairing Complete
Unsigned 8-bit integer
Simple Pairing Complete Bit
bthci_cmd.evt_mask_67 Link Supervision Timeout Changed
Unsigned 8-bit integer
Link Supervision Timeout Changed Bit
bthci_cmd.evt_mask_70 Enhanced Flush Complete
Unsigned 8-bit integer
Enhanced Flush Complete Bit
bthci_cmd.evt_mask_72 User Passkey Notification
Unsigned 8-bit integer
User Passkey Notification Bit
bthci_cmd.evt_mask_73 Keypress Notification
Unsigned 8-bit integer
Keypress Notification Bit
bthci_cmd.fec_required FEC Required
Unsigned 8-bit integer
FEC Required
bthci_cmd.filter_condition_type Filter Condition Type
Unsigned 8-bit integer
Filter Condition Type
bthci_cmd.filter_type Filter Type
Unsigned 8-bit integer
Filter Type
bthci_cmd.flags Flags
Unsigned 8-bit integer
Flags
bthci_cmd.flow_contr_enable Flow Control Enable
Unsigned 8-bit integer
Flow Control Enable
bthci_cmd.flow_control SCO Flow Control
Unsigned 8-bit integer
SCO Flow Control
bthci_cmd.flush_packet_type Packet Type
Unsigned 8-bit integer
Packet Type
bthci_cmd.hash_c Hash C
Unsigned 16-bit integer
Hash C
bthci_cmd.hold_mode_inquiry Suspend Inquiry Scan
Unsigned 8-bit integer
Device can enter low power state
bthci_cmd.hold_mode_max_int Hold Mode Max Interval
Unsigned 16-bit integer
Maximal acceptable number of Baseband slots to wait in Hold Mode.
bthci_cmd.hold_mode_min_int Hold Mode Min Interval
Unsigned 16-bit integer
Minimum acceptable number of Baseband slots to wait in Hold Mode.
bthci_cmd.hold_mode_page Suspend Page Scan
Unsigned 8-bit integer
Device can enter low power state
bthci_cmd.hold_mode_periodic Suspend Periodic Inquiries
Unsigned 8-bit integer
Device can enter low power state
bthci_cmd.input_coding Input Coding
Unsigned 16-bit integer
Authentication Enable
bthci_cmd.input_data_format Input Data Format
Unsigned 16-bit integer
Input Data Format
bthci_cmd.input_sample_size Input Sample Size
Unsigned 16-bit integer
Input Sample Size
bthci_cmd.inq_length Inquiry Length
Unsigned 8-bit integer
Inquiry Length (*1.28s)
bthci_cmd.inq_scan_type Scan Type
Unsigned 8-bit integer
Scan Type
bthci_cmd.interval Interval
Unsigned 16-bit integer
Interval
bthci_cmd.io_capability IO Capability
Unsigned 8-bit integer
IO Capability
bthci_cmd.key_flag Key Flag
Unsigned 8-bit integer
Key Flag
bthci_cmd.lap LAP
Unsigned 24-bit integer
LAP for the inquiry access code
bthci_cmd.latency Latecy
Unsigned 32-bit integer
Latency, in microseconds
bthci_cmd.lin_pcm_bit_pos Linear PCM Bit Pos
Unsigned 16-bit integer
# bit pos. that MSB of sample is away from starting at MSB
bthci_cmd.link_key Link Key
Byte array
Link Key for the associated BD_ADDR
bthci_cmd.link_policy_hold Enable Hold Mode
Unsigned 16-bit integer
Enable Hold Mode
bthci_cmd.link_policy_park Enable Park Mode
Unsigned 16-bit integer
Enable Park Mode
bthci_cmd.link_policy_sniff Enable Sniff Mode
Unsigned 16-bit integer
Enable Sniff Mode
bthci_cmd.link_policy_switch Enable Master Slave Switch
Unsigned 16-bit integer
Enable Master Slave Switch
bthci_cmd.loopback_mode Loopback Mode
Unsigned 8-bit integer
Loopback Mode
bthci_cmd.max_data_length_acl Host ACL Data Packet Length (bytes)
Unsigned 16-bit integer
Max Host ACL Data Packet length of data portion host is able to accept
bthci_cmd.max_data_length_sco Host SCO Data Packet Length (bytes)
Unsigned 8-bit integer
Max Host SCO Data Packet length of data portion host is able to accept
bthci_cmd.max_data_num_acl Host Total Num ACL Data Packets
Unsigned 16-bit integer
Total Number of HCI ACL Data Packets that can be stored in the data buffers of the Host
bthci_cmd.max_data_num_sco Host Total Num SCO Data Packets
Unsigned 16-bit integer
Total Number of HCI SCO Data Packets that can be stored in the data buffers of the Host
bthci_cmd.max_latency Max. Latency
Unsigned 16-bit integer
Max. Latency in baseband slots
bthci_cmd.max_latency_ms Max. Latency (ms)
Unsigned 16-bit integer
Max. Latency (ms)
bthci_cmd.max_period_length Max Period Length
Unsigned 16-bit integer
Maximum amount of time specified between consecutive inquiries.
bthci_cmd.min_local_timeout Min. Local Timeout
Unsigned 16-bit integer
Min. Local Timeout in baseband slots
bthci_cmd.min_period_length Min Period Length
Unsigned 16-bit integer
Minimum amount of time specified between consecutive inquiries.
bthci_cmd.min_remote_timeout Min. Remote Timeout
Unsigned 16-bit integer
Min. Remote Timeout in baseband slots
bthci_cmd.notification_type Notification Type
Unsigned 8-bit integer
Notification Type
bthci_cmd.num_broad_retran Num Broadcast Retran
Unsigned 8-bit integer
Number of Broadcast Retransmissions
bthci_cmd.num_compl_packets Number of Completed Packets
Unsigned 16-bit integer
Number of Completed HCI Data Packets
bthci_cmd.num_curr_iac Number of Current IAC
Unsigned 8-bit integer
Number of IACs which are currently in use
bthci_cmd.num_handles Number of Handles
Unsigned 8-bit integer
Number of Handles
bthci_cmd.num_responses Num Responses
Unsigned 8-bit integer
Number of Responses
bthci_cmd.ocf ocf
Unsigned 16-bit integer
Opcode Command Field
bthci_cmd.ogf ogf
Unsigned 16-bit integer
Opcode Group Field
bthci_cmd.oob_data_present OOB Data Present
Unsigned 8-bit integer
OOB Data Present
bthci_cmd.opcode Command Opcode
Unsigned 16-bit integer
HCI Command Opcode
bthci_cmd.packet_type_2dh1 Packet Type 2-DH1
Unsigned 16-bit integer
Packet Type 2-DH1
bthci_cmd.packet_type_2dh3 Packet Type 2-DH3
Unsigned 16-bit integer
Packet Type 2-DH3
bthci_cmd.packet_type_2dh5 Packet Type 2-DH5
Unsigned 16-bit integer
Packet Type 2-DH5
bthci_cmd.packet_type_3dh1 Packet Type 3-DH1
Unsigned 16-bit integer
Packet Type 3-DH1
bthci_cmd.packet_type_3dh3 Packet Type 3-DH3
Unsigned 16-bit integer
Packet Type 3-DH3
bthci_cmd.packet_type_3dh5 Packet Type 3-DH5
Unsigned 16-bit integer
Packet Type 3-DH5
bthci_cmd.packet_type_dh1 Packet Type DH1
Unsigned 16-bit integer
Packet Type DH1
bthci_cmd.packet_type_dh3 Packet Type DH3
Unsigned 16-bit integer
Packet Type DH3
bthci_cmd.packet_type_dh5 Packet Type DH5
Unsigned 16-bit integer
Packet Type DH5
bthci_cmd.packet_type_dm1 Packet Type DM1
Unsigned 16-bit integer
Packet Type DM1
bthci_cmd.packet_type_dm3 Packet Type DM3
Unsigned 16-bit integer
Packet Type DM3
bthci_cmd.packet_type_dm5 Packet Type DM5
Unsigned 16-bit integer
Packet Type DM5
bthci_cmd.packet_type_hv1 Packet Type HV1
Unsigned 16-bit integer
Packet Type HV1
bthci_cmd.packet_type_hv2 Packet Type HV2
Unsigned 16-bit integer
Packet Type HV2
bthci_cmd.packet_type_hv3 Packet Type HV3
Unsigned 16-bit integer
Packet Type HV3
bthci_cmd.page_number Page Number
Unsigned 8-bit integer
Page Number
bthci_cmd.page_scan_mode Page Scan Mode
Unsigned 8-bit integer
Page Scan Mode
bthci_cmd.page_scan_period_mode Page Scan Period Mode
Unsigned 8-bit integer
Page Scan Period Mode
bthci_cmd.page_scan_repetition_mode Page Scan Repetition Mode
Unsigned 8-bit integer
Page Scan Repetition Mode
bthci_cmd.param_length Parameter Total Length
Unsigned 8-bit integer
Parameter Total Length
bthci_cmd.params Command Parameters
Byte array
Command Parameters
bthci_cmd.passkey Passkey
Unsigned 32-bit integer
Passkey
bthci_cmd.peak_bandwidth Peak Bandwidth
Unsigned 32-bit integer
Peak Bandwidth, in bytes per second
bthci_cmd.pin_code PIN Code
String
PIN Code
bthci_cmd.pin_code_length PIN Code Length
Unsigned 8-bit integer
PIN Code Length
bthci_cmd.pin_type PIN Type
Unsigned 8-bit integer
PIN Types
bthci_cmd.power_level Power Level (dBm)
Signed 8-bit integer
Power Level (dBm)
bthci_cmd.power_level_type Type
Unsigned 8-bit integer
Type
bthci_cmd.randomizer_r Randomizer R
Unsigned 16-bit integer
Randomizer R
bthci_cmd.read_all_flag Read All Flag
Unsigned 8-bit integer
Read All Flag
bthci_cmd.reason Reason
Unsigned 8-bit integer
Reason
bthci_cmd.retransmission_effort Retransmission Effort
Unsigned 8-bit integer
Retransmission Effort
bthci_cmd.role Role
Unsigned 8-bit integer
Role
bthci_cmd.rx_bandwidth Rx Bandwidth (bytes/s)
Unsigned 32-bit integer
Rx Bandwidth
bthci_cmd.scan_enable Scan Enable
Unsigned 8-bit integer
Scan Enable
bthci_cmd.sco_packet_type_2ev3 Packet Type 2-EV3
Unsigned 16-bit integer
Packet Type 2-EV3
bthci_cmd.sco_packet_type_2ev5 Packet Type 2-EV5
Unsigned 16-bit integer
Packet Type 2-EV5
bthci_cmd.sco_packet_type_3ev3 Packet Type 3-EV3
Unsigned 16-bit integer
Packet Type 3-EV3
bthci_cmd.sco_packet_type_3ev5 Packet Type 3-EV5
Unsigned 16-bit integer
Packet Type 3-EV5
bthci_cmd.sco_packet_type_ev3 Packet Type EV3
Unsigned 16-bit integer
Packet Type EV3
bthci_cmd.sco_packet_type_ev4 Packet Type EV4
Unsigned 16-bit integer
Packet Type EV4
bthci_cmd.sco_packet_type_ev5 Packet Type EV5
Unsigned 16-bit integer
Packet Type EV5
bthci_cmd.sco_packet_type_hv1 Packet Type HV1
Unsigned 16-bit integer
Packet Type HV1
bthci_cmd.sco_packet_type_hv2 Packet Type HV2
Unsigned 16-bit integer
Packet Type HV2
bthci_cmd.sco_packet_type_hv3 Packet Type HV3
Unsigned 16-bit integer
Packet Type HV3
bthci_cmd.service_class_uuid128 UUID
Byte array
128-bit Service Class UUID
bthci_cmd.service_class_uuid16 UUID
Unsigned 16-bit integer
16-bit Service Class UUID
bthci_cmd.service_class_uuid32 UUID
Unsigned 32-bit integer
32-bit Service Class UUID
bthci_cmd.service_type Service Type
Unsigned 8-bit integer
Service Type
bthci_cmd.simple_pairing_debug_mode Simple Pairing Debug Mode
Unsigned 8-bit integer
Simple Pairing Debug Mode
bthci_cmd.simple_pairing_mode Simple Pairing Mode
Unsigned 8-bit integer
Simple Pairing Mode
bthci_cmd.sniff_attempt Sniff Attempt
Unsigned 16-bit integer
Number of Baseband receive slots for sniff attempt.
bthci_cmd.sniff_max_int Sniff Max Interval
Unsigned 16-bit integer
Maximal acceptable number of Baseband slots between each sniff period.
bthci_cmd.sniff_min_int Sniff Min Interval
Unsigned 16-bit integer
Minimum acceptable number of Baseband slots between each sniff period.
bthci_cmd.status Status
Unsigned 8-bit integer
Status
bthci_cmd.timeout Timeout
Unsigned 16-bit integer
Number of Baseband slots for timeout.
bthci_cmd.token_bucket_size Available Token Bucket Size
Unsigned 32-bit integer
Token Bucket Size in bytes
bthci_cmd.token_rate Available Token Rate
Unsigned 32-bit integer
Token Rate, in bytes per second
bthci_cmd.tx_bandwidth Tx Bandwidth (bytes/s)
Unsigned 32-bit integer
Tx Bandwidth
bthci_cmd.which_clock Which Clock
Unsigned 8-bit integer
Which Clock
bthci_cmd.window Interval
Unsigned 16-bit integer
Window
bthci_cmd_num_link_keys Number of Link Keys
Unsigned 8-bit integer
Number of Link Keys
bthci_evt.afh_ch_assessment_mode AFH Channel Assessment Mode
Unsigned 8-bit integer
AFH Channel Assessment Mode
bthci_evt.afh_channel_map AFH Channel Map
AFH Channel Map
bthci_evt.afh_mode AFH Mode
Unsigned 8-bit integer
AFH Mode
bthci_evt.air_mode Air Mode
Unsigned 8-bit integer
Air Mode
bthci_evt.auth_enable Authentication
Unsigned 8-bit integer
Authentication Enable
bthci_evt.auth_requirements Authentication Requirements
Unsigned 8-bit integer
Authentication Requirements
bthci_evt.bd_addr BD_ADDR:
No value
Bluetooth Device Address
bthci_evt.class_of_device Class of Device
Unsigned 24-bit integer
Class of Device
bthci_evt.clock Clock
Unsigned 32-bit integer
Clock
bthci_evt.clock_accuracy Clock
Unsigned 16-bit integer
Clock
bthci_evt.clock_offset Clock Offset
Unsigned 16-bit integer
Bit 2-16 of the Clock Offset between CLKmaster-CLKslave
bthci_evt.code Event Code
Unsigned 8-bit integer
Event Code
bthci_evt.com_opcode Command Opcode
Unsigned 16-bit integer
Command Opcode
bthci_evt.comp_id Manufacturer Name
Unsigned 16-bit integer
Manufacturer Name of Bluetooth Hardware
bthci_evt.connection_handle Connection Handle
Unsigned 16-bit integer
Connection Handle
bthci_evt.country_code Country Code
Unsigned 8-bit integer
Country Code
bthci_evt.current_mode Current Mode
Unsigned 8-bit integer
Current Mode
bthci_evt.delay_variation Available Delay Variation
Unsigned 32-bit integer
Available Delay Variation, in microseconds
bthci_evt.device_name Device Name
String
Userfriendly descriptive name for the device
bthci_evt.encryption_enable Encryption Enable
Unsigned 8-bit integer
Encryption Enable
bthci_evt.encryption_mode Encryption Mode
Unsigned 8-bit integer
Encryption Mode
bthci_evt.err_data_reporting Erroneous Data Reporting
Unsigned 8-bit integer
Erroneous Data Reporting
bthci_evt.failed_contact_counter Failed Contact Counter
Unsigned 16-bit integer
Failed Contact Counter
bthci_evt.fec_required FEC Required
Unsigned 8-bit integer
FEC Required
bthci_evt.flags Flags
Unsigned 8-bit integer
Flags
bthci_evt.flow_direction Flow Direction
Unsigned 8-bit integer
Flow Direction
bthci_evt.hardware_code Hardware Code
Unsigned 8-bit integer
Hardware Code (implementation specific)
bthci_evt.hash_c Hash C
Unsigned 16-bit integer
Hash C
bthci_evt.hci_vers_nr HCI Version
Unsigned 8-bit integer
Version of the Current HCI
bthci_evt.hold_mode_inquiry Suspend Inquiry Scan
Unsigned 8-bit integer
Device can enter low power state
bthci_evt.hold_mode_page Suspend Page Scan
Unsigned 8-bit integer
Device can enter low power state
bthci_evt.hold_mode_periodic Suspend Periodic Inquiries
Unsigned 8-bit integer
Device can enter low power state
bthci_evt.input_coding Input Coding
Unsigned 16-bit integer
Authentication Enable
bthci_evt.input_data_format Input Data Format
Unsigned 16-bit integer
Input Data Format
bthci_evt.input_sample_size Input Sample Size
Unsigned 16-bit integer
Input Sample Size
bthci_evt.inq_scan_type Scan Type
Unsigned 8-bit integer
Scan Type
bthci_evt.interval Interval
Unsigned 16-bit integer
Interval - Number of Baseband slots
bthci_evt.io_capability IO Capability
Unsigned 8-bit integer
IO Capability
bthci_evt.key_flag Key Flag
Unsigned 8-bit integer
Key Flag
bthci_evt.key_type Key Type
Unsigned 8-bit integer
Key Type
bthci_evt.latency Available Latecy
Unsigned 32-bit integer
Available Latency, in microseconds
bthci_evt.link_key Link Key
Byte array
Link Key for the associated BD_ADDR
bthci_evt.link_policy_hold Enable Hold Mode
Unsigned 16-bit integer
Enable Hold Mode
bthci_evt.link_policy_park Enable Park Mode
Unsigned 16-bit integer
Enable Park Mode
bthci_evt.link_policy_sniff Enable Sniff Mode
Unsigned 16-bit integer
Enable Sniff Mode
bthci_evt.link_policy_switch Enable Master Slave Switch
Unsigned 16-bit integer
Enable Master Slave Switch
bthci_evt.link_quality Link Quality
Unsigned 8-bit integer
Link Quality (0x00 - 0xFF Higher Value = Better Link)
bthci_evt.link_supervision_timeout Link Supervision Timeout
Unsigned 16-bit integer
Link Supervision Timeout
bthci_evt.link_type Link Type
Unsigned 8-bit integer
Link Type
bthci_evt.link_type_2dh1 ACL Link Type 2-DH1
Unsigned 16-bit integer
ACL Link Type 2-DH1
bthci_evt.link_type_2dh3 ACL Link Type 2-DH3
Unsigned 16-bit integer
ACL Link Type 2-DH3
bthci_evt.link_type_2dh5 ACL Link Type 2-DH5
Unsigned 16-bit integer
ACL Link Type 2-DH5
bthci_evt.link_type_3dh1 ACL Link Type 3-DH1
Unsigned 16-bit integer
ACL Link Type 3-DH1
bthci_evt.link_type_3dh3 ACL Link Type 3-DH3
Unsigned 16-bit integer
ACL Link Type 3-DH3
bthci_evt.link_type_3dh5 ACL Link Type 3-DH5
Unsigned 16-bit integer
ACL Link Type 3-DH5
bthci_evt.link_type_dh1 ACL Link Type DH1
Unsigned 16-bit integer
ACL Link Type DH1
bthci_evt.link_type_dh3 ACL Link Type DH3
Unsigned 16-bit integer
ACL Link Type DH3
bthci_evt.link_type_dh5 ACL Link Type DH5
Unsigned 16-bit integer
ACL Link Type DH5
bthci_evt.link_type_dm1 ACL Link Type DM1
Unsigned 16-bit integer
ACL Link Type DM1
bthci_evt.link_type_dm3 ACL Link Type DM3
Unsigned 16-bit integer
ACL Link Type DM3
bthci_evt.link_type_dm5 ACL Link Type DM5
Unsigned 16-bit integer
ACL Link Type DM5
bthci_evt.link_type_hv1 SCO Link Type HV1
Unsigned 16-bit integer
SCO Link Type HV1
bthci_evt.link_type_hv2 SCO Link Type HV2
Unsigned 16-bit integer
SCO Link Type HV2
bthci_evt.link_type_hv3 SCO Link Type HV3
Unsigned 16-bit integer
SCO Link Type HV3
bthci_evt.lmp_feature 3-slot packets
Unsigned 8-bit integer
3-slot packets
bthci_evt.lmp_handle LMP Handle
Unsigned 16-bit integer
LMP Handle
bthci_evt.lmp_sub_vers_nr LMP Subversion
Unsigned 16-bit integer
Subversion of the Current LMP
bthci_evt.lmp_vers_nr LMP Version
Unsigned 8-bit integer
Version of the Current LMP
bthci_evt.local_supported_cmds Local Supported Commands
Byte array
Local Supported Commands
bthci_evt.loopback_mode Loopback Mode
Unsigned 8-bit integer
Loopback Mode
bthci_evt.max_data_length_acl Host ACL Data Packet Length (bytes)
Unsigned 16-bit integer
Max Host ACL Data Packet length of data portion host is able to accept
bthci_evt.max_data_length_sco Host SCO Data Packet Length (bytes)
Unsigned 8-bit integer
Max Host SCO Data Packet length of data portion host is able to accept
bthci_evt.max_data_num_acl Host Total Num ACL Data Packets
Unsigned 16-bit integer
Total Number of HCI ACL Data Packets that can be stored in the data buffers of the Host
bthci_evt.max_data_num_sco Host Total Num SCO Data Packets
Unsigned 16-bit integer
Total Number of HCI SCO Data Packets that can be stored in the data buffers of the Host
bthci_evt.max_num_keys Max Num Keys
Unsigned 16-bit integer
Total Number of Link Keys that the Host Controller can store
bthci_evt.max_page_number Max. Page Number
Unsigned 8-bit integer
Max. Page Number
bthci_evt.max_rx_latency Max. Rx Latency
Unsigned 16-bit integer
Max. Rx Latency
bthci_evt.max_slots Maximum Number of Slots
Unsigned 8-bit integer
Maximum Number of slots allowed for baseband packets
bthci_evt.max_tx_latency Max. Tx Latency
Unsigned 16-bit integer
Max. Tx Latency
bthci_evt.min_local_timeout Min. Local Timeout
Unsigned 16-bit integer
Min. Local Timeout
bthci_evt.min_remote_timeout Min. Remote Timeout
Unsigned 16-bit integer
Min. Remote Timeout
bthci_evt.notification_type Notification Type
Unsigned 8-bit integer
Notification Type
bthci_evt.num_broad_retran Num Broadcast Retran
Unsigned 8-bit integer
Number of Broadcast Retransmissions
bthci_evt.num_command_packets Number of Allowed Command Packets
Unsigned 8-bit integer
Number of Allowed Command Packets
bthci_evt.num_compl_packets Number of Completed Packets
Unsigned 16-bit integer
The number of HCI Data Packets that have been completed
bthci_evt.num_curr_iac Num Current IAC
Unsigned 8-bit integer
Num of IACs currently in use to simultaneously listen
bthci_evt.num_handles Number of Connection Handles
Unsigned 8-bit integer
Number of Connection Handles and Num_HCI_Data_Packets parameter pairs
bthci_evt.num_keys Number of Link Keys
Unsigned 8-bit integer
Number of Link Keys contained
bthci_evt.num_keys_deleted Number of Link Keys Deleted
Unsigned 16-bit integer
Number of Link Keys Deleted
bthci_evt.num_keys_read Number of Link Keys Read
Unsigned 16-bit integer
Number of Link Keys Read
bthci_evt.num_keys_written Number of Link Keys Written
Unsigned 8-bit integer
Number of Link Keys Written
bthci_evt.num_responses Number of responses
Unsigned 8-bit integer
Number of Responses from Inquiry
bthci_evt.num_supp_iac Num Support IAC
Unsigned 8-bit integer
Num of supported IAC the device can simultaneously listen
bthci_evt.numeric_value Numeric Value
Unsigned 32-bit integer
Numeric Value
bthci_evt.ocf ocf
Unsigned 16-bit integer
Opcode Command Field
bthci_evt.ogf ogf
Unsigned 16-bit integer
Opcode Group Field
bthci_evt.oob_data_present OOB Data Present
Unsigned 8-bit integer
OOB Data Present
bthci_evt.page_number Page Number
Unsigned 8-bit integer
Page Number
bthci_evt.page_scan_mode Page Scan Mode
Unsigned 8-bit integer
Page Scan Mode
bthci_evt.page_scan_period_mode Page Scan Period Mode
Unsigned 8-bit integer
Page Scan Period Mode
bthci_evt.page_scan_repetition_mode Page Scan Repetition Mode
Unsigned 8-bit integer
Page Scan Repetition Mode
bthci_evt.param_length Parameter Total Length
Unsigned 8-bit integer
Parameter Total Length
bthci_evt.params Event Parameter
No value
Event Parameter
bthci_evt.passkey Passkey
Unsigned 32-bit integer
Passkey
bthci_evt.peak_bandwidth Available Peak Bandwidth
Unsigned 32-bit integer
Available Peak Bandwidth, in bytes per second
bthci_evt.pin_type PIN Type
Unsigned 8-bit integer
PIN Types
bthci_evt.power_level_type Type
Unsigned 8-bit integer
Type
bthci_evt.randomizer_r Randomizer R
Unsigned 16-bit integer
Randomizer R
bthci_evt.reason Reason
Unsigned 8-bit integer
Reason
bthci_evt.remote_name Remote Name
String
Userfriendly descriptive name for the remote device
bthci_evt.ret_params Return Parameter
No value
Return Parameter
bthci_evt.role Role
Unsigned 8-bit integer
Role
bthci_evt.rssi RSSI (dB)
Signed 8-bit integer
RSSI (dB)
bthci_evt.scan_enable Scan
Unsigned 8-bit integer
Scan Enable
bthci_evt.sco_flow_cont_enable SCO Flow Control
Unsigned 8-bit integer
SCO Flow Control Enable
bthci_evt.service_type Service Type
Unsigned 8-bit integer
Service Type
bthci_evt.simple_pairing_mode Simple Pairing Mode
Unsigned 8-bit integer
Simple Pairing Mode
bthci_evt.status Status
Unsigned 8-bit integer
Status
bthci_evt.sync_link_type Link Type
Unsigned 8-bit integer
Link Type
bthci_evt.sync_rtx_window Retransmit Window
Unsigned 8-bit integer
Retransmit Window
bthci_evt.sync_rx_pkt_len Rx Packet Length
Unsigned 16-bit integer
Rx Packet Length
bthci_evt.sync_tx_interval Transmit Interval
Unsigned 8-bit integer
Transmit Interval
bthci_evt.sync_tx_pkt_len Tx Packet Length
Unsigned 16-bit integer
Tx Packet Length
bthci_evt.timeout Timeout
Unsigned 16-bit integer
Number of Baseband slots for timeout.
bthci_evt.token_bucket_size Token Bucket Size
Unsigned 32-bit integer
Token Bucket Size (bytes)
bthci_evt.token_rate Available Token Rate
Unsigned 32-bit integer
Available Token Rate, in bytes per second
bthci_evt.transmit_power_level Transmit Power Level (dBm)
Signed 8-bit integer
Transmit Power Level (dBm)
bthci_evt.window Interval
Unsigned 16-bit integer
Window
bthci_evt_curr_role Current Role
Unsigned 8-bit integer
Current role for this connection handle
hci_h4.direction Direction
Unsigned 8-bit integer
HCI Packet Direction Sent/Rcvd
hci_h4.type HCI Packet Type
Unsigned 8-bit integer
HCI Packet Type
btsco.chandle Connection Handle
Unsigned 16-bit integer
Connection Handle
btsco.data Data
No value
Data
btsco.length Data Total Length
Unsigned 8-bit integer
Data Total Length
btl2cap.cid CID
Unsigned 16-bit integer
L2CAP Channel Identifier
btl2cap.cmd_code Command Code
Unsigned 8-bit integer
L2CAP Command Code
btl2cap.cmd_data Command Data
No value
L2CAP Command Data
btl2cap.cmd_ident Command Identifier
Unsigned 8-bit integer
L2CAP Command Identifier
btl2cap.cmd_length Command Length
Unsigned 8-bit integer
L2CAP Command Length
btl2cap.command Command
No value
L2CAP Command
btl2cap.conf_param_option Configuration Parameter Option
No value
Configuration Parameter Option
btl2cap.conf_result Result
Unsigned 16-bit integer
Configuration Result
btl2cap.continuation Continuation Flag
Boolean
Continuation Flag
btl2cap.dcid Destination CID
Unsigned 16-bit integer
Destination Channel Identifier
btl2cap.info_bidirqos Bi-Directional QOS
Unsigned 8-bit integer
Bi-Directional QOS support
btl2cap.info_flowcontrol Flow Control Mode
Unsigned 8-bit integer
Flow Control mode support
btl2cap.info_mtu Remote Entity MTU
Unsigned 16-bit integer
Remote entitiys acceptable connectionless MTU
btl2cap.info_result Result
Unsigned 16-bit integer
Information about the success of the request
btl2cap.info_retransmission Retransmission Mode
Unsigned 8-bit integer
Retransmission mode support
btl2cap.info_type Information Type
Unsigned 16-bit integer
Type of implementation-specific information
btl2cap.length Length
Unsigned 16-bit integer
L2CAP Payload Length
btl2cap.maxtransmit MaxTransmit
Unsigned 8-bit integer
Maximum I-frame retransmissions
btl2cap.monitortimeout Monitor Timeout (ms)
Unsigned 16-bit integer
S-frame transmission interval (milliseconds)
btl2cap.mps MPS
Unsigned 16-bit integer
Maximum PDU Payload Size
btl2cap.option_dealyvar Delay Variation (microseconds)
Unsigned 32-bit integer
Difference between maximum and minimum delay (microseconds)
btl2cap.option_flags Flags
Unsigned 8-bit integer
Flags - must be set to 0 (Reserved for future use)
btl2cap.option_flushto Flush Timeout (ms)
Unsigned 16-bit integer
Flush Timeout in milliseconds
btl2cap.option_latency Latency (microseconds)
Unsigned 32-bit integer
Maximal acceptable dealy (microseconds)
btl2cap.option_length Length
Unsigned 8-bit integer
Number of octets in option payload
btl2cap.option_mtu MTU
Unsigned 16-bit integer
Maximum Transmission Unit
btl2cap.option_peakbandwidth Peak Bandwidth (bytes/s)
Unsigned 32-bit integer
Limit how fast packets may be sent (bytes/s)
btl2cap.option_servicetype Service Type
Unsigned 8-bit integer
Level of service required
btl2cap.option_tokenbsize Token Bucket Size (bytes)
Unsigned 32-bit integer
Size of the token bucket (bytes)
btl2cap.option_tokenrate Token Rate (bytes/s)
Unsigned 32-bit integer
Rate at which traffic credits are granted (bytes/s)
btl2cap.option_type Type
Unsigned 8-bit integer
Type of option
btl2cap.payload Payload
Byte array
L2CAP Payload
btl2cap.psm PSM
Unsigned 16-bit integer
Protocol/Service Multiplexor
btl2cap.rej_reason Reason
Unsigned 16-bit integer
Reason
btl2cap.result Result
Unsigned 16-bit integer
Result
btl2cap.retransmissionmode Mode
Unsigned 8-bit integer
Retransmission/Flow Control mode
btl2cap.retransmittimeout Retransmit timeout (ms)
Unsigned 16-bit integer
Retransmission timeout (milliseconds)
btl2cap.scid Source CID
Unsigned 16-bit integer
Source Channel Identifier
btl2cap.sig_mtu Maximum Signalling MTU
Unsigned 16-bit integer
Maximum Signalling MTU
btl2cap.status Status
Unsigned 16-bit integer
Status
btl2cap.txwindow TxWindow
Unsigned 8-bit integer
Retransmission window size
btrfcomm.cr C/R Flag
Unsigned 8-bit integer
Command/Response flag
btrfcomm.credits Credits
Unsigned 8-bit integer
Flow control: number of UIH frames allowed to send
btrfcomm.dlci DLCI
Unsigned 8-bit integer
RFCOMM DLCI
btrfcomm.ea EA Flag
Unsigned 8-bit integer
EA flag (should be always 1)
btrfcomm.error_recovery_mode Error Recovery Mode
Unsigned 8-bit integer
Error Recovery Mode
btrfcomm.fcs Frame Check Sequence
Unsigned 8-bit integer
Checksum over frame
btrfcomm.frame_type Frame type
Unsigned 8-bit integer
Command/Response flag
btrfcomm.len Payload length
Unsigned 16-bit integer
Frame length
btrfcomm.max_frame_size Max Frame Size
Unsigned 16-bit integer
Maximum Frame Size
btrfcomm.max_retrans Max Retrans
Unsigned 8-bit integer
Maximum number of retransmissions
btrfcomm.mcc.cmd C/R Flag
Unsigned 8-bit integer
Command/Response flag
btrfcomm.mcc.cr C/R Flag
Unsigned 8-bit integer
Command/Response flag
btrfcomm.mcc.ea EA Flag
Unsigned 8-bit integer
EA flag (should be always 1)
btrfcomm.mcc.len MCC Length
Unsigned 16-bit integer
Length of MCC data
btrfcomm.msc.bl Length of break in units of 200ms
Unsigned 8-bit integer
Length of break in units of 200ms
btrfcomm.msc.dv Data Valid (DV)
Unsigned 8-bit integer
Data Valid
btrfcomm.msc.fc Flow Control (FC)
Unsigned 8-bit integer
Flow Control
btrfcomm.msc.ic Incoming Call Indicator (IC)
Unsigned 8-bit integer
Incoming Call Indicator
btrfcomm.msc.rtc Ready To Communicate (RTC)
Unsigned 8-bit integer
Ready To Communicate
btrfcomm.msc.rtr Ready To Receive (RTR)
Unsigned 8-bit integer
Ready To Receive
btrfcomm.pf P/F flag
Unsigned 8-bit integer
Poll/Final bit
btrfcomm.pn.cl Convergence layer
Unsigned 8-bit integer
Convergence layer used for that particular DLCI
btrfcomm.pn.i Type of frame
Unsigned 8-bit integer
Type of information frames used for that particular DLCI
btrfcomm.priority Priority
Unsigned 8-bit integer
Priority
btsdp.error_code ErrorCode
Unsigned 16-bit integer
Error Code
btsdp.len ParameterLength
Unsigned 16-bit integer
ParameterLength
btsdp.pdu PDU
Unsigned 8-bit integer
PDU type
btsdp.ssares.byte_count AttributeListsByteCount
Unsigned 16-bit integer
count of bytes in attribute list response
btsdp.ssr.current_count CurrentServiceRecordCount
Unsigned 16-bit integer
count of service records in this message
btsdp.ssr.total_count TotalServiceRecordCount
Unsigned 16-bit integer
Total count of service records
btsdp.tid TransactionID
Unsigned 16-bit integer
Transaction ID
brdwlk.drop Packet Dropped
Boolean
brdwlk.eof EOF
Unsigned 8-bit integer
EOF
brdwlk.error Error
Unsigned 8-bit integer
Error
brdwlk.error.crc CRC
Boolean
brdwlk.error.ctrl Ctrl Char Inside Frame
Boolean
brdwlk.error.ef Empty Frame
Boolean
brdwlk.error.ff Fifo Full
Boolean
brdwlk.error.jumbo Jumbo FC Frame
Boolean
brdwlk.error.nd No Data
Boolean
brdwlk.error.plp Packet Length Present
Boolean
brdwlk.error.tr Truncated
Boolean
brdwlk.pktcnt Packet Count
Unsigned 16-bit integer
brdwlk.plen Original Packet Length
Unsigned 32-bit integer
brdwlk.sof SOF
Unsigned 8-bit integer
SOF
brdwlk.vsan VSAN
Unsigned 16-bit integer
bootparams.domain Client Domain
String
Client Domain
bootparams.fileid File ID
String
File ID
bootparams.filepath File Path
String
File Path
bootparams.host Client Host
String
Client Host
bootparams.hostaddr Client Address
IPv4 address
Address
bootparams.procedure_v1 V1 Procedure
Unsigned 32-bit integer
V1 Procedure
bootparams.routeraddr Router Address
IPv4 address
Router Address
bootparams.type Address Type
Unsigned 32-bit integer
Address Type
bootp.client_id_uuid Client Identifier (UUID)
Client Machine Identifier (UUID)
bootp.client_network_id_major Client Network ID Major Version
Unsigned 8-bit integer
Client Machine Identifier, Major Version
bootp.client_network_id_minor Client Network ID Minor Version
Unsigned 8-bit integer
Client Machine Identifier, Major Version
bootp.cookie Magic cookie
IPv4 address
bootp.dhcp Frame is DHCP
Boolean
bootp.file Boot file name
String
bootp.flags Bootp flags
Unsigned 16-bit integer
bootp.flags.bc Broadcast flag
Boolean
bootp.flags.reserved Reserved flags
Unsigned 16-bit integer
bootp.fqdn.e Encoding
Boolean
If true, name is binary encoded
bootp.fqdn.mbz Reserved flags
Unsigned 8-bit integer
bootp.fqdn.n Server DDNS
Boolean
If true, server should not do any DDNS updates
bootp.fqdn.name Client name
Byte array
Name to register via DDNS
bootp.fqdn.o Server overrides
Boolean
If true, server insists on doing DDNS update
bootp.fqdn.rcode1 A-RR result
Unsigned 8-bit integer
Result code of A-RR update
bootp.fqdn.rcode2 PTR-RR result
Unsigned 8-bit integer
Result code of PTR-RR update
bootp.fqdn.s Server
Boolean
If true, server should do DDNS update
bootp.hops Hops
Unsigned 8-bit integer
bootp.hw.addr Client hardware address
Byte array
bootp.hw.len Hardware address length
Unsigned 8-bit integer
bootp.hw.mac_addr Client MAC address
6-byte Hardware (MAC) Address
bootp.hw.type Hardware type
Unsigned 8-bit integer
bootp.id Transaction ID
Unsigned 32-bit integer
bootp.ip.client Client IP address
IPv4 address
bootp.ip.relay Relay agent IP address
IPv4 address
bootp.ip.server Next server IP address
IPv4 address
bootp.ip.your Your (client) IP address
IPv4 address
bootp.option.length Length
Unsigned 8-bit integer
Bootp/Dhcp option length
bootp.option.type Option
Unsigned 8-bit integer
Bootp/Dhcp option type
bootp.option.value Value
Byte array
Bootp/Dhcp option value
bootp.secs Seconds elapsed
Unsigned 16-bit integer
bootp.server Server host name
String
bootp.type Message type
Unsigned 8-bit integer
bootp.vendor Bootp Vendor Options
Byte array
bootp.vendor.alu.tftp1 Spatial Redundancy TFTP1
IPv4 address
bootp.vendor.alu.tftp2 Spatial Redundancy TFTP2
IPv4 address
bootp.vendor.alu.vid Voice VLAN ID
Unsigned 16-bit integer
Alcatel-Lucent VLAN ID to define Voice VLAN
bootp.vendor.docsis.cmcap_len CM DC Length
Unsigned 8-bit integer
DOCSIS Cable Modem Device Capabilities Length
bootp.vendor.pktc.mtacap_len MTA DC Length
Unsigned 8-bit integer
PacketCable MTA Device Capabilities Length
bgp.aggregator_as Aggregator AS
Unsigned 16-bit integer
bgp.aggregator_origin Aggregator origin
IPv4 address
bgp.as_path AS Path
Unsigned 16-bit integer
bgp.cluster_identifier Cluster identifier
IPv4 address
bgp.cluster_list Cluster List
Byte array
bgp.community_as Community AS
Unsigned 16-bit integer
bgp.community_value Community value
Unsigned 16-bit integer
bgp.local_pref Local preference
Unsigned 32-bit integer
bgp.mp_nlri_tnl_id MP Reach NLRI Tunnel Identifier
Unsigned 16-bit integer
bgp.mp_reach_nlri_ipv4_prefix MP Reach NLRI IPv4 prefix
IPv4 address
bgp.mp_unreach_nlri_ipv4_prefix MP Unreach NLRI IPv4 prefix
IPv4 address
bgp.multi_exit_disc Multiple exit discriminator
Unsigned 32-bit integer
bgp.next_hop Next hop
IPv4 address
bgp.nlri_prefix NLRI prefix
IPv4 address
bgp.origin Origin
Unsigned 8-bit integer
bgp.originator_id Originator identifier
IPv4 address
bgp.ssa_l2tpv3_Unused Unused
Boolean
Unused Flags
bgp.ssa_l2tpv3_cookie Cookie
Byte array
Cookie
bgp.ssa_l2tpv3_cookie_len Cookie Length
Unsigned 8-bit integer
Cookie Length
bgp.ssa_l2tpv3_pref Preference
Unsigned 16-bit integer
Preference
bgp.ssa_l2tpv3_s Sequencing bit
Boolean
Sequencing S-bit
bgp.ssa_l2tpv3_session_id Session ID
Unsigned 32-bit integer
Session ID
bgp.ssa_len Length
Unsigned 16-bit integer
SSA Length
bgp.ssa_t Transitive bit
Boolean
SSA Transitive bit
bgp.ssa_type SSA Type
Unsigned 16-bit integer
SSA Type
bgp.ssa_value Value
Byte array
SSA Value
bgp.type Type
Unsigned 8-bit integer
BGP message type
bgp.withdrawn_prefix Withdrawn prefix
IPv4 address
bacapp.LVT Length Value Type
Unsigned 8-bit integer
Length Value Type
bacapp.NAK NAK
Boolean
negativ ACK
bacapp.SA SA
Boolean
Segmented Response accepted
bacapp.SRV SRV
Boolean
Server
bacapp.abort_reason Abort Reason
Unsigned 8-bit integer
Abort Reason
bacapp.application_tag_number Application Tag Number
Unsigned 8-bit integer
Application Tag Number
bacapp.confirmed_service Service Choice
Unsigned 8-bit integer
Service Choice
bacapp.context_tag_number Context Tag Number
Unsigned 8-bit integer
Context Tag Number
bacapp.extended_tag_number Extended Tag Number
Unsigned 8-bit integer
Extended Tag Number
bacapp.instance_number Instance Number
Unsigned 32-bit integer
Instance Number
bacapp.invoke_id Invoke ID
Unsigned 8-bit integer
Invoke ID
bacapp.max_adpu_size Size of Maximum ADPU accepted
Unsigned 8-bit integer
Size of Maximum ADPU accepted
bacapp.more_segments More Segments
Boolean
More Segments Follow
bacapp.named_tag Named Tag
Unsigned 8-bit integer
Named Tag
bacapp.objectType Object Type
Unsigned 32-bit integer
Object Type
bacapp.pduflags PDU Flags
Unsigned 8-bit integer
PDU Flags
bacapp.processId ProcessIdentifier
Unsigned 32-bit integer
Process Identifier
bacapp.reject_reason Reject Reason
Unsigned 8-bit integer
Reject Reason
bacapp.response_segments Max Response Segments accepted
Unsigned 8-bit integer
Max Response Segments accepted
bacapp.segmented_request Segmented Request
Boolean
Segmented Request
bacapp.sequence_number Sequence Number
Unsigned 8-bit integer
Sequence Number
bacapp.string_character_set String Character Set
Unsigned 8-bit integer
String Character Set
bacapp.tag BACnet Tag
Byte array
BACnet Tag
bacapp.tag_class Tag Class
Boolean
Tag Class
bacapp.tag_value16 Tag Value 16-bit
Unsigned 16-bit integer
Tag Value 16-bit
bacapp.tag_value32 Tag Value 32-bit
Unsigned 32-bit integer
Tag Value 32-bit
bacapp.tag_value8 Tag Value
Unsigned 8-bit integer
Tag Value
bacapp.type APDU Type
Unsigned 8-bit integer
APDU Type
bacapp.unconfirmed_service Unconfirmed Service Choice
Unsigned 8-bit integer
Unconfirmed Service Choice
bacapp.variable_part BACnet APDU variable part:
No value
BACnet APDU variable part
bacapp.window_size Proposed Window Size
Unsigned 8-bit integer
Proposed Window Size
bacnet.control Control
Unsigned 8-bit integer
BACnet Control
bacnet.control_dest Destination Specifier
Boolean
BACnet Control
bacnet.control_expect Expecting Reply
Boolean
BACnet Control
bacnet.control_net NSDU contains
Boolean
BACnet Control
bacnet.control_prio_high Priority
Boolean
BACnet Control
bacnet.control_prio_low Priority
Boolean
BACnet Control
bacnet.control_res1 Reserved
Boolean
BACnet Control
bacnet.control_res2 Reserved
Boolean
BACnet Control
bacnet.control_src Source specifier
Boolean
BACnet Control
bacnet.dadr_eth Destination ISO 8802-3 MAC Address
6-byte Hardware (MAC) Address
Destination ISO 8802-3 MAC Address
bacnet.dadr_mstp DADR
Unsigned 8-bit integer
Destination MS/TP or ARCNET MAC Address
bacnet.dadr_tmp Unknown Destination MAC
Byte array
Unknown Destination MAC
bacnet.dlen Destination MAC Layer Address Length
Unsigned 8-bit integer
Destination MAC Layer Address Length
bacnet.dnet Destination Network Address
Unsigned 16-bit integer
Destination Network Address
bacnet.hopc Hop Count
Unsigned 8-bit integer
Hop Count
bacnet.mesgtyp Network Layer Message Type
Unsigned 8-bit integer
Network Layer Message Type
bacnet.perf Performance Index
Unsigned 8-bit integer
Performance Index
bacnet.pinfolen Port Info Length
Unsigned 8-bit integer
Port Info Length
bacnet.portid Port ID
Unsigned 8-bit integer
Port ID
bacnet.rejectreason Reject Reason
Unsigned 8-bit integer
Reject Reason
bacnet.rportnum Number of Port Mappings
Unsigned 8-bit integer
Number of Port Mappings
bacnet.sadr_eth SADR
6-byte Hardware (MAC) Address
Source ISO 8802-3 MAC Address
bacnet.sadr_mstp SADR
Unsigned 8-bit integer
Source MS/TP or ARCNET MAC Address
bacnet.sadr_tmp Unknown Source MAC
Byte array
Unknown Source MAC
bacnet.slen Source MAC Layer Address Length
Unsigned 8-bit integer
Source MAC Layer Address Length
bacnet.snet Source Network Address
Unsigned 16-bit integer
Source Network Address
bacnet.term_time_value Termination Time Value (seconds)
Unsigned 8-bit integer
Termination Time Value
bacnet.vendor Vendor ID
Unsigned 16-bit integer
Vendor ID
bacnet.version Version
Unsigned 8-bit integer
BACnet Version
ccsds.apid APID
Unsigned 16-bit integer
Represents APID
ccsds.checkword checkword indicator
Unsigned 8-bit integer
checkword indicator
ccsds.dcc Data Cycle Counter
Unsigned 16-bit integer
Data Cycle Counter
ccsds.length packet length
Unsigned 16-bit integer
packet length
ccsds.packtype packet type
Unsigned 8-bit integer
Packet Type - Unused in Ku-Band
ccsds.secheader secondary header
Boolean
secondary header present
ccsds.seqflag sequence flags
Unsigned 16-bit integer
sequence flags
ccsds.seqnum sequence number
Unsigned 16-bit integer
sequence number
ccsds.time time
Byte array
time
ccsds.timeid time identifier
Unsigned 8-bit integer
time identifier
ccsds.type type
Unsigned 16-bit integer
type
ccsds.version version
Unsigned 16-bit integer
version
ccsds.vid version identifier
Unsigned 16-bit integer
version identifier
ccsds.zoe ZOE TLM
Unsigned 8-bit integer
CONTAINS S-BAND ZOE PACKETS
cds_clerkserver.opnum Operation
Unsigned 16-bit integer
Operation
cfm.ais.pdu CFM AIS PDU
No value
cfm.all.tlvs CFM TLVs
No value
cfm.aps.data APS data
Byte array
cfm.aps.pdu CFM APS PDU
No value
cfm.ccm.itu.t.y1731 Defined by ITU-T Y.1731
No value
cfm.ccm.ma.ep.id Maintenance Association End Point Identifier
Unsigned 16-bit integer
cfm.ccm.maid Maintenance Association Identifier (MEG ID)
No value
cfm.ccm.maid.padding Zero-Padding
No value
cfm.ccm.pdu CFM CCM PDU
No value
cfm.ccm.seq.num Sequence Number
Unsigned 32-bit integer
cfm.dmm.dmr.rxtimestampb RxTimestampb
Byte array
cfm.dmm.dmr.txtimestampb TxTimestampb
Byte array
cfm.dmm.pdu CFM DMM PDU
No value
cfm.dmr.pdu CFM DMR PDU
No value
cfm.exm.pdu CFM EXM PDU
No value
cfm.exr.pdu CFM EXR PDU
No value
cfm.first.tlv.offset First TLV Offset
Unsigned 8-bit integer
cfm.flags Flags
Unsigned 8-bit integer
cfm.flags.ccm.reserved Reserved
Unsigned 8-bit integer
cfm.flags.fwdyes FwdYes
Unsigned 8-bit integer
cfm.flags.interval Interval Field
Unsigned 8-bit integer
cfm.flags.ltm.reserved Reserved
Unsigned 8-bit integer
cfm.flags.ltr.reserved Reserved
Unsigned 8-bit integer
cfm.flags.ltr.terminalmep TerminalMEP
Unsigned 8-bit integer
cfm.flags.period Period
Unsigned 8-bit integer
cfm.flags.rdi RDI
Unsigned 8-bit integer
cfm.flags.reserved Reserved
Unsigned 8-bit integer
cfm.flags.usefdbonly UseFDBonly
Unsigned 8-bit integer
cfm.itu.reserved Reserved
Byte array
cfm.itu.rxfcb RxFCb
Byte array
cfm.itu.txfcb TxFCb
Byte array
cfm.itu.txfcf TxFCf
Byte array
cfm.lb.transaction.id Loopback Transaction Identifier
Unsigned 32-bit integer
cfm.lbm.pdu CFM LBM PDU
No value
cfm.lbr.pdu CFM LBR PDU
No value
cfm.lck.pdu CFM LCK PDU
No value
cfm.lmm.lmr.rxfcf RxFCf
Byte array
cfm.lmm.lmr.txfcb TxFCb
Byte array
cfm.lmm.lmr.txfcf TxFCf
Byte array
cfm.lmm.pdu CFM LMM PDU
No value
cfm.lmr.pdu CFM LMR PDU
No value
cfm.lt.transaction.id Linktrace Transaction Identifier
Unsigned 32-bit integer
cfm.lt.ttl Linktrace TTL
Unsigned 8-bit integer
cfm.ltm.orig.addr Linktrace Message: Original Address
6-byte Hardware (MAC) Address
cfm.ltm.pdu CFM LTM PDU
No value
cfm.ltm.targ.addr Linktrace Message: Target Address
6-byte Hardware (MAC) Address
cfm.ltr.pdu CFM LTR PDU
No value
cfm.ltr.relay.action Linktrace Reply Relay Action
Unsigned 8-bit integer
cfm.maid.ma.name Short MA Name
String
cfm.maid.ma.name.format Short MA Name (MEG ID) Format
Unsigned 8-bit integer
cfm.maid.ma.name.length Short MA Name (MEG ID) Length
Unsigned 8-bit integer
cfm.maid.md.name MD Name (String)
String
cfm.maid.md.name.format MD Name Format
Unsigned 8-bit integer
cfm.maid.md.name.length MD Name Length
Unsigned 8-bit integer
cfm.maid.md.name.mac MD Name (MAC)
6-byte Hardware (MAC) Address
cfm.maid.md.name.mac.id MD Name (MAC)
Byte array
cfm.mcc.data MCC data
Byte array
cfm.mcc.pdu CFM MCC PDU
No value
cfm.md.level CFM MD Level
Unsigned 8-bit integer
cfm.odm.dmm.dmr.rxtimestampf RxTimestampf
Byte array
cfm.odm.dmm.dmr.txtimestampf TxTimestampf
Byte array
cfm.odm.pdu CFM 1DM PDU
No value
cfm.opcode CFM OpCode
Unsigned 8-bit integer
cfm.tlv.chassis.id Chassis ID
Byte array
cfm.tlv.chassis.id.length Chassis ID Length
Unsigned 8-bit integer
cfm.tlv.chassis.id.subtype Chassis ID Sub-type
Unsigned 8-bit integer
cfm.tlv.data.value Data Value
Byte array
cfm.tlv.length TLV Length
Unsigned 16-bit integer
cfm.tlv.ltm.egress.id.mac Egress Identifier - MAC of LT Initiator/Responder
6-byte Hardware (MAC) Address
cfm.tlv.ltm.egress.id.ui Egress Identifier - Unique Identifier
Byte array
cfm.tlv.ltr.egress.last.id.mac Last Egress Identifier - MAC address
6-byte Hardware (MAC) Address
cfm.tlv.ltr.egress.last.id.ui Last Egress Identifier - Unique Identifier
Byte array
cfm.tlv.ltr.egress.next.id.mac Next Egress Identifier - MAC address
6-byte Hardware (MAC) Address
cfm.tlv.ltr.egress.next.id.ui Next Egress Identifier - Unique Identifier
Byte array
cfm.tlv.ma.domain Management Address Domain
Byte array
cfm.tlv.ma.domain.length Management Address Domain Length
Unsigned 8-bit integer
cfm.tlv.management.addr Management Address
Byte array
cfm.tlv.management.addr.length Management Address Length
Unsigned 8-bit integer
cfm.tlv.org.spec.oui OUI
Byte array
cfm.tlv.org.spec.subtype Sub-Type
Byte array
cfm.tlv.org.spec.value Value
Byte array
cfm.tlv.port.interface.value Interface Status value
Unsigned 8-bit integer
cfm.tlv.port.status.value Port Status value
Unsigned 8-bit integer
cfm.tlv.reply.egress.action Egress Action
Unsigned 8-bit integer
cfm.tlv.reply.egress.mac.address Egress MAC address
6-byte Hardware (MAC) Address
cfm.tlv.reply.ingress.action Ingress Action
Unsigned 8-bit integer
cfm.tlv.reply.ingress.mac.address Ingress MAC address
6-byte Hardware (MAC) Address
cfm.tlv.tst.crc32 CRC-32
Byte array
cfm.tlv.tst.test.pattern Test Pattern
No value
cfm.tlv.tst.test.pattern.type Test Pattern Type
Unsigned 8-bit integer
cfm.tlv.type TLV Type
Unsigned 8-bit integer
cfm.tst.pdu CFM TST PDU
No value
cfm.tst.sequence.num Sequence Number
Unsigned 32-bit integer
cfm.version CFM Version
Unsigned 8-bit integer
cfm.vsm.pdu CFM VSM PDU
No value
cfm.vsr.pdu CFM VSR PDU
No value
crtp.cid Context Id
Unsigned 16-bit integer
The context identifier of the compressed packet.
crtp.cnt Count
Unsigned 8-bit integer
The count of the context state packet.
crtp.flags Flags
Unsigned 8-bit integer
The flags of the full header packet.
crtp.gen Generation
Unsigned 8-bit integer
The generation of the compressed packet.
crtp.invalid Invalid
Boolean
The invalid bit of the context state packet.
crtp.seq Sequence
Unsigned 8-bit integer
The sequence of the compressed packet.
csm_encaps.channel Channel Number
Unsigned 16-bit integer
CSM_ENCAPS Channel Number
csm_encaps.class Class
Unsigned 8-bit integer
CSM_ENCAPS Class
csm_encaps.ctrl Control
Unsigned 8-bit integer
CSM_ENCAPS Control
csm_encaps.ctrl.ack Packet Bit
Boolean
Message Packet/ACK Packet
csm_encaps.ctrl.ack_suppress ACK Suppress Bit
Boolean
ACK Required/ACK Suppressed
csm_encaps.ctrl.endian Endian Bit
Boolean
Little Endian/Big Endian
csm_encaps.function_code Function Code
Unsigned 16-bit integer
CSM_ENCAPS Function Code
csm_encaps.index Index
Unsigned 8-bit integer
CSM_ENCAPS Index
csm_encaps.length Length
Unsigned 8-bit integer
CSM_ENCAPS Length
csm_encaps.opcode Opcode
Unsigned 16-bit integer
CSM_ENCAPS Opcode
csm_encaps.param Parameter
Unsigned 16-bit integer
CSM_ENCAPS Parameter
csm_encaps.param1 Parameter 1
Unsigned 16-bit integer
CSM_ENCAPS Parameter 1
csm_encaps.param10 Parameter 10
Unsigned 16-bit integer
CSM_ENCAPS Parameter 10
csm_encaps.param11 Parameter 11
Unsigned 16-bit integer
CSM_ENCAPS Parameter 11
csm_encaps.param12 Parameter 12
Unsigned 16-bit integer
CSM_ENCAPS Parameter 12
csm_encaps.param13 Parameter 13
Unsigned 16-bit integer
CSM_ENCAPS Parameter 13
csm_encaps.param14 Parameter 14
Unsigned 16-bit integer
CSM_ENCAPS Parameter 14
csm_encaps.param15 Parameter 15
Unsigned 16-bit integer
CSM_ENCAPS Parameter 15
csm_encaps.param16 Parameter 16
Unsigned 16-bit integer
CSM_ENCAPS Parameter 16
csm_encaps.param17 Parameter 17
Unsigned 16-bit integer
CSM_ENCAPS Parameter 17
csm_encaps.param18 Parameter 18
Unsigned 16-bit integer
CSM_ENCAPS Parameter 18
csm_encaps.param19 Parameter 19
Unsigned 16-bit integer
CSM_ENCAPS Parameter 19
csm_encaps.param2 Parameter 2
Unsigned 16-bit integer
CSM_ENCAPS Parameter 2
csm_encaps.param20 Parameter 20
Unsigned 16-bit integer
CSM_ENCAPS Parameter 20
csm_encaps.param21 Parameter 21
Unsigned 16-bit integer
CSM_ENCAPS Parameter 21
csm_encaps.param22 Parameter 22
Unsigned 16-bit integer
CSM_ENCAPS Parameter 22
csm_encaps.param23 Parameter 23
Unsigned 16-bit integer
CSM_ENCAPS Parameter 23
csm_encaps.param24 Parameter 24
Unsigned 16-bit integer
CSM_ENCAPS Parameter 24
csm_encaps.param25 Parameter 25
Unsigned 16-bit integer
CSM_ENCAPS Parameter 25
csm_encaps.param26 Parameter 26
Unsigned 16-bit integer
CSM_ENCAPS Parameter 26
csm_encaps.param27 Parameter 27
Unsigned 16-bit integer
CSM_ENCAPS Parameter 27
csm_encaps.param28 Parameter 28
Unsigned 16-bit integer
CSM_ENCAPS Parameter 28
csm_encaps.param29 Parameter 29
Unsigned 16-bit integer
CSM_ENCAPS Parameter 29
csm_encaps.param3 Parameter 3
Unsigned 16-bit integer
CSM_ENCAPS Parameter 3
csm_encaps.param30 Parameter 30
Unsigned 16-bit integer
CSM_ENCAPS Parameter 30
csm_encaps.param31 Parameter 31
Unsigned 16-bit integer
CSM_ENCAPS Parameter 31
csm_encaps.param32 Parameter 32
Unsigned 16-bit integer
CSM_ENCAPS Parameter 32
csm_encaps.param33 Parameter 33
Unsigned 16-bit integer
CSM_ENCAPS Parameter 33
csm_encaps.param34 Parameter 34
Unsigned 16-bit integer
CSM_ENCAPS Parameter 34
csm_encaps.param35 Parameter 35
Unsigned 16-bit integer
CSM_ENCAPS Parameter 35
csm_encaps.param36 Parameter 36
Unsigned 16-bit integer
CSM_ENCAPS Parameter 36
csm_encaps.param37 Parameter 37
Unsigned 16-bit integer
CSM_ENCAPS Parameter 37
csm_encaps.param38 Parameter 38
Unsigned 16-bit integer
CSM_ENCAPS Parameter 38
csm_encaps.param39 Parameter 39
Unsigned 16-bit integer
CSM_ENCAPS Parameter 39
csm_encaps.param4 Parameter 4
Unsigned 16-bit integer
CSM_ENCAPS Parameter 4
csm_encaps.param40 Parameter 40
Unsigned 16-bit integer
CSM_ENCAPS Parameter 40
csm_encaps.param5 Parameter 5
Unsigned 16-bit integer
CSM_ENCAPS Parameter 5
csm_encaps.param6 Parameter 6
Unsigned 16-bit integer
CSM_ENCAPS Parameter 6
csm_encaps.param7 Parameter 7
Unsigned 16-bit integer
CSM_ENCAPS Parameter 7
csm_encaps.param8 Parameter 8
Unsigned 16-bit integer
CSM_ENCAPS Parameter 8
csm_encaps.param9 Parameter 9
Unsigned 16-bit integer
CSM_ENCAPS Parameter 9
csm_encaps.reserved Reserved
Unsigned 16-bit integer
CSM_ENCAPS Reserved
csm_encaps.seq_num Sequence Number
Unsigned 8-bit integer
CSM_ENCAPS Sequence Number
csm_encaps.type Type
Unsigned 8-bit integer
CSM_ENCAPS Type
calcappprotocol.message_completed Completed
Unsigned 64-bit integer
calcappprotocol.message_flags Flags
Unsigned 8-bit integer
calcappprotocol.message_jobid JobID
Unsigned 32-bit integer
calcappprotocol.message_jobsize JobSize
Unsigned 64-bit integer
calcappprotocol.message_length Length
Unsigned 16-bit integer
calcappprotocol.message_type Type
Unsigned 8-bit integer
xcsl.command Command
String
xcsl.information Information
String
xcsl.parameter Parameter
String
xcsl.protocol_version Protocol Version
String
xcsl.result Result
String
xcsl.transacion_id Transaction ID
String
camel.ApplyChargingArg ApplyChargingArg
No value
camel.ApplyChargingArg
camel.ApplyChargingGPRSArg ApplyChargingGPRSArg
No value
camel.ApplyChargingGPRSArg
camel.ApplyChargingReportArg ApplyChargingReportArg
Byte array
camel.ApplyChargingReportArg
camel.ApplyChargingReportGPRSArg ApplyChargingReportGPRSArg
No value
camel.ApplyChargingReportGPRSArg
camel.AssistRequestInstructionsArg AssistRequestInstructionsArg
No value
camel.AssistRequestInstructionsArg
camel.CAMEL_AChBillingChargingCharacteristics CAMEL-AChBillingChargingCharacteristics
Unsigned 32-bit integer
CAMEL-AChBillingChargingCharacteristics
camel.CAMEL_CallResult CAMEL-CAMEL_CallResult
Unsigned 32-bit integer
CAMEL-CallResult
camel.CAMEL_FCIBillingChargingCharacteristics CAMEL-FCIBillingChargingCharacteristics
Unsigned 32-bit integer
CAMEL-FCIBillingChargingCharacteristics
camel.CAMEL_FCIGPRSBillingChargingCharacteristics CAMEL-FCIGPRSBillingChargingCharacteristics
Unsigned 32-bit integer
CAMEL-FCIGPRSBillingChargingCharacteristics
camel.CAMEL_FCISMSBillingChargingCharacteristics CAMEL-FCISMSBillingChargingCharacteristics
Unsigned 32-bit integer
CAMEL-FCISMSBillingChargingCharacteristics
camel.CAMEL_SCIBillingChargingCharacteristics CAMEL-SCIBillingChargingCharacteristics
Unsigned 32-bit integer
CAMEL-SCIBillingChargingCharacteristics
camel.CAMEL_SCIGPRSBillingChargingCharacteristics CAMEL-SCIGPRSBillingChargingCharacteristics
Unsigned 32-bit integer
CAMEL-FSCIGPRSBillingChargingCharacteristics
camel.CAP_GPRS_ReferenceNumber CAP-GPRS-ReferenceNumber
No value
camel.CAP_GPRS_ReferenceNumber
camel.CAP_U_ABORT_REASON CAP-U-ABORT-REASON
Unsigned 32-bit integer
camel.CAP_U_ABORT_REASON
camel.CallGapArg CallGapArg
No value
camel.CallGapArg
camel.CallInformationReportArg CallInformationReportArg
No value
camel.CallInformationReportArg
camel.CallInformationRequestArg CallInformationRequestArg
No value
camel.CallInformationRequestArg
camel.CancelArg CancelArg
Unsigned 32-bit integer
camel.CancelArg
camel.CancelGPRSArg CancelGPRSArg
No value
camel.CancelGPRSArg
camel.CellGlobalIdOrServiceAreaIdFixedLength CellGlobalIdOrServiceAreaIdFixedLength
Byte array
LocationInformationGPRS/CellGlobalIdOrServiceAreaIdOrLAI
camel.ChangeOfPositionControlInfo_item Item
Unsigned 32-bit integer
camel.ChangeOfLocation
camel.ConnectArg ConnectArg
No value
camel.ConnectArg
camel.ConnectGPRSArg ConnectGPRSArg
No value
camel.ConnectGPRSArg
camel.ConnectSMSArg ConnectSMSArg
No value
camel.ConnectSMSArg
camel.ConnectToResourceArg ConnectToResourceArg
No value
camel.ConnectToResourceArg
camel.ContinueGPRSArg ContinueGPRSArg
No value
camel.ContinueGPRSArg
camel.ContinueWithArgumentArg ContinueWithArgumentArg
No value
camel.ContinueWithArgumentArg
camel.DestinationRoutingAddress_item Item
Byte array
camel.CalledPartyNumber
camel.DisconnectForwardConnectionWithArgumentArg DisconnectForwardConnectionWithArgumentArg
No value
camel.DisconnectForwardConnectionWithArgumentArg
camel.DisconnectLegArg DisconnectLegArg
No value
camel.DisconnectLegArg
camel.EntityReleasedArg EntityReleasedArg
Unsigned 32-bit integer
camel.EntityReleasedArg
camel.EntityReleasedGPRSArg EntityReleasedGPRSArg
No value
camel.EntityReleasedGPRSArg
camel.EstablishTemporaryConnectionArg EstablishTemporaryConnectionArg
No value
camel.EstablishTemporaryConnectionArg
camel.EventReportBCSMArg EventReportBCSMArg
No value
camel.EventReportBCSMArg
camel.EventReportGPRSArg EventReportGPRSArg
No value
camel.EventReportGPRSArg
camel.EventReportSMSArg EventReportSMSArg
No value
camel.EventReportSMSArg
camel.Extensions_item Item
No value
camel.ExtensionField
camel.FurnishChargingInformationArg FurnishChargingInformationArg
Byte array
camel.FurnishChargingInformationArg
camel.FurnishChargingInformationGPRSArg FurnishChargingInformationGPRSArg
Byte array
camel.FurnishChargingInformationGPRSArg
camel.FurnishChargingInformationSMSArg FurnishChargingInformationSMSArg
Byte array
camel.FurnishChargingInformationSMSArg
camel.GenericNumbers_item Item
Byte array
camel.GenericNumber
camel.InitialDPArg InitialDPArg
No value
camel.InitialDPArg
camel.InitialDPGPRSArg InitialDPGPRSArg
No value
camel.InitialDPGPRSArg
camel.InitialDPSMSArg InitialDPSMSArg
No value
camel.InitialDPSMSArg
camel.InitiateCallAttemptArg InitiateCallAttemptArg
No value
camel.InitiateCallAttemptArg
camel.InitiateCallAttemptRes InitiateCallAttemptRes
No value
camel.InitiateCallAttemptRes
camel.InvokeId_present InvokeId.present
Signed 32-bit integer
camel.InvokeId_present
camel.MetDPCriteriaList_item Item
Unsigned 32-bit integer
camel.MetDPCriterion
camel.MoveLegArg MoveLegArg
No value
camel.MoveLegArg
camel.PAR_cancelFailed PAR-cancelFailed
No value
camel.PAR_cancelFailed
camel.PAR_requestedInfoError PAR-requestedInfoError
Unsigned 32-bit integer
camel.PAR_requestedInfoError
camel.PAR_taskRefused PAR-taskRefused
Unsigned 32-bit integer
camel.PAR_taskRefused
camel.PDPAddress_IPv4 PDPAddress IPv4
IPv4 address
IPAddress IPv4
camel.PDPAddress_IPv6 PDPAddress IPv6
IPv6 address
IPAddress IPv6
camel.PDPTypeNumber_etsi ETSI defined PDP Type Value
Unsigned 8-bit integer
ETSI defined PDP Type Value
camel.PDPTypeNumber_ietf IETF defined PDP Type Value
Unsigned 8-bit integer
IETF defined PDP Type Value
camel.PlayAnnouncementArg PlayAnnouncementArg
No value
camel.PlayAnnouncementArg
camel.PlayToneArg PlayToneArg
No value
camel.PlayToneArg
camel.PromptAndCollectUserInformationArg PromptAndCollectUserInformationArg
No value
camel.PromptAndCollectUserInformationArg
camel.RP_Cause RP Cause
Unsigned 8-bit integer
RP Cause Value
camel.ReceivedInformationArg ReceivedInformationArg
Unsigned 32-bit integer
camel.ReceivedInformationArg
camel.ReleaseCallArg ReleaseCallArg
Byte array
camel.ReleaseCallArg
camel.ReleaseGPRSArg ReleaseGPRSArg
No value
camel.ReleaseGPRSArg
camel.ReleaseSMSArg ReleaseSMSArg
Byte array
camel.ReleaseSMSArg
camel.RequestReportBCSMEventArg RequestReportBCSMEventArg
No value
camel.RequestReportBCSMEventArg
camel.RequestReportGPRSEventArg RequestReportGPRSEventArg
No value
camel.RequestReportGPRSEventArg
camel.RequestReportSMSEventArg RequestReportSMSEventArg
No value
camel.RequestReportSMSEventArg
camel.RequestedInformationList_item Item
No value
camel.RequestedInformation
camel.RequestedInformationTypeList_item Item
Unsigned 32-bit integer
camel.RequestedInformationType
camel.ResetTimerArg ResetTimerArg
No value
camel.ResetTimerArg
camel.ResetTimerGPRSArg ResetTimerGPRSArg
No value
camel.ResetTimerGPRSArg
camel.ResetTimerSMSArg ResetTimerSMSArg
No value
camel.ResetTimerSMSArg
camel.SendChargingInformationArg SendChargingInformationArg
No value
camel.SendChargingInformationArg
camel.SendChargingInformationGPRSArg SendChargingInformationGPRSArg
No value
camel.SendChargingInformationGPRSArg
camel.SpecializedResourceReportArg SpecializedResourceReportArg
Unsigned 32-bit integer
camel.SpecializedResourceReportArg
camel.SplitLegArg SplitLegArg
No value
camel.SplitLegArg
camel.UnavailableNetworkResource UnavailableNetworkResource
Unsigned 32-bit integer
camel.UnavailableNetworkResource
camel.aChBillingChargingCharacteristics aChBillingChargingCharacteristics
Byte array
camel.AChBillingChargingCharacteristics
camel.aChChargingAddress aChChargingAddress
Unsigned 32-bit integer
camel.AChChargingAddress
camel.aOCAfterAnswer aOCAfterAnswer
No value
camel.AOCSubsequent
camel.aOCBeforeAnswer aOCBeforeAnswer
No value
camel.AOCBeforeAnswer
camel.aOCGPRS aOCGPRS
No value
camel.AOCGPRS
camel.aOCInitial aOCInitial
No value
camel.CAI_GSM0224
camel.aOCSubsequent aOCSubsequent
No value
camel.AOCSubsequent
camel.aOC_extension aOC-extension
No value
camel.CAMEL_SCIBillingChargingCharacteristicsAlt
camel.absent absent
No value
camel.NULL
camel.accessPointName accessPointName
String
camel.AccessPointName
camel.active active
Boolean
camel.BOOLEAN
camel.additionalCallingPartyNumber additionalCallingPartyNumber
Byte array
camel.AdditionalCallingPartyNumber
camel.alertingPattern alertingPattern
Byte array
camel.AlertingPattern
camel.allAnnouncementsComplete allAnnouncementsComplete
No value
camel.NULL
camel.allRequests allRequests
No value
camel.NULL
camel.appendFreeFormatData appendFreeFormatData
Unsigned 32-bit integer
camel.AppendFreeFormatData
camel.applicationTimer applicationTimer
Unsigned 32-bit integer
camel.ApplicationTimer
camel.argument argument
No value
camel.T_argument
camel.assistingSSPIPRoutingAddress assistingSSPIPRoutingAddress
Byte array
camel.AssistingSSPIPRoutingAddress
camel.attachChangeOfPositionSpecificInformation attachChangeOfPositionSpecificInformation
No value
camel.T_attachChangeOfPositionSpecificInformation
camel.attributes attributes
Byte array
camel.OCTET_STRING_SIZE_bound__minAttributesLength_bound__maxAttributesLength
camel.audibleIndicator audibleIndicator
Unsigned 32-bit integer
camel.T_audibleIndicator
camel.automaticRearm automaticRearm
No value
camel.NULL
camel.bCSM_Failure bCSM-Failure
No value
camel.BCSM_Failure
camel.backwardServiceInteractionInd backwardServiceInteractionInd
No value
camel.BackwardServiceInteractionInd
camel.basicGapCriteria basicGapCriteria
Unsigned 32-bit integer
camel.BasicGapCriteria
camel.bcsmEvents bcsmEvents
Unsigned 32-bit integer
camel.SEQUENCE_SIZE_1_bound__numOfBCSMEvents_OF_BCSMEvent
camel.bcsmEvents_item Item
No value
camel.BCSMEvent
camel.bearerCap bearerCap
Byte array
camel.T_bearerCap
camel.bearerCapability bearerCapability
Unsigned 32-bit integer
camel.BearerCapability
camel.bearerCapability2 bearerCapability2
Unsigned 32-bit integer
camel.BearerCapability
camel.bor_InterrogationRequested bor-InterrogationRequested
No value
camel.NULL
camel.bothwayThroughConnectionInd bothwayThroughConnectionInd
Unsigned 32-bit integer
inap.BothwayThroughConnectionInd
camel.burstInterval burstInterval
Unsigned 32-bit integer
camel.INTEGER_1_1200
camel.burstList burstList
No value
camel.BurstList
camel.bursts bursts
No value
camel.Burst
camel.busyCause busyCause
Byte array
camel.Cause
camel.cAI_GSM0224 cAI-GSM0224
No value
camel.CAI_GSM0224
camel.cGEncountered cGEncountered
Unsigned 32-bit integer
camel.CGEncountered
camel.callAcceptedSpecificInfo callAcceptedSpecificInfo
No value
camel.T_callAcceptedSpecificInfo
camel.callAttemptElapsedTimeValue callAttemptElapsedTimeValue
Unsigned 32-bit integer
camel.INTEGER_0_255
camel.callCompletionTreatmentIndicator callCompletionTreatmentIndicator
Byte array
camel.OCTET_STRING_SIZE_1
camel.callConnectedElapsedTimeValue callConnectedElapsedTimeValue
Unsigned 32-bit integer
inap.Integer4
camel.callDiversionTreatmentIndicator callDiversionTreatmentIndicator
Byte array
camel.OCTET_STRING_SIZE_1
camel.callForwarded callForwarded
No value
camel.NULL
camel.callForwardingSS_Pending callForwardingSS-Pending
No value
camel.NULL
camel.callLegReleasedAtTcpExpiry callLegReleasedAtTcpExpiry
No value
camel.NULL
camel.callReferenceNumber callReferenceNumber
Byte array
gsm_map_ch.CallReferenceNumber
camel.callSegmentFailure callSegmentFailure
No value
camel.CallSegmentFailure
camel.callSegmentID callSegmentID
Unsigned 32-bit integer
camel.CallSegmentID
camel.callSegmentToCancel callSegmentToCancel
No value
camel.CallSegmentToCancel
camel.callStopTimeValue callStopTimeValue
String
camel.DateAndTime
camel.calledAddressAndService calledAddressAndService
No value
camel.T_calledAddressAndService
camel.calledAddressValue calledAddressValue
Byte array
camel.Digits
camel.calledPartyBCDNumber calledPartyBCDNumber
Byte array
camel.CalledPartyBCDNumber
camel.calledPartyNumber calledPartyNumber
Byte array
camel.CalledPartyNumber
camel.callingAddressAndService callingAddressAndService
No value
camel.T_callingAddressAndService
camel.callingAddressValue callingAddressValue
Byte array
camel.Digits
camel.callingPartyNumber callingPartyNumber
Byte array
camel.CallingPartyNumber
camel.callingPartyRestrictionIndicator callingPartyRestrictionIndicator
Byte array
camel.OCTET_STRING_SIZE_1
camel.callingPartysCategory callingPartysCategory
Unsigned 16-bit integer
inap.CallingPartysCategory
camel.callingPartysNumber callingPartysNumber
Byte array
camel.SMS_AddressString
camel.cancelDigit cancelDigit
Byte array
camel.OCTET_STRING_SIZE_1_2
camel.carrier carrier
Byte array
camel.Carrier
camel.cause cause
Byte array
camel.Cause
camel.cause_indicator Cause indicator
Unsigned 8-bit integer
camel.cellGlobalId cellGlobalId
Byte array
gsm_map.CellGlobalIdOrServiceAreaIdFixedLength
camel.cellGlobalIdOrServiceAreaIdOrLAI cellGlobalIdOrServiceAreaIdOrLAI
Byte array
camel.T_cellGlobalIdOrServiceAreaIdOrLAI
camel.changeOfLocationAlt changeOfLocationAlt
No value
camel.ChangeOfLocationAlt
camel.changeOfPositionControlInfo changeOfPositionControlInfo
Unsigned 32-bit integer
camel.ChangeOfPositionControlInfo
camel.chargeIndicator chargeIndicator
Byte array
camel.ChargeIndicator
camel.chargeNumber chargeNumber
Byte array
camel.ChargeNumber
camel.chargingCharacteristics chargingCharacteristics
Unsigned 32-bit integer
camel.ChargingCharacteristics
camel.chargingID chargingID
Byte array
gsm_map_ms.GPRSChargingID
camel.chargingResult chargingResult
Unsigned 32-bit integer
camel.ChargingResult
camel.chargingRollOver chargingRollOver
Unsigned 32-bit integer
camel.ChargingRollOver
camel.collectInformationAllowed collectInformationAllowed
No value
camel.NULL
camel.collectedDigits collectedDigits
No value
camel.CollectedDigits
camel.collectedInfo collectedInfo
Unsigned 32-bit integer
camel.CollectedInfo
camel.collectedInfoSpecificInfo collectedInfoSpecificInfo
No value
camel.T_collectedInfoSpecificInfo
camel.compoundGapCriteria compoundGapCriteria
No value
camel.CompoundCriteria
camel.conferenceTreatmentIndicator conferenceTreatmentIndicator
Byte array
camel.OCTET_STRING_SIZE_1
camel.connectedNumberTreatmentInd connectedNumberTreatmentInd
Unsigned 32-bit integer
camel.ConnectedNumberTreatmentInd
camel.continueWithArgumentArgExtension continueWithArgumentArgExtension
No value
camel.ContinueWithArgumentArgExtension
camel.controlType controlType
Unsigned 32-bit integer
camel.ControlType
camel.correlationID correlationID
Byte array
camel.CorrelationID
camel.criticality criticality
Unsigned 32-bit integer
inap.CriticalityType
camel.cug_Index cug-Index
Unsigned 32-bit integer
gsm_map_ms.CUG_Index
camel.cug_Interlock cug-Interlock
Byte array
gsm_map_ms.CUG_Interlock
camel.cug_OutgoingAccess cug-OutgoingAccess
No value
camel.NULL
camel.cwTreatmentIndicator cwTreatmentIndicator
Signed 32-bit integer
camel.OCTET_STRING_SIZE_1
camel.dTMFDigitsCompleted dTMFDigitsCompleted
Byte array
camel.Digits
camel.dTMFDigitsTimeOut dTMFDigitsTimeOut
Byte array
camel.Digits
camel.date date
Byte array
camel.OCTET_STRING_SIZE_4
camel.destinationAddress destinationAddress
Byte array
camel.CalledPartyNumber
camel.destinationReference destinationReference
Unsigned 32-bit integer
inap.Integer4
camel.destinationRoutingAddress destinationRoutingAddress
Unsigned 32-bit integer
camel.DestinationRoutingAddress
camel.destinationSubscriberNumber destinationSubscriberNumber
Byte array
camel.CalledPartyBCDNumber
camel.detachSpecificInformation detachSpecificInformation
No value
camel.T_detachSpecificInformation
camel.digit_value Digit Value
Unsigned 8-bit integer
Digit Value
camel.digitsResponse digitsResponse
Byte array
camel.Digits
camel.disconnectFromIPForbidden disconnectFromIPForbidden
Boolean
camel.BOOLEAN
camel.disconnectSpecificInformation disconnectSpecificInformation
No value
camel.T_disconnectSpecificInformation
camel.dpSpecificCriteria dpSpecificCriteria
Unsigned 32-bit integer
camel.DpSpecificCriteria
camel.dpSpecificCriteriaAlt dpSpecificCriteriaAlt
No value
camel.DpSpecificCriteriaAlt
camel.dpSpecificInfoAlt dpSpecificInfoAlt
No value
camel.DpSpecificInfoAlt
camel.duration duration
Signed 32-bit integer
inap.Duration
camel.e1 e1
Unsigned 32-bit integer
camel.INTEGER_0_8191
camel.e2 e2
Unsigned 32-bit integer
camel.INTEGER_0_8191
camel.e3 e3
Unsigned 32-bit integer
camel.INTEGER_0_8191
camel.e4 e4
Unsigned 32-bit integer
camel.INTEGER_0_8191
camel.e5 e5
Unsigned 32-bit integer
camel.INTEGER_0_8191
camel.e6 e6
Unsigned 32-bit integer
camel.INTEGER_0_8191
camel.e7 e7
Unsigned 32-bit integer
camel.INTEGER_0_8191
camel.ectTreatmentIndicator ectTreatmentIndicator
Signed 32-bit integer
camel.OCTET_STRING_SIZE_1
camel.elapsedTime elapsedTime
Unsigned 32-bit integer
camel.ElapsedTime
camel.elapsedTimeRollOver elapsedTimeRollOver
Unsigned 32-bit integer
camel.ElapsedTimeRollOver
camel.elementaryMessageID elementaryMessageID
Unsigned 32-bit integer
inap.Integer4
camel.elementaryMessageIDs elementaryMessageIDs
Unsigned 32-bit integer
camel.SEQUENCE_SIZE_1_bound__numOfMessageIDs_OF_Integer4
camel.elementaryMessageIDs_item Item
Unsigned 32-bit integer
inap.Integer4
camel.endOfReplyDigit endOfReplyDigit
Byte array
camel.OCTET_STRING_SIZE_1_2
camel.endUserAddress endUserAddress
No value
camel.EndUserAddress
camel.enhancedDialledServicesAllowed enhancedDialledServicesAllowed
No value
camel.NULL
camel.enteringCellGlobalId enteringCellGlobalId
Byte array
gsm_map.CellGlobalIdOrServiceAreaIdFixedLength
camel.enteringLocationAreaId enteringLocationAreaId
Byte array
gsm_map.LAIFixedLength
camel.enteringServiceAreaId enteringServiceAreaId
Byte array
gsm_map.CellGlobalIdOrServiceAreaIdFixedLength
camel.errcode errcode
Unsigned 32-bit integer
camel.Code
camel.errorTreatment errorTreatment
Unsigned 32-bit integer
camel.ErrorTreatment
camel.error_code_local local
Signed 32-bit integer
ERROR code
camel.eventSpecificInformationBCSM eventSpecificInformationBCSM
Unsigned 32-bit integer
camel.EventSpecificInformationBCSM
camel.eventSpecificInformationSMS eventSpecificInformationSMS
Unsigned 32-bit integer
camel.EventSpecificInformationSMS
camel.eventTypeBCSM eventTypeBCSM
Unsigned 32-bit integer
camel.EventTypeBCSM
camel.eventTypeSMS eventTypeSMS
Unsigned 32-bit integer
camel.EventTypeSMS
camel.ext_basicServiceCode ext-basicServiceCode
Unsigned 32-bit integer
gsm_map.Ext_BasicServiceCode
camel.ext_basicServiceCode2 ext-basicServiceCode2
Unsigned 32-bit integer
gsm_map.Ext_BasicServiceCode
camel.extensionContainer extensionContainer
No value
gsm_map.ExtensionContainer
camel.extension_code_local local
Signed 32-bit integer
Extension local code
camel.extensions extensions
Unsigned 32-bit integer
camel.Extensions
camel.fCIBCCCAMELsequence1 fCIBCCCAMELsequence1
No value
camel.T_fci_fCIBCCCAMELsequence1
camel.failureCause failureCause
Byte array
camel.Cause
camel.firstAnnouncementStarted firstAnnouncementStarted
No value
camel.NULL
camel.firstDigitTimeOut firstDigitTimeOut
Unsigned 32-bit integer
camel.INTEGER_1_127
camel.forwardServiceInteractionInd forwardServiceInteractionInd
No value
camel.ForwardServiceInteractionInd
camel.forwardedCall forwardedCall
No value
camel.NULL
camel.forwardingDestinationNumber forwardingDestinationNumber
Byte array
camel.CalledPartyNumber
camel.freeFormatData freeFormatData
Byte array
camel.OCTET_STRING_SIZE_bound__minFCIBillingChargingDataLength_bound__maxFCIBillingChargingDataLength
camel.gGSNAddress gGSNAddress
Byte array
gsm_map_ms.GSN_Address
camel.gPRSCause gPRSCause
Byte array
camel.GPRSCause
camel.gPRSEvent gPRSEvent
Unsigned 32-bit integer
camel.SEQUENCE_SIZE_1_bound__numOfGPRSEvents_OF_GPRSEvent
camel.gPRSEventSpecificInformation gPRSEventSpecificInformation
Unsigned 32-bit integer
camel.GPRSEventSpecificInformation
camel.gPRSEventType gPRSEventType
Unsigned 32-bit integer
camel.GPRSEventType
camel.gPRSEvent_item Item
No value
camel.GPRSEvent
camel.gPRSMSClass gPRSMSClass
No value
gsm_map_ms.GPRSMSClass
camel.gapCriteria gapCriteria
Unsigned 32-bit integer
camel.GapCriteria
camel.gapIndicators gapIndicators
No value
camel.GapIndicators
camel.gapInterval gapInterval
Signed 32-bit integer
inap.Interval
camel.gapOnService gapOnService
No value
camel.GapOnService
camel.gapTreatment gapTreatment
Unsigned 32-bit integer
camel.GapTreatment
camel.general general
Signed 32-bit integer
camel.GeneralProblem
camel.genericNumbers genericNumbers
Unsigned 32-bit integer
camel.GenericNumbers
camel.geographicalInformation geographicalInformation
Byte array
gsm_map_ms.GeographicalInformation
camel.global global
camel.T_global
camel.gmscAddress gmscAddress
Byte array
gsm_map.ISDN_AddressString
camel.gprsCause gprsCause
Byte array
camel.GPRSCause
camel.gsmSCFAddress gsmSCFAddress
Byte array
gsm_map.ISDN_AddressString
camel.highLayerCompatibility highLayerCompatibility
Byte array
inap.HighLayerCompatibility
camel.highLayerCompatibility2 highLayerCompatibility2
Byte array
inap.HighLayerCompatibility
camel.holdTreatmentIndicator holdTreatmentIndicator
Signed 32-bit integer
camel.OCTET_STRING_SIZE_1
camel.iMEI iMEI
Byte array
gsm_map.IMEI
camel.iMSI iMSI
Byte array
gsm_map.IMSI
camel.iPSSPCapabilities iPSSPCapabilities
Byte array
camel.IPSSPCapabilities
camel.inbandInfo inbandInfo
No value
camel.InbandInfo
camel.informationToSend informationToSend
Unsigned 32-bit integer
camel.InformationToSend
camel.initialDPArgExtension initialDPArgExtension
No value
camel.InitialDPArgExtension
camel.initiatingEntity initiatingEntity
Unsigned 32-bit integer
camel.InitiatingEntity
camel.initiatorOfServiceChange initiatorOfServiceChange
Unsigned 32-bit integer
camel.InitiatorOfServiceChange
camel.integer integer
Unsigned 32-bit integer
inap.Integer4
camel.interDigitTimeOut interDigitTimeOut
Unsigned 32-bit integer
camel.INTEGER_1_127
camel.interDigitTimeout interDigitTimeout
Unsigned 32-bit integer
camel.INTEGER_1_127
camel.inter_MSCHandOver inter-MSCHandOver
No value
camel.NULL
camel.inter_PLMNHandOver inter-PLMNHandOver
No value
camel.NULL
camel.inter_SystemHandOver inter-SystemHandOver
No value
camel.NULL
camel.inter_SystemHandOverToGSM inter-SystemHandOverToGSM
No value
camel.NULL
camel.inter_SystemHandOverToUMTS inter-SystemHandOverToUMTS
No value
camel.NULL
camel.interruptableAnnInd interruptableAnnInd
Boolean
camel.BOOLEAN
camel.interval interval
Unsigned 32-bit integer
camel.INTEGER_0_32767
camel.invoke invoke
No value
camel.Invoke
camel.invokeID invokeID
Unsigned 32-bit integer
camel.InvokeID
camel.invokeId invokeId
Unsigned 32-bit integer
camel.InvokeId
camel.ipRoutingAddress ipRoutingAddress
Byte array
camel.IPRoutingAddress
camel.leavingCellGlobalId leavingCellGlobalId
Byte array
gsm_map.CellGlobalIdOrServiceAreaIdFixedLength
camel.leavingLocationAreaId leavingLocationAreaId
Byte array
gsm_map.LAIFixedLength
camel.leavingServiceAreaId leavingServiceAreaId
Byte array
gsm_map.CellGlobalIdOrServiceAreaIdFixedLength
camel.legActive legActive
Boolean
camel.BOOLEAN
camel.legID legID
Unsigned 32-bit integer
inap.LegID
camel.legIDToMove legIDToMove
Unsigned 32-bit integer
inap.LegID
camel.legOrCallSegment legOrCallSegment
Unsigned 32-bit integer
camel.LegOrCallSegment
camel.legToBeConnected legToBeConnected
Unsigned 32-bit integer
inap.LegID
camel.legToBeCreated legToBeCreated
Unsigned 32-bit integer
inap.LegID
camel.legToBeReleased legToBeReleased
Unsigned 32-bit integer
inap.LegID
camel.legToBeSplit legToBeSplit
Unsigned 32-bit integer
inap.LegID
camel.linkedId linkedId
Unsigned 32-bit integer
camel.T_linkedId
camel.local local
Signed 32-bit integer
camel.T_local
camel.locationAreaId locationAreaId
Byte array
gsm_map.LAIFixedLength
camel.locationInformation locationInformation
No value
gsm_map_ms.LocationInformation
camel.locationInformationGPRS locationInformationGPRS
No value
camel.LocationInformationGPRS
camel.locationInformationMSC locationInformationMSC
No value
gsm_map_ms.LocationInformation
camel.locationNumber locationNumber
Byte array
camel.LocationNumber
camel.long_QoS_format long-QoS-format
Byte array
gsm_map_ms.Ext_QoS_Subscribed
camel.lowLayerCompatibility lowLayerCompatibility
Byte array
camel.LowLayerCompatibility
camel.lowLayerCompatibility2 lowLayerCompatibility2
Byte array
camel.LowLayerCompatibility
camel.mSISDN mSISDN
Byte array
gsm_map.ISDN_AddressString
camel.maxCallPeriodDuration maxCallPeriodDuration
Unsigned 32-bit integer
camel.INTEGER_1_864000
camel.maxElapsedTime maxElapsedTime
Unsigned 32-bit integer
camel.INTEGER_1_86400
camel.maxTransferredVolume maxTransferredVolume
Unsigned 32-bit integer
camel.INTEGER_1_4294967295
camel.maximumNbOfDigits maximumNbOfDigits
Unsigned 32-bit integer
camel.INTEGER_1_30
camel.maximumNumberOfDigits maximumNumberOfDigits
Unsigned 32-bit integer
camel.INTEGER_1_30
camel.messageContent messageContent
String
camel.IA5String_SIZE_bound__minMessageContentLength_bound__maxMessageContentLength
camel.messageID messageID
Unsigned 32-bit integer
camel.MessageID
camel.metDPCriteriaList metDPCriteriaList
Unsigned 32-bit integer
camel.MetDPCriteriaList
camel.metDPCriterionAlt metDPCriterionAlt
No value
camel.MetDPCriterionAlt
camel.midCallControlInfo midCallControlInfo
No value
camel.MidCallControlInfo
camel.midCallEvents midCallEvents
Unsigned 32-bit integer
camel.T_omidCallEvents
camel.minimumNbOfDigits minimumNbOfDigits
Unsigned 32-bit integer
camel.INTEGER_1_30
camel.minimumNumberOfDigits minimumNumberOfDigits
Unsigned 32-bit integer
camel.INTEGER_1_30
camel.miscCallInfo miscCallInfo
No value
inap.MiscCallInfo
camel.miscGPRSInfo miscGPRSInfo
No value
inap.MiscCallInfo
camel.monitorMode monitorMode
Unsigned 32-bit integer
camel.MonitorMode
camel.ms_Classmark2 ms-Classmark2
Byte array
gsm_map_ms.MS_Classmark2
camel.mscAddress mscAddress
Byte array
gsm_map.ISDN_AddressString
camel.naOliInfo naOliInfo
Byte array
camel.NAOliInfo
camel.natureOfServiceChange natureOfServiceChange
Unsigned 32-bit integer
camel.NatureOfServiceChange
camel.negotiated_QoS negotiated-QoS
Unsigned 32-bit integer
camel.GPRS_QoS
camel.negotiated_QoS_Extension negotiated-QoS-Extension
No value
camel.GPRS_QoS_Extension
camel.newCallSegment newCallSegment
Unsigned 32-bit integer
camel.CallSegmentID
camel.nonCUGCall nonCUGCall
No value
camel.NULL
camel.none none
No value
camel.NULL
camel.number number
Byte array
camel.Digits
camel.numberOfBursts numberOfBursts
Unsigned 32-bit integer
camel.INTEGER_1_3
camel.numberOfDigits numberOfDigits
Unsigned 32-bit integer
camel.NumberOfDigits
camel.numberOfRepetitions numberOfRepetitions
Unsigned 32-bit integer
camel.INTEGER_1_127
camel.numberOfTonesInBurst numberOfTonesInBurst
Unsigned 32-bit integer
camel.INTEGER_1_3
camel.oAbandonSpecificInfo oAbandonSpecificInfo
No value
camel.T_oAbandonSpecificInfo
camel.oAnswerSpecificInfo oAnswerSpecificInfo
No value
camel.T_oAnswerSpecificInfo
camel.oCSIApplicable oCSIApplicable
No value
camel.OCSIApplicable
camel.oCalledPartyBusySpecificInfo oCalledPartyBusySpecificInfo
No value
camel.T_oCalledPartyBusySpecificInfo
camel.oChangeOfPositionSpecificInfo oChangeOfPositionSpecificInfo
No value
camel.T_oChangeOfPositionSpecificInfo
camel.oDisconnectSpecificInfo oDisconnectSpecificInfo
No value
camel.T_oDisconnectSpecificInfo
camel.oMidCallSpecificInfo oMidCallSpecificInfo
No value
camel.T_oMidCallSpecificInfo
camel.oNoAnswerSpecificInfo oNoAnswerSpecificInfo
No value
camel.T_oNoAnswerSpecificInfo
camel.oServiceChangeSpecificInfo oServiceChangeSpecificInfo
No value
camel.T_oServiceChangeSpecificInfo
camel.oTermSeizedSpecificInfo oTermSeizedSpecificInfo
No value
camel.T_oTermSeizedSpecificInfo
camel.o_smsFailureSpecificInfo o-smsFailureSpecificInfo
No value
camel.T_o_smsFailureSpecificInfo
camel.o_smsSubmissionSpecificInfo o-smsSubmissionSpecificInfo
No value
camel.T_o_smsSubmissionSpecificInfo
camel.offeredCamel4Functionalities offeredCamel4Functionalities
Byte array
gsm_map_ms.OfferedCamel4Functionalities
camel.opcode opcode
Unsigned 32-bit integer
camel.Code
camel.operation operation
Unsigned 32-bit integer
camel.InvokeID
camel.or_Call or-Call
No value
camel.NULL
camel.originalCalledPartyID originalCalledPartyID
Byte array
camel.OriginalCalledPartyID
camel.originationReference originationReference
Unsigned 32-bit integer
inap.Integer4
camel.pDPAddress pDPAddress
Byte array
camel.T_pDPAddress
camel.pDPContextEstablishmentAcknowledgementSpecificInformation pDPContextEstablishmentAcknowledgementSpecificInformation
No value
camel.T_pDPContextEstablishmentAcknowledgementSpecificInformation
camel.pDPContextEstablishmentSpecificInformation pDPContextEstablishmentSpecificInformation
No value
camel.T_pDPContextEstablishmentSpecificInformation
camel.pDPID pDPID
Byte array
camel.PDPID
camel.pDPInitiationType pDPInitiationType
Unsigned 32-bit integer
camel.PDPInitiationType
camel.pDPTypeNumber pDPTypeNumber
Byte array
camel.T_pDPTypeNumber
camel.pDPTypeOrganization pDPTypeOrganization
Byte array
camel.T_pDPTypeOrganization
camel.parameter parameter
No value
camel.T_parameter
camel.partyToCharge partyToCharge
Unsigned 32-bit integer
camel.ReceivingSideID
camel.pdpID pdpID
Byte array
camel.PDPID
camel.pdp_ContextchangeOfPositionSpecificInformation pdp-ContextchangeOfPositionSpecificInformation
No value
camel.T_pdp_ContextchangeOfPositionSpecificInformation
camel.present present
Signed 32-bit integer
camel.T_linkedIdPresent
camel.price price
Byte array
camel.OCTET_STRING_SIZE_4
camel.problem problem
Unsigned 32-bit integer
camel.T_par_cancelFailedProblem
camel.qualityOfService qualityOfService
No value
camel.QualityOfService
camel.rO_TimeGPRSIfNoTariffSwitch rO-TimeGPRSIfNoTariffSwitch
Unsigned 32-bit integer
camel.INTEGER_0_255
camel.rO_TimeGPRSIfTariffSwitch rO-TimeGPRSIfTariffSwitch
No value
camel.T_rO_TimeGPRSIfTariffSwitch
camel.rO_TimeGPRSSinceLastTariffSwitch rO-TimeGPRSSinceLastTariffSwitch
Unsigned 32-bit integer
camel.INTEGER_0_255
camel.rO_TimeGPRSTariffSwitchInterval rO-TimeGPRSTariffSwitchInterval
Unsigned 32-bit integer
camel.INTEGER_0_255
camel.rO_VolumeIfNoTariffSwitch rO-VolumeIfNoTariffSwitch
Unsigned 32-bit integer
camel.INTEGER_0_255
camel.rO_VolumeIfTariffSwitch rO-VolumeIfTariffSwitch
No value
camel.T_rO_VolumeIfTariffSwitch
camel.rO_VolumeSinceLastTariffSwitch rO-VolumeSinceLastTariffSwitch
Unsigned 32-bit integer
camel.INTEGER_0_255
camel.rO_VolumeTariffSwitchInterval rO-VolumeTariffSwitchInterval
Unsigned 32-bit integer
camel.INTEGER_0_255
camel.receivingSideID receivingSideID
Byte array
camel.LegType
camel.redirectingPartyID redirectingPartyID
Byte array
camel.RedirectingPartyID
camel.redirectionInformation redirectionInformation
Byte array
inap.RedirectionInformation
camel.reject reject
No value
camel.Reject
camel.releaseCause releaseCause
Byte array
camel.Cause
camel.releaseCauseValue releaseCauseValue
Byte array
camel.Cause
camel.releaseIfdurationExceeded releaseIfdurationExceeded
Boolean
camel.BOOLEAN
camel.requestAnnouncementCompleteNotification requestAnnouncementCompleteNotification
Boolean
camel.BOOLEAN
camel.requestAnnouncementStartedNotification requestAnnouncementStartedNotification
Boolean
camel.BOOLEAN
camel.requestedInformationList requestedInformationList
Unsigned 32-bit integer
camel.RequestedInformationList
camel.requestedInformationType requestedInformationType
Unsigned 32-bit integer
camel.RequestedInformationType
camel.requestedInformationTypeList requestedInformationTypeList
Unsigned 32-bit integer
camel.RequestedInformationTypeList
camel.requestedInformationValue requestedInformationValue
Unsigned 32-bit integer
camel.RequestedInformationValue
camel.requested_QoS requested-QoS
Unsigned 32-bit integer
camel.GPRS_QoS
camel.requested_QoS_Extension requested-QoS-Extension
No value
camel.GPRS_QoS_Extension
camel.resourceAddress resourceAddress
Unsigned 32-bit integer
camel.T_resourceAddress
camel.result result
No value
camel.T_result
camel.returnError returnError
No value
camel.ReturnError
camel.returnResult returnResult
No value
camel.ReturnResult
camel.routeNotPermitted routeNotPermitted
No value
camel.NULL
camel.routeSelectFailureSpecificInfo routeSelectFailureSpecificInfo
No value
camel.T_routeSelectFailureSpecificInfo
camel.routeingAreaIdentity routeingAreaIdentity
Byte array
gsm_map_ms.RAIdentity
camel.routeingAreaUpdate routeingAreaUpdate
No value
camel.NULL
camel.sCIBillingChargingCharacteristics sCIBillingChargingCharacteristics
Byte array
camel.SCIBillingChargingCharacteristics
camel.sCIGPRSBillingChargingCharacteristics sCIGPRSBillingChargingCharacteristics
Byte array
camel.SCIGPRSBillingChargingCharacteristics
camel.sGSNCapabilities sGSNCapabilities
Byte array
camel.SGSNCapabilities
camel.sMSCAddress sMSCAddress
Byte array
gsm_map.ISDN_AddressString
camel.sMSEvents sMSEvents
Unsigned 32-bit integer
camel.SEQUENCE_SIZE_1_bound__numOfSMSEvents_OF_SMSEvent
camel.sMSEvents_item Item
No value
camel.SMSEvent
camel.sai_Present sai-Present
No value
camel.NULL
camel.scfID scfID
Byte array
camel.ScfID
camel.secondaryPDP_context secondaryPDP-context
No value
camel.NULL
camel.selectedLSAIdentity selectedLSAIdentity
Byte array
gsm_map_ms.LSAIdentity
camel.sendingSideID sendingSideID
Byte array
camel.LegType
camel.serviceAreaId serviceAreaId
Byte array
gsm_map.CellGlobalIdOrServiceAreaIdFixedLength
camel.serviceInteractionIndicatorsTwo serviceInteractionIndicatorsTwo
No value
camel.ServiceInteractionIndicatorsTwo
camel.serviceKey serviceKey
Unsigned 32-bit integer
inap.ServiceKey
camel.sgsn_Number sgsn-Number
Byte array
gsm_map.ISDN_AddressString
camel.short_QoS_format short-QoS-format
Byte array
gsm_map_ms.QoS_Subscribed
camel.smsReferenceNumber smsReferenceNumber
Byte array
gsm_map_ch.CallReferenceNumber
camel.srfConnection srfConnection
Unsigned 32-bit integer
camel.CallSegmentID
camel.srt.deltatime Service Response Time
Time duration
DeltaTime between Request and Response
camel.srt.deltatime22 Service Response Time
Time duration
DeltaTime between EventReport(Disconnect) and Release Call
camel.srt.deltatime31 Service Response Time
Time duration
DeltaTime between InitialDP and Continue
camel.srt.deltatime35 Service Response Time
Time duration
DeltaTime between ApplyCharginReport and ApplyCharging
camel.srt.deltatime65 Service Response Time
Time duration
DeltaTime between InitialDPSMS and ContinueSMS
camel.srt.deltatime75 Service Response Time
Time duration
DeltaTime between InitialDPGPRS and ContinueGPRS
camel.srt.deltatime80 Service Response Time
Time duration
DeltaTime between EventReportGPRS and ContinueGPRS
camel.srt.duplicate Request Duplicate
Unsigned 32-bit integer
camel.srt.reqframe Requested Frame
Frame number
SRT Request Frame
camel.srt.request_number Request Number
Unsigned 64-bit integer
camel.srt.rspframe Response Frame
Frame number
SRT Response Frame
camel.srt.session_id Session Id
Unsigned 32-bit integer
camel.srt.sessiontime Session duration
Time duration
Duration of the TCAP session
camel.startDigit startDigit
Byte array
camel.OCTET_STRING_SIZE_1_2
camel.subscribed_QoS subscribed-QoS
Unsigned 32-bit integer
camel.GPRS_QoS
camel.subscribed_QoS_Extension subscribed-QoS-Extension
No value
camel.GPRS_QoS_Extension
camel.subscriberState subscriberState
Unsigned 32-bit integer
gsm_map_ms.SubscriberState
camel.supplement_to_long_QoS_format supplement-to-long-QoS-format
Byte array
gsm_map_ms.Ext2_QoS_Subscribed
camel.supportedCamelPhases supportedCamelPhases
Byte array
gsm_map_ms.SupportedCamelPhases
camel.suppressOutgoingCallBarring suppressOutgoingCallBarring
No value
camel.NULL
camel.suppress_D_CSI suppress-D-CSI
No value
camel.NULL
camel.suppress_N_CSI suppress-N-CSI
No value
camel.NULL
camel.suppress_O_CSI suppress-O-CSI
No value
camel.NULL
camel.suppress_T_CSI suppress-T-CSI
No value
camel.NULL
camel.suppressionOfAnnouncement suppressionOfAnnouncement
No value
gsm_map_ch.SuppressionOfAnnouncement
camel.tAnswerSpecificInfo tAnswerSpecificInfo
No value
camel.T_tAnswerSpecificInfo
camel.tBusySpecificInfo tBusySpecificInfo
No value
camel.T_tBusySpecificInfo
camel.tChangeOfPositionSpecificInfo tChangeOfPositionSpecificInfo
No value
camel.T_tChangeOfPositionSpecificInfo
camel.tDisconnectSpecificInfo tDisconnectSpecificInfo
No value
camel.T_tDisconnectSpecificInfo
camel.tMidCallSpecificInfo tMidCallSpecificInfo
No value
camel.T_tMidCallSpecificInfo
camel.tNoAnswerSpecificInfo tNoAnswerSpecificInfo
No value
camel.T_tNoAnswerSpecificInfo
camel.tPDataCodingScheme tPDataCodingScheme
Byte array
camel.TPDataCodingScheme
camel.tPProtocolIdentifier tPProtocolIdentifier
Byte array
camel.TPProtocolIdentifier
camel.tPShortMessageSpecificInfo tPShortMessageSpecificInfo
Byte array
camel.TPShortMessageSpecificInfo
camel.tPValidityPeriod tPValidityPeriod
Byte array
camel.TPValidityPeriod
camel.tServiceChangeSpecificInfo tServiceChangeSpecificInfo
No value
camel.T_tServiceChangeSpecificInfo
camel.t_smsDeliverySpecificInfo t-smsDeliverySpecificInfo
No value
camel.T_t_smsDeliverySpecificInfo
camel.t_smsFailureSpecificInfo t-smsFailureSpecificInfo
No value
camel.T_t_smsFailureSpecificInfo
camel.tariffSwitchInterval tariffSwitchInterval
Unsigned 32-bit integer
camel.INTEGER_1_86400
camel.text text
No value
camel.T_text
camel.time time
Byte array
camel.OCTET_STRING_SIZE_2
camel.timeAndTimeZone timeAndTimeZone
Byte array
camel.TimeAndTimezone
camel.timeAndTimezone timeAndTimezone
Byte array
camel.TimeAndTimezone
camel.timeDurationCharging timeDurationCharging
No value
camel.T_timeDurationCharging
camel.timeDurationChargingResult timeDurationChargingResult
No value
camel.T_timeDurationChargingResult
camel.timeGPRSIfNoTariffSwitch timeGPRSIfNoTariffSwitch
Unsigned 32-bit integer
camel.INTEGER_0_86400
camel.timeGPRSIfTariffSwitch timeGPRSIfTariffSwitch
No value
camel.T_timeGPRSIfTariffSwitch
camel.timeGPRSSinceLastTariffSwitch timeGPRSSinceLastTariffSwitch
Unsigned 32-bit integer
camel.INTEGER_0_86400
camel.timeGPRSTariffSwitchInterval timeGPRSTariffSwitchInterval
Unsigned 32-bit integer
camel.INTEGER_0_86400
camel.timeIfNoTariffSwitch timeIfNoTariffSwitch
Unsigned 32-bit integer
camel.TimeIfNoTariffSwitch
camel.timeIfTariffSwitch timeIfTariffSwitch
No value
camel.TimeIfTariffSwitch
camel.timeInformation timeInformation
Unsigned 32-bit integer
camel.TimeInformation
camel.timeSinceTariffSwitch timeSinceTariffSwitch
Unsigned 32-bit integer
camel.INTEGER_0_864000
camel.timerID timerID
Unsigned 32-bit integer
camel.TimerID
camel.timervalue timervalue
Unsigned 32-bit integer
camel.TimerValue
camel.tone tone
Boolean
camel.BOOLEAN
camel.toneDuration toneDuration
Unsigned 32-bit integer
camel.INTEGER_1_20
camel.toneID toneID
Unsigned 32-bit integer
inap.Integer4
camel.toneInterval toneInterval
Unsigned 32-bit integer
camel.INTEGER_1_20
camel.transferredVolume transferredVolume
Unsigned 32-bit integer
camel.TransferredVolume
camel.transferredVolumeRollOver transferredVolumeRollOver
Unsigned 32-bit integer
camel.TransferredVolumeRollOver
camel.type type
Unsigned 32-bit integer
camel.Code
camel.uu_Data uu-Data
No value
gsm_map_ch.UU_Data
camel.value value
No value
camel.T_value
camel.variableMessage variableMessage
No value
camel.T_variableMessage
camel.variableParts variableParts
Unsigned 32-bit integer
camel.SEQUENCE_SIZE_1_5_OF_VariablePart
camel.variableParts_item Item
Unsigned 32-bit integer
camel.VariablePart
camel.voiceBack voiceBack
Boolean
camel.BOOLEAN
camel.voiceInformation voiceInformation
Boolean
camel.BOOLEAN
camel.volumeIfNoTariffSwitch volumeIfNoTariffSwitch
Unsigned 32-bit integer
camel.INTEGER_0_4294967295
camel.volumeIfTariffSwitch volumeIfTariffSwitch
No value
camel.T_volumeIfTariffSwitch
camel.volumeSinceLastTariffSwitch volumeSinceLastTariffSwitch
Unsigned 32-bit integer
camel.INTEGER_0_4294967295
camel.volumeTariffSwitchInterval volumeTariffSwitchInterval
Unsigned 32-bit integer
camel.INTEGER_0_4294967295
camel.warningPeriod warningPeriod
Unsigned 32-bit integer
camel.INTEGER_1_1200
cast.DSCPValue DSCPValue
Unsigned 32-bit integer
DSCPValue.
cast.MPI MPI
Unsigned 32-bit integer
MPI.
cast.ORCStatus ORCStatus
Unsigned 32-bit integer
The status of the opened receive channel.
cast.RTPPayloadFormat RTPPayloadFormat
Unsigned 32-bit integer
RTPPayloadFormat.
cast.activeConferenceOnRegistration ActiveConferenceOnRegistration
Unsigned 32-bit integer
ActiveConferenceOnRegistration.
cast.activeStreamsOnRegistration ActiveStreamsOnRegistration
Unsigned 32-bit integer
ActiveStreamsOnRegistration.
cast.annexNandWFutureUse AnnexNandWFutureUse
Unsigned 32-bit integer
AnnexNandWFutureUse.
cast.audio AudioCodec
Unsigned 32-bit integer
The audio codec that is in use.
cast.bandwidth Bandwidth
Unsigned 32-bit integer
Bandwidth.
cast.bitRate BitRate
Unsigned 32-bit integer
BitRate.
cast.callIdentifier Call Identifier
Unsigned 32-bit integer
Call identifier for this call.
cast.callInstance CallInstance
Unsigned 32-bit integer
CallInstance.
cast.callSecurityStatus CallSecurityStatus
Unsigned 32-bit integer
CallSecurityStatus.
cast.callState CallState
Unsigned 32-bit integer
CallState.
cast.callType Call Type
Unsigned 32-bit integer
What type of call, in/out/etc
cast.calledParty CalledParty
String
The number called.
cast.calledPartyName Called Party Name
String
The name of the party we are calling.
cast.callingPartyName Calling Party Name
String
The passed name of the calling party.
cast.cdpnVoiceMailbox CdpnVoiceMailbox
String
CdpnVoiceMailbox.
cast.cgpnVoiceMailbox CgpnVoiceMailbox
String
CgpnVoiceMailbox.
cast.clockConversionCode ClockConversionCode
Unsigned 32-bit integer
ClockConversionCode.
cast.clockDivisor ClockDivisor
Unsigned 32-bit integer
Clock Divisor.
cast.confServiceNum ConfServiceNum
Unsigned 32-bit integer
ConfServiceNum.
cast.conferenceID Conference ID
Unsigned 32-bit integer
The conference ID
cast.customPictureFormatCount CustomPictureFormatCount
Unsigned 32-bit integer
CustomPictureFormatCount.
cast.dataCapCount DataCapCount
Unsigned 32-bit integer
DataCapCount.
cast.data_length Data Length
Unsigned 32-bit integer
Number of bytes in the data portion.
cast.directoryNumber Directory Number
String
The number we are reporting statistics for.
cast.echoCancelType Echo Cancel Type
Unsigned 32-bit integer
Is echo cancelling enabled or not
cast.firstGOB FirstGOB
Unsigned 32-bit integer
FirstGOB.
cast.firstMB FirstMB
Unsigned 32-bit integer
FirstMB.
cast.format Format
Unsigned 32-bit integer
Format.
cast.g723BitRate G723 BitRate
Unsigned 32-bit integer
The G723 bit rate for this stream/JUNK if not g723 stream
cast.h263_capability_bitfield H263_capability_bitfield
Unsigned 32-bit integer
H263_capability_bitfield.
cast.ipAddress IP Address
IPv4 address
An IP address
cast.isConferenceCreator IsConferenceCreator
Unsigned 32-bit integer
IsConferenceCreator.
cast.lastRedirectingParty LastRedirectingParty
String
LastRedirectingParty.
cast.lastRedirectingPartyName LastRedirectingPartyName
String
LastRedirectingPartyName.
cast.lastRedirectingReason LastRedirectingReason
Unsigned 32-bit integer
LastRedirectingReason.
cast.lastRedirectingVoiceMailbox LastRedirectingVoiceMailbox
String
LastRedirectingVoiceMailbox.
cast.layout Layout
Unsigned 32-bit integer
Layout
cast.layoutCount LayoutCount
Unsigned 32-bit integer
LayoutCount.
cast.levelPreferenceCount LevelPreferenceCount
Unsigned 32-bit integer
LevelPreferenceCount.
cast.lineInstance Line Instance
Unsigned 32-bit integer
The display call plane associated with this call.
cast.longTermPictureIndex LongTermPictureIndex
Unsigned 32-bit integer
LongTermPictureIndex.
cast.marker Marker
Unsigned 32-bit integer
Marker value should ne zero.
cast.maxBW MaxBW
Unsigned 32-bit integer
MaxBW.
cast.maxBitRate MaxBitRate
Unsigned 32-bit integer
MaxBitRate.
cast.maxConferences MaxConferences
Unsigned 32-bit integer
MaxConferences.
cast.maxStreams MaxStreams
Unsigned 32-bit integer
32 bit unsigned integer indicating the maximum number of simultansous RTP duplex streams that the client can handle.
cast.messageid Message ID
Unsigned 32-bit integer
The function requested/done with this message.
cast.millisecondPacketSize MS/Packet
Unsigned 32-bit integer
The number of milliseconds of conversation in each packet
cast.minBitRate MinBitRate
Unsigned 32-bit integer
MinBitRate.
cast.miscCommandType MiscCommandType
Unsigned 32-bit integer
MiscCommandType
cast.modelNumber ModelNumber
Unsigned 32-bit integer
ModelNumber.
cast.numberOfGOBs NumberOfGOBs
Unsigned 32-bit integer
NumberOfGOBs.
cast.numberOfMBs NumberOfMBs
Unsigned 32-bit integer
NumberOfMBs.
cast.originalCalledParty Original Called Party
String
The number of the original calling party.
cast.originalCalledPartyName Original Called Party Name
String
name of the original person who placed the call.
cast.originalCdpnRedirectReason OriginalCdpnRedirectReason
Unsigned 32-bit integer
OriginalCdpnRedirectReason.
cast.originalCdpnVoiceMailbox OriginalCdpnVoiceMailbox
String
OriginalCdpnVoiceMailbox.
cast.passThruPartyID PassThruPartyID
Unsigned 32-bit integer
The pass thru party id
cast.payloadCapability PayloadCapability
Unsigned 32-bit integer
The payload capability for this media capability structure.
cast.payloadType PayloadType
Unsigned 32-bit integer
PayloadType.
cast.payload_rfc_number Payload_rfc_number
Unsigned 32-bit integer
Payload_rfc_number.
cast.pictureFormatCount PictureFormatCount
Unsigned 32-bit integer
PictureFormatCount.
cast.pictureHeight PictureHeight
Unsigned 32-bit integer
PictureHeight.
cast.pictureNumber PictureNumber
Unsigned 32-bit integer
PictureNumber.
cast.pictureWidth PictureWidth
Unsigned 32-bit integer
PictureWidth.
cast.pixelAspectRatio PixelAspectRatio
Unsigned 32-bit integer
PixelAspectRatio.
cast.portNumber Port Number
Unsigned 32-bit integer
A port number
cast.precedenceDm PrecedenceDm
Unsigned 32-bit integer
Precedence Domain.
cast.precedenceLv PrecedenceLv
Unsigned 32-bit integer
Precedence Level.
cast.precedenceValue Precedence
Unsigned 32-bit integer
Precedence value
cast.privacy Privacy
Unsigned 32-bit integer
Privacy.
cast.protocolDependentData ProtocolDependentData
Unsigned 32-bit integer
ProtocolDependentData.
cast.recoveryReferencePictureCount RecoveryReferencePictureCount
Unsigned 32-bit integer
RecoveryReferencePictureCount.
cast.requestorIpAddress RequestorIpAddress
IPv4 address
RequestorIpAddress
cast.serviceNum ServiceNum
Unsigned 32-bit integer
ServiceNum.
cast.serviceNumber ServiceNumber
Unsigned 32-bit integer
ServiceNumber.
cast.serviceResourceCount ServiceResourceCount
Unsigned 32-bit integer
ServiceResourceCount.
cast.stationFriendlyName StationFriendlyName
String
StationFriendlyName.
cast.stationGUID stationGUID
String
stationGUID.
cast.stationIpAddress StationIpAddress
IPv4 address
StationIpAddress
cast.stillImageTransmission StillImageTransmission
Unsigned 32-bit integer
StillImageTransmission.
cast.temporalSpatialTradeOff TemporalSpatialTradeOff
Unsigned 32-bit integer
TemporalSpatialTradeOff.
cast.temporalSpatialTradeOffCapability TemporalSpatialTradeOffCapability
Unsigned 32-bit integer
TemporalSpatialTradeOffCapability.
cast.transmitOrReceive TransmitOrReceive
Unsigned 32-bit integer
TransmitOrReceive
cast.transmitPreference TransmitPreference
Unsigned 32-bit integer
TransmitPreference.
cast.version Version
Unsigned 32-bit integer
The version in the keepalive version messages.
cast.videoCapCount VideoCapCount
Unsigned 32-bit integer
VideoCapCount.
dct2000.context Context
String
Context name
dct2000.context_port Context Port number
Unsigned 8-bit integer
Context port number
dct2000.direction Direction
Unsigned 8-bit integer
Frame direction (Sent or Received)
dct2000.dissected-length Dissected length
Unsigned 16-bit integer
Number of bytes dissected by subdissector(s)
dct2000.encapsulation Wireshark encapsulation
Unsigned 8-bit integer
Wireshark frame encapsulation used
dct2000.ipprim IPPrim Addresses
String
IPPrim Addresses
dct2000.ipprim.addr Address
IPv4 address
IPPrim IPv4 Address
dct2000.ipprim.addrv6 Address
IPv6 address
IPPrim IPv6 Address
dct2000.ipprim.conn-id Conn Id
Unsigned 16-bit integer
IPPrim TCP Connection ID
dct2000.ipprim.dst Destination Address
IPv4 address
IPPrim IPv4 Destination Address
dct2000.ipprim.dstv6 Destination Address
IPv6 address
IPPrim IPv6 Destination Address
dct2000.ipprim.src Source Address
IPv4 address
IPPrim IPv4 Source Address
dct2000.ipprim.srcv6 Source Address
IPv6 address
IPPrim IPv6 Source Address
dct2000.ipprim.tcp.dstport TCP Destination Port
Unsigned 16-bit integer
IPPrim TCP Destination Port
dct2000.ipprim.tcp.port TCP Port
Unsigned 16-bit integer
IPPrim TCP Port
dct2000.ipprim.tcp.srcport TCP Source Port
Unsigned 16-bit integer
IPPrim TCP Source Port
dct2000.ipprim.udp.dstport UDP Destination Port
Unsigned 16-bit integer
IPPrim UDP Destination Port
dct2000.ipprim.udp.port UDP Port
Unsigned 16-bit integer
IPPrim UDP Port
dct2000.ipprim.udp.srcport UDP Source Port
Unsigned 16-bit integer
IPPrim UDP Source Port
dct2000.outhdr Out-header
String
DCT2000 protocol outhdr
dct2000.protocol DCT2000 protocol
String
Original (DCT2000) protocol name
dct2000.sctpprim SCTPPrim Addresses
String
SCTPPrim Addresses
dct2000.sctpprim.addr Address
IPv4 address
SCTPPrim IPv4 Address
dct2000.sctpprim.addrv6 Address
IPv6 address
SCTPPrim IPv6 Address
dct2000.sctpprim.dst Destination Address
IPv4 address
SCTPPrim IPv4 Destination Address
dct2000.sctpprim.dstv6 Destination Address
IPv6 address
SCTPPrim IPv6 Destination Address
dct2000.sctprim.dstport UDP Destination Port
Unsigned 16-bit integer
SCTPPrim Destination Port
dct2000.timestamp Timestamp
Double-precision floating point
File timestamp
dct2000.tty tty contents
No value
tty contents
dct2000.tty-line tty line
String
tty line
dct2000.unparsed_data Unparsed protocol data
Byte array
Unparsed DCT2000 protocol data
dct2000.variant Protocol variant
String
DCT2000 protocol variant
cmp.CAKeyUpdateInfoValue CAKeyUpdateInfoValue
No value
cmp.CAKeyUpdateInfoValue
cmp.CAProtEncCertValue CAProtEncCertValue
Unsigned 32-bit integer
cmp.CAProtEncCertValue
cmp.CRLAnnContent_item Item
No value
pkix1explicit.CertificateList
cmp.CertConfirmContent_item Item
No value
cmp.CertStatus
cmp.ConfirmWaitTimeValue ConfirmWaitTimeValue
String
cmp.ConfirmWaitTimeValue
cmp.CurrentCRLValue CurrentCRLValue
No value
cmp.CurrentCRLValue
cmp.DHBMParameter DHBMParameter
No value
cmp.DHBMParameter
cmp.EncKeyPairTypesValue EncKeyPairTypesValue
Unsigned 32-bit integer
cmp.EncKeyPairTypesValue
cmp.EncKeyPairTypesValue_item Item
No value
pkix1explicit.AlgorithmIdentifier
cmp.GenMsgContent_item Item
No value
cmp.InfoTypeAndValue
cmp.GenRepContent_item Item
No value
cmp.InfoTypeAndValue
cmp.ImplicitConfirmValue ImplicitConfirmValue
No value
cmp.ImplicitConfirmValue
cmp.KeyPairParamRepValue KeyPairParamRepValue
No value
cmp.KeyPairParamRepValue
cmp.KeyPairParamReqValue KeyPairParamReqValue
cmp.KeyPairParamReqValue
cmp.OrigPKIMessageValue OrigPKIMessageValue
Unsigned 32-bit integer
cmp.OrigPKIMessageValue
cmp.PBMParameter PBMParameter
No value
cmp.PBMParameter
cmp.PKIFreeText_item Item
String
cmp.UTF8String
cmp.PKIMessages_item Item
No value
cmp.PKIMessage
cmp.POPODecKeyChallContent_item Item
No value
cmp.Challenge
cmp.POPODecKeyRespContent_item Item
Signed 32-bit integer
cmp.INTEGER
cmp.PollRepContent_item Item
No value
cmp.PollRepContent_item
cmp.PollReqContent_item Item
No value
cmp.PollReqContent_item
cmp.PreferredSymmAlgValue PreferredSymmAlgValue
No value
cmp.PreferredSymmAlgValue
cmp.RevPassphraseValue RevPassphraseValue
No value
cmp.RevPassphraseValue
cmp.RevReqContent_item Item
No value
cmp.RevDetails
cmp.SignKeyPairTypesValue SignKeyPairTypesValue
Unsigned 32-bit integer
cmp.SignKeyPairTypesValue
cmp.SignKeyPairTypesValue_item Item
No value
pkix1explicit.AlgorithmIdentifier
cmp.SuppLangTagsValue SuppLangTagsValue
Unsigned 32-bit integer
cmp.SuppLangTagsValue
cmp.SuppLangTagsValue_item Item
String
cmp.UTF8String
cmp.UnsupportedOIDsValue UnsupportedOIDsValue
Unsigned 32-bit integer
cmp.UnsupportedOIDsValue
cmp.UnsupportedOIDsValue_item Item
cmp.OBJECT_IDENTIFIER
cmp.addInfoNotAvailable addInfoNotAvailable
Boolean
cmp.badAlg badAlg
Boolean
cmp.badCertId badCertId
Boolean
cmp.badCertTemplate badCertTemplate
Boolean
cmp.badDataFormat badDataFormat
Boolean
cmp.badMessageCheck badMessageCheck
Boolean
cmp.badPOP badPOP
Boolean
cmp.badRecipientNonce badRecipientNonce
Boolean
cmp.badRequest badRequest
Boolean
cmp.badSenderNonce badSenderNonce
Boolean
cmp.badSinceDate badSinceDate
String
cmp.GeneralizedTime
cmp.badTime badTime
Boolean
cmp.body body
Unsigned 32-bit integer
cmp.PKIBody
cmp.caCerts caCerts
Unsigned 32-bit integer
cmp.SEQUENCE_SIZE_1_MAX_OF_CMPCertificate
cmp.caCerts_item Item
Unsigned 32-bit integer
cmp.CMPCertificate
cmp.caPubs caPubs
Unsigned 32-bit integer
cmp.SEQUENCE_SIZE_1_MAX_OF_CMPCertificate
cmp.caPubs_item Item
Unsigned 32-bit integer
cmp.CMPCertificate
cmp.cann cann
Unsigned 32-bit integer
cmp.CertAnnContent
cmp.ccp ccp
No value
cmp.CertRepMessage
cmp.ccr ccr
Unsigned 32-bit integer
crmf.CertReqMessages
cmp.certConf certConf
Unsigned 32-bit integer
cmp.CertConfirmContent
cmp.certConfirmed certConfirmed
Boolean
cmp.certDetails certDetails
No value
crmf.CertTemplate
cmp.certHash certHash
Byte array
cmp.OCTET_STRING
cmp.certId certId
No value
crmf.CertId
cmp.certOrEncCert certOrEncCert
Unsigned 32-bit integer
cmp.CertOrEncCert
cmp.certReqId certReqId
Signed 32-bit integer
cmp.INTEGER
cmp.certRevoked certRevoked
Boolean
cmp.certificate certificate
Unsigned 32-bit integer
cmp.CMPCertificate
cmp.certifiedKeyPair certifiedKeyPair
No value
cmp.CertifiedKeyPair
cmp.challenge challenge
Byte array
cmp.OCTET_STRING
cmp.checkAfter checkAfter
Signed 32-bit integer
cmp.INTEGER
cmp.ckuann ckuann
No value
cmp.CAKeyUpdAnnContent
cmp.cp cp
No value
cmp.CertRepMessage
cmp.cr cr
Unsigned 32-bit integer
crmf.CertReqMessages
cmp.crlDetails crlDetails
Unsigned 32-bit integer
pkix1explicit.Extensions
cmp.crlEntryDetails crlEntryDetails
Unsigned 32-bit integer
pkix1explicit.Extensions
cmp.crlann crlann
Unsigned 32-bit integer
cmp.CRLAnnContent
cmp.crls crls
Unsigned 32-bit integer
cmp.SEQUENCE_SIZE_1_MAX_OF_CertificateList
cmp.crls_item Item
No value
pkix1explicit.CertificateList
cmp.duplicateCertReq duplicateCertReq
Boolean
cmp.encryptedCert encryptedCert
No value
crmf.EncryptedValue
cmp.error error
No value
cmp.ErrorMsgContent
cmp.errorCode errorCode
Signed 32-bit integer
cmp.INTEGER
cmp.errorDetails errorDetails
Unsigned 32-bit integer
cmp.PKIFreeText
cmp.extraCerts extraCerts
Unsigned 32-bit integer
cmp.SEQUENCE_SIZE_1_MAX_OF_CMPCertificate
cmp.extraCerts_item Item
Unsigned 32-bit integer
cmp.CMPCertificate
cmp.failInfo failInfo
Byte array
cmp.PKIFailureInfo
cmp.freeText freeText
Unsigned 32-bit integer
cmp.PKIFreeText
cmp.generalInfo generalInfo
Unsigned 32-bit integer
cmp.SEQUENCE_SIZE_1_MAX_OF_InfoTypeAndValue
cmp.generalInfo_item Item
No value
cmp.InfoTypeAndValue
cmp.genm genm
Unsigned 32-bit integer
cmp.GenMsgContent
cmp.genp genp
Unsigned 32-bit integer
cmp.GenRepContent
cmp.hashAlg hashAlg
No value
pkix1explicit.AlgorithmIdentifier
cmp.hashVal hashVal
Byte array
cmp.BIT_STRING
cmp.header header
No value
cmp.PKIHeader
cmp.incorrectData incorrectData
Boolean
cmp.infoType infoType
cmp.T_infoType
cmp.infoValue infoValue
No value
cmp.T_infoValue
cmp.ip ip
No value
cmp.CertRepMessage
cmp.ir ir
Unsigned 32-bit integer
crmf.CertReqMessages
cmp.iterationCount iterationCount
Signed 32-bit integer
cmp.INTEGER
cmp.keyPairHist keyPairHist
Unsigned 32-bit integer
cmp.SEQUENCE_SIZE_1_MAX_OF_CertifiedKeyPair
cmp.keyPairHist_item Item
No value
cmp.CertifiedKeyPair
cmp.krp krp
No value
cmp.KeyRecRepContent
cmp.krr krr
Unsigned 32-bit integer
crmf.CertReqMessages
cmp.kup kup
No value
cmp.CertRepMessage
cmp.kur kur
Unsigned 32-bit integer
crmf.CertReqMessages
cmp.mac mac
No value
pkix1explicit.AlgorithmIdentifier
cmp.messageTime messageTime
String
cmp.GeneralizedTime
cmp.missingTimeStamp missingTimeStamp
Boolean
cmp.nested nested
Unsigned 32-bit integer
cmp.NestedMessageContent
cmp.newSigCert newSigCert
Unsigned 32-bit integer
cmp.CMPCertificate
cmp.newWithNew newWithNew
Unsigned 32-bit integer
cmp.CMPCertificate
cmp.newWithOld newWithOld
Unsigned 32-bit integer
cmp.CMPCertificate
cmp.next_poll_ref Next Polling Reference
Unsigned 32-bit integer
cmp.notAuthorized notAuthorized
Boolean
cmp.oldWithNew oldWithNew
Unsigned 32-bit integer
cmp.CMPCertificate
cmp.owf owf
No value
pkix1explicit.AlgorithmIdentifier
cmp.pKIStatusInfo pKIStatusInfo
No value
cmp.PKIStatusInfo
cmp.pkiconf pkiconf
No value
cmp.PKIConfirmContent
cmp.pollRep pollRep
Unsigned 32-bit integer
cmp.PollRepContent
cmp.pollReq pollReq
Unsigned 32-bit integer
cmp.PollReqContent
cmp.poll_ref Polling Reference
Unsigned 32-bit integer
cmp.popdecc popdecc
Unsigned 32-bit integer
cmp.POPODecKeyChallContent
cmp.popdecr popdecr
Unsigned 32-bit integer
cmp.POPODecKeyRespContent
cmp.privateKey privateKey
No value
crmf.EncryptedValue
cmp.protection protection
Byte array
cmp.PKIProtection
cmp.protectionAlg protectionAlg
No value
pkix1explicit.AlgorithmIdentifier
cmp.publicationInfo publicationInfo
No value
crmf.PKIPublicationInfo
cmp.pvno pvno
Signed 32-bit integer
cmp.T_pvno
cmp.rann rann
No value
cmp.RevAnnContent
cmp.reason reason
Unsigned 32-bit integer
cmp.PKIFreeText
cmp.recipKID recipKID
Byte array
pkix1implicit.KeyIdentifier
cmp.recipNonce recipNonce
Byte array
cmp.OCTET_STRING
cmp.recipient recipient
Unsigned 32-bit integer
pkix1implicit.GeneralName
cmp.response response
Unsigned 32-bit integer
cmp.SEQUENCE_OF_CertResponse
cmp.response_item Item
No value
cmp.CertResponse
cmp.revCerts revCerts
Unsigned 32-bit integer
cmp.SEQUENCE_SIZE_1_MAX_OF_CertId
cmp.revCerts_item Item
No value
crmf.CertId
cmp.rm Record Marker
Unsigned 32-bit integer
Record Marker length of PDU in bytes
cmp.rp rp
No value
cmp.RevRepContent
cmp.rr rr
Unsigned 32-bit integer
cmp.RevReqContent
cmp.rspInfo rspInfo
Byte array
cmp.OCTET_STRING
cmp.salt salt
Byte array
cmp.OCTET_STRING
cmp.sender sender
Unsigned 32-bit integer
pkix1implicit.GeneralName
cmp.senderKID senderKID
Byte array
pkix1implicit.KeyIdentifier
cmp.senderNonce senderNonce
Byte array
cmp.OCTET_STRING
cmp.signerNotTrusted signerNotTrusted
Boolean
cmp.status status
Signed 32-bit integer
cmp.PKIStatus
cmp.statusInfo statusInfo
No value
cmp.PKIStatusInfo
cmp.statusString statusString
Unsigned 32-bit integer
cmp.PKIFreeText
cmp.status_item Item
No value
cmp.PKIStatusInfo
cmp.systemFailure systemFailure
Boolean
cmp.systemUnavail systemUnavail
Boolean
cmp.timeNotAvailable timeNotAvailable
Boolean
cmp.transactionID transactionID
Byte array
cmp.OCTET_STRING
cmp.transactionIdInUse transactionIdInUse
Boolean
cmp.ttcb Time to check Back
Date/Time stamp
cmp.type Type
Unsigned 8-bit integer
PDU Type
cmp.type.oid InfoType
String
Type of InfoTypeAndValue
cmp.unacceptedExtension unacceptedExtension
Boolean
cmp.unacceptedPolicy unacceptedPolicy
Boolean
cmp.unsupportedVersion unsupportedVersion
Boolean
cmp.willBeRevokedAt willBeRevokedAt
String
cmp.GeneralizedTime
cmp.witness witness
Byte array
cmp.OCTET_STRING
cmp.wrongAuthority wrongAuthority
Boolean
cmp.wrongIntegrity wrongIntegrity
Boolean
cmp.x509v3PKCert x509v3PKCert
No value
pkix1explicit.Certificate
crmf.Attributes_item Item
No value
pkix1explicit.Attribute
crmf.CertId CertId
No value
crmf.CertId
crmf.CertReqMessages_item Item
No value
crmf.CertReqMsg
crmf.CertRequest CertRequest
No value
crmf.CertRequest
crmf.Controls_item Item
No value
crmf.AttributeTypeAndValue
crmf.EncKeyWithID EncKeyWithID
No value
crmf.EncKeyWithID
crmf.PBMParameter PBMParameter
No value
crmf.PBMParameter
crmf.ProtocolEncrKey ProtocolEncrKey
No value
crmf.ProtocolEncrKey
crmf.UTF8Pairs UTF8Pairs
String
crmf.UTF8Pairs
crmf.action action
Signed 32-bit integer
crmf.T_action
crmf.agreeMAC agreeMAC
No value
crmf.PKMACValue
crmf.algId algId
No value
pkix1explicit.AlgorithmIdentifier
crmf.algorithmIdentifier algorithmIdentifier
No value
pkix1explicit.AlgorithmIdentifier
crmf.archiveRemGenPrivKey archiveRemGenPrivKey
Boolean
crmf.BOOLEAN
crmf.attributes attributes
Unsigned 32-bit integer
crmf.Attributes
crmf.authInfo authInfo
Unsigned 32-bit integer
crmf.T_authInfo
crmf.certReq certReq
No value
crmf.CertRequest
crmf.certReqId certReqId
Signed 32-bit integer
crmf.INTEGER
crmf.certTemplate certTemplate
No value
crmf.CertTemplate
crmf.controls controls
Unsigned 32-bit integer
crmf.Controls
crmf.dhMAC dhMAC
Byte array
crmf.BIT_STRING
crmf.encSymmKey encSymmKey
Byte array
crmf.BIT_STRING
crmf.encValue encValue
Byte array
crmf.BIT_STRING
crmf.encryptedKey encryptedKey
No value
cms.EnvelopedData
crmf.encryptedPrivKey encryptedPrivKey
Unsigned 32-bit integer
crmf.EncryptedKey
crmf.encryptedValue encryptedValue
No value
crmf.EncryptedValue
crmf.envelopedData envelopedData
No value
cms.EnvelopedData
crmf.extensions extensions
Unsigned 32-bit integer
pkix1explicit.Extensions
crmf.generalName generalName
Unsigned 32-bit integer
pkix1implicit.GeneralName
crmf.identifier identifier
Unsigned 32-bit integer
crmf.T_identifier
crmf.intendedAlg intendedAlg
No value
pkix1explicit.AlgorithmIdentifier
crmf.issuer issuer
Unsigned 32-bit integer
pkix1explicit.Name
crmf.issuerUID issuerUID
Byte array
pkix1explicit.UniqueIdentifier
crmf.iterationCount iterationCount
Signed 32-bit integer
crmf.INTEGER
crmf.keyAgreement keyAgreement
Unsigned 32-bit integer
crmf.POPOPrivKey
crmf.keyAlg keyAlg
No value
pkix1explicit.AlgorithmIdentifier
crmf.keyEncipherment keyEncipherment
Unsigned 32-bit integer
crmf.POPOPrivKey
crmf.keyGenParameters keyGenParameters
Byte array
crmf.KeyGenParameters
crmf.mac mac
No value
pkix1explicit.AlgorithmIdentifier
crmf.notAfter notAfter
Unsigned 32-bit integer
pkix1explicit.Time
crmf.notBefore notBefore
Unsigned 32-bit integer
pkix1explicit.Time
crmf.owf owf
No value
pkix1explicit.AlgorithmIdentifier
crmf.popo popo
Unsigned 32-bit integer
crmf.ProofOfPossession
crmf.poposkInput poposkInput
No value
crmf.POPOSigningKeyInput
crmf.privateKey privateKey
No value
crmf.PrivateKeyInfo
crmf.privateKeyAlgorithm privateKeyAlgorithm
No value
pkix1explicit.AlgorithmIdentifier
crmf.pubInfos pubInfos
Unsigned 32-bit integer
crmf.SEQUENCE_SIZE_1_MAX_OF_SinglePubInfo
crmf.pubInfos_item Item
No value
crmf.SinglePubInfo
crmf.pubLocation pubLocation
Unsigned 32-bit integer
pkix1implicit.GeneralName
crmf.pubMethod pubMethod
Signed 32-bit integer
crmf.T_pubMethod
crmf.publicKey publicKey
No value
pkix1explicit.SubjectPublicKeyInfo
crmf.publicKeyMAC publicKeyMAC
No value
crmf.PKMACValue
crmf.raVerified raVerified
No value
crmf.NULL
crmf.regInfo regInfo
Unsigned 32-bit integer
crmf.SEQUENCE_SIZE_1_MAX_OF_AttributeTypeAndValue
crmf.regInfo_item Item
No value
crmf.AttributeTypeAndValue
crmf.salt salt
Byte array
crmf.OCTET_STRING
crmf.sender sender
Unsigned 32-bit integer
pkix1implicit.GeneralName
crmf.serialNumber serialNumber
Signed 32-bit integer
crmf.INTEGER
crmf.signature signature
No value
crmf.POPOSigningKey
crmf.signingAlg signingAlg
No value
pkix1explicit.AlgorithmIdentifier
crmf.string string
String
crmf.UTF8String
crmf.subject subject
Unsigned 32-bit integer
pkix1explicit.Name
crmf.subjectUID subjectUID
Byte array
pkix1explicit.UniqueIdentifier
crmf.subsequentMessage subsequentMessage
Signed 32-bit integer
crmf.SubsequentMessage
crmf.symmAlg symmAlg
No value
pkix1explicit.AlgorithmIdentifier
crmf.thisMessage thisMessage
Byte array
crmf.BIT_STRING
crmf.type type
crmf.T_type
crmf.type.oid Type
String
Type of AttributeTypeAndValue
crmf.validity validity
No value
crmf.OptionalValidity
crmf.value value
No value
crmf.T_value
crmf.valueHint valueHint
Byte array
crmf.OCTET_STRING
crmf.version version
Signed 32-bit integer
pkix1explicit.Version
cpha.cluster_number Cluster Number
Unsigned 16-bit integer
Cluster Number
cpha.dst_id Destination Machine ID
Unsigned 16-bit integer
Destination Machine ID
cpha.ethernet_addr Ethernet Address
6-byte Hardware (MAC) Address
Ethernet Address
cpha.filler Filler
Unsigned 16-bit integer
cpha.ha_mode HA mode
Unsigned 16-bit integer
HA Mode
cpha.ha_time_unit HA Time unit
Unsigned 16-bit integer
HA Time unit (ms)
cpha.hash_len Hash list length
Signed 32-bit integer
Hash list length
cpha.id_num Number of IDs reported
Unsigned 16-bit integer
Number of IDs reported
cpha.if_trusted Interface Trusted
Boolean
Interface Trusted
cpha.ifn Interface Number
Unsigned 32-bit integer
cpha.in_assume_up Interfaces assumed up in the Inbound
Signed 8-bit integer
cpha.in_up Interfaces up in the Inbound
Signed 8-bit integer
Interfaces up in the Inbound
cpha.ip IP Address
IPv4 address
IP Address
cpha.machine_num Machine Number
Signed 16-bit integer
Machine Number
cpha.magic_number CPHAP Magic Number
Unsigned 16-bit integer
CPHAP Magic Number
cpha.opcode OpCode
Unsigned 16-bit integer
OpCode
cpha.out_assume_up Interfaces assumed up in the Outbound
Signed 8-bit integer
cpha.out_up Interfaces up in the Outbound
Signed 8-bit integer
cpha.policy_id Policy ID
Unsigned 16-bit integer
Policy ID
cpha.random_id Random ID
Unsigned 16-bit integer
Random ID
cpha.reported_ifs Reported Interfaces
Unsigned 32-bit integer
Reported Interfaces
cpha.seed Seed
Unsigned 32-bit integer
Seed
cpha.slot_num Slot Number
Signed 16-bit integer
Slot Number
cpha.src_id Source Machine ID
Unsigned 16-bit integer
Source Machine ID
cpha.src_if Source Interface
Unsigned 16-bit integer
Source Interface
cpha.status Status
Unsigned 32-bit integer
cpha.version Protocol Version
Unsigned 16-bit integer
CPHAP Version
fw1.chain Chain Position
String
Chain Position
fw1.direction Direction
String
Direction
fw1.interface Interface
String
Interface
fw1.type Type
Unsigned 16-bit integer
fw1.uuid UUID
Unsigned 32-bit integer
UUID
cmpp.Command_Id Command Id
Unsigned 32-bit integer
Command Id of the CMPP messages
cmpp.Dest_terminal_Id Destination Address
String
MSISDN number which receive the SMS
cmpp.LinkID Link ID
String
Link ID
cmpp.Msg_Content Message Content
String
Message Content
cmpp.Msg_Fmt Message Format
Unsigned 8-bit integer
Message Format
cmpp.Msg_Id Msg_Id
Unsigned 64-bit integer
Message ID
cmpp.Msg_Id.ismg_code ISMG Code
Unsigned 32-bit integer
ISMG Code, bit 38 ~ 17
cmpp.Msg_Id.sequence_id Msg_Id sequence Id
Unsigned 16-bit integer
Msg_Id sequence Id, bit 16 ~ 1
cmpp.Msg_Id.timestamp Timestamp
String
Timestamp MM/DD HH:MM:SS Bit 64 ~ 39
cmpp.Msg_Length Message length
Unsigned 8-bit integer
SMS Message length, ASCII must be <= 160 bytes, other must be <= 140 bytes
cmpp.Report.SMSC_sequence SMSC_sequence
Unsigned 32-bit integer
Sequence number
cmpp.Sequence_Id Sequence Id
Unsigned 32-bit integer
Sequence Id of the CMPP messages
cmpp.Servicd_Id Service ID
String
Service ID, a mix of characters, numbers and symbol
cmpp.TP_pId TP pId
Unsigned 8-bit integer
GSM TP pId Field
cmpp.TP_udhi TP udhi
Unsigned 8-bit integer
GSM TP udhi field
cmpp.Total_Length Total Length
Unsigned 32-bit integer
Total length of the CMPP PDU.
cmpp.Version Version
String
CMPP Version
cmpp.connect.AuthenticatorSource Authenticator Source
String
Authenticator source, MD5(Source_addr + 9 zero + shared secret + timestamp)
cmpp.connect.Source_Addr Source Addr
String
Source Address, the SP_Id
cmpp.connect.Timestamp Timestamp
String
Timestamp MM/DD HH:MM:SS
cmpp.connect_resp.AuthenticatorISMG SIMG Authenticate result
String
Authenticator result, MD5(Status + AuthenticatorSource + shared secret)
cmpp.connect_resp.Status Connect Response Status
Unsigned 32-bit integer
Response Status, Value higher then 4 means other error
cmpp.deliver.Dest_Id Destination ID
String
SP Service ID or server number
cmpp.deliver.Registered_Delivery Deliver Report
Boolean
The message is a deliver report if this value = 1
cmpp.deliver.Report Detail Deliver Report
No value
The detail report
cmpp.deliver.Report.Done_time Done_time
String
Format YYMMDDHHMM
cmpp.deliver.Report.Status Deliver Status
String
Deliver Status
cmpp.deliver.Report.Submit_time Submit_time
String
Format YYMMDDHHMM
cmpp.deliver.Src_terminal_Id Src_terminal_Id
String
Source MSISDN number, if it is deliver report, this will be the CMPP_SUBMIT destination number
cmpp.deliver.Src_terminal_type Fake source terminal type
Boolean
Type of the source terminal, can be 0 (real) or 1 (fake)
cmpp.deliver_resp.Result Result
Unsigned 32-bit integer
Deliver Result
cmpp.submit.At_time Send time
String
Message send time, format following SMPP 3.3
cmpp.submit.DestUsr_tl Destination Address Count
Unsigned 8-bit integer
Number of destination address, must smaller then 100
cmpp.submit.Dest_terminal_type Fake Destination Terminal
Boolean
destination terminal type, 0 is real, 1 is fake
cmpp.submit.FeeCode Fee Code
String
Fee Code
cmpp.submit.FeeType Fee Type
String
Fee Type
cmpp.submit.Fee_UserType Charging Informations
Unsigned 8-bit integer
Charging Informations, if value is 3, this field will not be used
cmpp.submit.Fee_terminal_Id Fee Terminal ID
String
Fee Terminal ID, Valid only when Fee_UserType is 3
cmpp.submit.Fee_terminal_type Fake Fee Terminal
Boolean
Fee terminal type, 0 is real, 1 is fake
cmpp.submit.Msg_level Message Level
Unsigned 8-bit integer
Message Level
cmpp.submit.Msg_src Message Source SP_Id
String
Message source SP ID
cmpp.submit.Pk_number Part Number
Unsigned 8-bit integer
Part number of the message with the same Msg_Id, start from 1
cmpp.submit.Pk_total Number of Part
Unsigned 8-bit integer
Total number of parts of the message with the same Msg_Id, start from 1
cmpp.submit.Registered_Delivery Registered Delivery
Boolean
Registered Delivery flag
cmpp.submit.Src_Id Source ID
String
This value matches SMPP submit_sm source_addr field
cmpp.submit.Valld_Time Valid time
String
Message Valid Time, format follow SMPP 3.3
cmpp.submit_resp.Result Result
Unsigned 32-bit integer
Submit Result
auto_rp.group_prefix Prefix
IPv4 address
Group prefix
auto_rp.holdtime Holdtime
Unsigned 16-bit integer
The amount of time in seconds this announcement is valid
auto_rp.mask_len Mask length
Unsigned 8-bit integer
Length of group prefix
auto_rp.pim_ver Version
Unsigned 8-bit integer
RP's highest PIM version
auto_rp.prefix_sign Sign
Unsigned 8-bit integer
Group prefix sign
auto_rp.rp_addr RP address
IPv4 address
The unicast IP address of the RP
auto_rp.rp_count RP count
Unsigned 8-bit integer
The number of RP addresses contained in this message
auto_rp.type Packet type
Unsigned 8-bit integer
Auto-RP packet type
auto_rp.version Protocol version
Unsigned 8-bit integer
Auto-RP protocol version
cdp.checksum Checksum
Unsigned 16-bit integer
cdp.checksum_bad Bad
Boolean
True: checksum doesn't match packet content; False: matches content or not checked
cdp.checksum_good Good
Boolean
True: checksum matches packet content; False: doesn't match content or not checked
cdp.tlv.len Length
Unsigned 16-bit integer
cdp.tlv.type Type
Unsigned 16-bit integer
cdp.ttl TTL
Unsigned 16-bit integer
cdp.version Version
Unsigned 8-bit integer
cgmp.count Count
Unsigned 8-bit integer
cgmp.gda Group Destination Address
6-byte Hardware (MAC) Address
Group Destination Address
cgmp.type Type
Unsigned 8-bit integer
cgmp.usa Unicast Source Address
6-byte Hardware (MAC) Address
Unicast Source Address
cgmp.version Version
Unsigned 8-bit integer
chdlc.address Address
Unsigned 8-bit integer
chdlc.protocol Protocol
Unsigned 16-bit integer
hsrp.adv.activegrp Adv active groups
Unsigned 8-bit integer
Advertisement active group count
hsrp.adv.passivegrp Adv passive groups
Unsigned 8-bit integer
Advertisement passive group count
hsrp.adv.reserved1 Adv reserved1
Unsigned 8-bit integer
Advertisement tlv length
hsrp.adv.reserved2 Adv reserved2
Unsigned 32-bit integer
Advertisement tlv length
hsrp.adv.state Adv state
Unsigned 8-bit integer
Advertisement tlv length
hsrp.adv.tlvlength Adv length
Unsigned 16-bit integer
Advertisement tlv length
hsrp.adv.tlvtype Adv type
Unsigned 16-bit integer
Advertisement tlv type
hsrp.auth_data Authentication Data
String
Contains a clear-text 8 character reused password
hsrp.group Group
Unsigned 8-bit integer
This field identifies the standby group
hsrp.hellotime Hellotime
Unsigned 8-bit integer
The approximate period between the Hello messages that the router sends
hsrp.holdtime Holdtime
Unsigned 8-bit integer
Time that the current Hello message should be considered valid
hsrp.md5_ip_address Sender's IP Address
IPv4 address
IP Address of the sender interface
hsrp.opcode Op Code
Unsigned 8-bit integer
The type of message contained in this packet
hsrp.priority Priority
Unsigned 8-bit integer
Used to elect the active and standby routers. Numerically higher priority wins vote
hsrp.reserved Reserved
Unsigned 8-bit integer
Reserved
hsrp.state State
Unsigned 8-bit integer
The current state of the router sending the message
hsrp.version Version
Unsigned 8-bit integer
The version of the HSRP messages
hsrp.virt_ip Virtual IP Address
IPv4 address
The virtual IP address used by this group
hsrp2._md5_algorithm MD5 Algorithm
Unsigned 8-bit integer
Hash Algorithm used by this group
hsrp2._md5_flags MD5 Flags
Unsigned 8-bit integer
Undefined
hsrp2.active_groups Active Groups
Unsigned 16-bit integer
Active group number which becomes the active router myself
hsrp2.auth_data Authentication Data
String
Contains a clear-text 8 character reused password
hsrp2.group Group
Unsigned 16-bit integer
This field identifies the standby group
hsrp2.group_state_tlv Group State TLV
Unsigned 8-bit integer
Group State TLV
hsrp2.hellotime Hellotime
Unsigned 32-bit integer
The approximate period between the Hello messages that the router sends
hsrp2.holdtime Holdtime
Unsigned 32-bit integer
Time that the current Hello message should be considered valid
hsrp2.identifier Identifier
6-byte Hardware (MAC) Address
BIA value of a sender interafce
hsrp2.interface_state_tlv Interface State TLV
Unsigned 8-bit integer
Interface State TLV
hsrp2.ipversion IP Ver.
Unsigned 8-bit integer
The IP protocol version used in this hsrp message
hsrp2.md5_auth_data MD5 Authentication Data
Unsigned 32-bit integer
MD5 digest string is contained.
hsrp2.md5_auth_tlv MD5 Authentication TLV
Unsigned 8-bit integer
MD5 Authentication TLV
hsrp2.md5_key_id MD5 Key ID
Unsigned 32-bit integer
This field contains Key chain ID
hsrp2.opcode Op Code
Unsigned 8-bit integer
The type of message contained in this packet
hsrp2.passive_groups Passive Groups
Unsigned 16-bit integer
Standby group number which doesn't become the acitve router myself
hsrp2.priority Priority
Unsigned 32-bit integer
Used to elect the active and standby routers. Numerically higher priority wins vote
hsrp2.state State
Unsigned 8-bit integer
The current state of the router sending the message
hsrp2.text_auth_tlv Text Authentication TLV
Unsigned 8-bit integer
Text Authentication TLV
hsrp2.version Version
Unsigned 8-bit integer
The version of the HSRP messages
hsrp2.virt_ip Virtual IP Address
IPv4 address
The virtual IP address used by this group
hsrp2.virt_ip_v6 Virtual IPv6 Address
IPv6 address
The virtual IPv6 address used by this group
isl.addr Source or Destination Address
6-byte Hardware (MAC) Address
Source or Destination Hardware Address
isl.bpdu BPDU
Boolean
BPDU indicator
isl.crc CRC
Unsigned 32-bit integer
CRC field of encapsulated frame
isl.dst Destination
Byte array
Destination Address
isl.dst_route_desc Destination route descriptor
Unsigned 16-bit integer
Route descriptor to be used for forwarding
isl.esize Esize
Unsigned 8-bit integer
Frame size for frames less than 64 bytes
isl.explorer Explorer
Boolean
Explorer
isl.fcs_not_incl FCS Not Included
Boolean
FCS not included
isl.hsa HSA
Unsigned 24-bit integer
High bits of source address
isl.index Index
Unsigned 16-bit integer
Port index of packet source
isl.len Length
Unsigned 16-bit integer
isl.src Source
6-byte Hardware (MAC) Address
Source Hardware Address
isl.src_route_desc Source-route descriptor
Unsigned 16-bit integer
Route descriptor to be used for source learning
isl.src_vlan_id Source VLAN ID
Unsigned 16-bit integer
Source Virtual LAN ID
isl.trailer Trailer
Byte array
Ethernet Trailer or Checksum
isl.type Type
Unsigned 8-bit integer
Type
isl.user User
Unsigned 8-bit integer
User-defined bits
isl.user_eth User
Unsigned 8-bit integer
Priority (for Ethernet)
isl.vlan_id VLAN ID
Unsigned 16-bit integer
Virtual LAN ID
igrp.as Autonomous System
Unsigned 16-bit integer
Autonomous System number
igrp.update Update Release
Unsigned 8-bit integer
Update Release number
cflow.aggmethod AggMethod
Unsigned 8-bit integer
CFlow V8 Aggregation Method
cflow.aggversion AggVersion
Unsigned 8-bit integer
CFlow V8 Aggregation Version
cflow.bgpnexthop BGPNextHop
IPv4 address
BGP Router Nexthop
cflow.bgpnexthopv6 BGPNextHop
IPv6 address
BGP Router Nexthop
cflow.count Count
Unsigned 16-bit integer
Count of PDUs
cflow.data_datarecord_id DataRecord (Template Id)
Unsigned 16-bit integer
DataRecord with corresponding to a template Id
cflow.data_flowset_id Data FlowSet (Template Id)
Unsigned 16-bit integer
Data FlowSet with corresponding to a template Id
cflow.direction Direction
Unsigned 8-bit integer
Direction
cflow.dstaddr DstAddr
IPv4 address
Flow Destination Address
cflow.dstaddrv6 DstAddr
IPv6 address
Flow Destination Address
cflow.dstas DstAS
Unsigned 16-bit integer
Destination AS
cflow.dstmask DstMask
Unsigned 8-bit integer
Destination Prefix Mask
cflow.dstmaskv6 DstMask
Unsigned 8-bit integer
IPv6 Destination Prefix Mask
cflow.dstport DstPort
Unsigned 16-bit integer
Flow Destination Port
cflow.dstprefix DstPrefix
IPv4 address
Flow Destination Prefix
cflow.engine_id EngineId
Unsigned 8-bit integer
Slot number of switching engine
cflow.engine_type EngineType
Unsigned 8-bit integer
Flow switching engine type
cflow.exporttime ExportTime
Unsigned 32-bit integer
Time when the flow has been exported
cflow.flags Export Flags
Unsigned 8-bit integer
CFlow Flags
cflow.flow_active_timeout Flow active timeout
Unsigned 16-bit integer
Flow active timeout
cflow.flow_class FlowClass
Unsigned 8-bit integer
Flow Class
cflow.flow_exporter FlowExporter
Byte array
Flow Exporter
cflow.flow_inactive_timeout Flow inactive timeout
Unsigned 16-bit integer
Flow inactive timeout
cflow.flows Flows
Unsigned 32-bit integer
Flows Aggregated in PDU
cflow.flowset_id FlowSet Id
Unsigned 16-bit integer
FlowSet Id
cflow.flowset_length FlowSet Length
Unsigned 16-bit integer
FlowSet length
cflow.flowsexp FlowsExp
Unsigned 32-bit integer
Flows exported
cflow.forwarding_code ForwdCode
Unsigned 8-bit integer
Forwarding Code
cflow.forwarding_status ForwdStat
Unsigned 8-bit integer
Forwarding Status
cflow.icmp_ipv4_code IPv4 ICMP Code
Unsigned 8-bit integer
IPv4 ICMP code
cflow.icmp_ipv4_type IPv4 ICMP Type
Unsigned 8-bit integer
IPv4 ICMP type
cflow.icmp_ipv6_code IPv6 ICMP Code
Unsigned 8-bit integer
IPv6 ICMP code
cflow.icmp_ipv6_type IPv6 ICMP Type
Unsigned 8-bit integer
IPv6 ICMP type
cflow.icmp_type ICMP Type
Unsigned 8-bit integer
ICMP type
cflow.if_descr IfDescr
String
SNMP Interface Description
cflow.if_name IfName
String
SNMP Interface Name
cflow.igmp_type IGMP Type
Unsigned 8-bit integer
IGMP type
cflow.inputint InputInt
Unsigned 16-bit integer
Flow Input Interface
cflow.ip_dscp DSCP
Unsigned 8-bit integer
IP DSCP
cflow.ip_header_words IPHeaderLen
Unsigned 8-bit integer
IPHeaderLen
cflow.ip_tos IP TOS
Unsigned 8-bit integer
IP type of service
cflow.ip_total_length IP Total Length
Unsigned 8-bit integer
IP total length
cflow.ip_ttl IP TTL
Unsigned 8-bit integer
IP time to live
cflow.ip_version IPVersion
Byte array
IP Version
cflow.ipv4_ident IPv4Ident
Unsigned 16-bit integer
IPv4 Identifier
cflow.is_multicast IsMulticast
Unsigned 8-bit integer
Is Multicast
cflow.len Length
Unsigned 16-bit integer
Length of PDUs
cflow.length_max MaxLength
Unsigned 16-bit integer
Packet Length Max
cflow.length_min MinLength
Unsigned 16-bit integer
Packet Length Min
cflow.muloctets MulticastOctets
Unsigned 32-bit integer
Count of multicast octets
cflow.mulpackets MulticastPackets
Unsigned 32-bit integer
Count of multicast packets
cflow.nexthop NextHop
IPv4 address
Router nexthop
cflow.nexthopv6 NextHop
IPv6 address
Router nexthop
cflow.octets Octets
Unsigned 32-bit integer
Count of bytes
cflow.octets64 Octets
Unsigned 64-bit integer
Count of bytes
cflow.octets_squared OctetsSquared
Unsigned 64-bit integer
Octets Squared
cflow.octetsexp OctetsExp
Unsigned 32-bit integer
Octets exported
cflow.option_length Option Length
Unsigned 16-bit integer
Option length
cflow.option_map OptionMap
Byte array
Option Map
cflow.option_scope_length Option Scope Length
Unsigned 16-bit integer
Option scope length
cflow.options_flowset_id Options FlowSet
Unsigned 16-bit integer
Options FlowSet
cflow.outputint OutputInt
Unsigned 16-bit integer
Flow Output Interface
cflow.packets Packets
Unsigned 32-bit integer
Count of packets
cflow.packets64 Packets
Unsigned 64-bit integer
Count of packets
cflow.packetsexp PacketsExp
Unsigned 32-bit integer
Packets exported
cflow.packetsout PacketsOut
Unsigned 64-bit integer
Count of packets going out
cflow.peer_dstas PeerDstAS
Unsigned 16-bit integer
Peer Destination AS
cflow.peer_srcas PeerSrcAS
Unsigned 16-bit integer
Peer Source AS
cflow.protocol Protocol
Unsigned 8-bit integer
IP Protocol
cflow.routersc Router Shortcut
IPv4 address
Router shortcut by switch
cflow.sampler_mode SamplerMode
Unsigned 8-bit integer
Flow Sampler Mode
cflow.sampler_name SamplerName
String
Sampler Name
cflow.sampler_random_interval SamplerRandomInterval
Unsigned 32-bit integer
Flow Sampler Random Interval
cflow.samplerate SampleRate
Unsigned 16-bit integer
Sample Frequency of exporter
cflow.sampling_algorithm Sampling algorithm
Unsigned 8-bit integer
Sampling algorithm
cflow.sampling_interval Sampling interval
Unsigned 32-bit integer
Sampling interval
cflow.samplingmode SamplingMode
Unsigned 16-bit integer
Sampling Mode of exporter
cflow.scope Scope Unknown
Byte array
Option Scope Unknown
cflow.scope_cache ScopeCache
Byte array
Option Scope Cache
cflow.scope_field_length Scope Field Length
Unsigned 16-bit integer
Scope field length
cflow.scope_field_type Scope Type
Unsigned 16-bit integer
Scope field type
cflow.scope_interface ScopeInterface
Unsigned 32-bit integer
Option Scope Interface
cflow.scope_linecard ScopeLinecard
Byte array
Option Scope Linecard
cflow.scope_system ScopeSystem
IPv4 address
Option Scope System
cflow.scope_template ScopeTemplate
Byte array
Option Scope Template
cflow.section_header SectionHeader
Byte array
Header of Packet
cflow.section_payload SectionPayload
Byte array
Payload of Packet
cflow.sequence FlowSequence
Unsigned 32-bit integer
Sequence number of flows seen
cflow.source_id SourceId
Unsigned 32-bit integer
Identifier for export device
cflow.srcaddr SrcAddr
IPv4 address
Flow Source Address
cflow.srcaddrv6 SrcAddr
IPv6 address
Flow Source Address
cflow.srcas SrcAS
Unsigned 16-bit integer
Source AS
cflow.srcmask SrcMask
Unsigned 8-bit integer
Source Prefix Mask
cflow.srcmaskv6 SrcMask
Unsigned 8-bit integer
IPv6 Source Prefix Mask
cflow.srcnet SrcNet
IPv4 address
Flow Source Network
cflow.srcport SrcPort
Unsigned 16-bit integer
Flow Source Port
cflow.srcprefix SrcPrefix
IPv4 address
Flow Source Prefix
cflow.sysuptime SysUptime
Unsigned 32-bit integer
Time since router booted (in milliseconds)
cflow.tcp_windows_size TCP Windows Size
Unsigned 16-bit integer
TCP Windows size
cflow.tcpflags TCP Flags
Unsigned 8-bit integer
TCP Flags
cflow.template_field_count Field Count
Unsigned 16-bit integer
Template field count
cflow.template_field_length Length
Unsigned 16-bit integer
Template field length
cflow.template_field_type Type
Unsigned 16-bit integer
Template field type
cflow.template_flowset_id Template FlowSet
Unsigned 16-bit integer
Template FlowSet
cflow.template_id Template Id
Unsigned 16-bit integer
Template Id
cflow.timedelta Duration
Time duration
Duration of flow sample (end - start)
cflow.timeend EndTime
Time duration
Uptime at end of flow
cflow.timestamp Timestamp
Date/Time stamp
Current seconds since epoch
cflow.timestart StartTime
Time duration
Uptime at start of flow
cflow.toplabeladdr TopLabelAddr
IPv4 address
Top MPLS label PE address
cflow.toplabeltype TopLabelType
Unsigned 8-bit integer
Top MPLS label Type
cflow.tos IP ToS
Unsigned 8-bit integer
IP Type of Service
cflow.ttl_max MaxTTL
Unsigned 8-bit integer
TTL maximum
cflow.ttl_min MinTTL
Unsigned 8-bit integer
TTL minimum
cflow.udp_length UDP Length
Unsigned 16-bit integer
UDP length
cflow.unix_nsecs CurrentNSecs
Unsigned 32-bit integer
Residual nanoseconds since epoch
cflow.unix_secs CurrentSecs
Unsigned 32-bit integer
Current seconds since epoch
cflow.version Version
Unsigned 16-bit integer
NetFlow Version
slarp.address Address
IPv4 address
slarp.mysequence Outgoing sequence number
Unsigned 32-bit integer
slarp.ptype Packet type
Unsigned 32-bit integer
slarp.yoursequence Returned sequence number
Unsigned 32-bit integer
sm.bearer Bearer ID
Unsigned 16-bit integer
sm.channel Channel ID
Unsigned 16-bit integer
sm.context Context
Unsigned 32-bit integer
Context(guesswork!)
sm.eisup_message_id Message id
Unsigned 8-bit integer
Message id(guesswork!)
sm.ip_addr IPv4 address
IPv4 address
IPv4 address
sm.len Length
Unsigned 16-bit integer
sm.msg_type Message Type
Unsigned 16-bit integer
sm.msgid Message ID
Unsigned 16-bit integer
sm.protocol Protocol Type
Unsigned 16-bit integer
sm.sm_msg_type SM Message Type
Unsigned 32-bit integer
sm.tag Tag
Unsigned 16-bit integer
Tag(guesswork!)
cwids.caplen Capture length
Unsigned 16-bit integer
Captured bytes in record
cwids.channel Channel
Unsigned 8-bit integer
Channel for this capture
cwids.reallen Original length
Unsigned 16-bit integer
Original num bytes in frame
cwids.unknown1 Unknown1
Byte array
1st Unknown block - timestamp?
cwids.unknown2 Unknown2
Byte array
2nd Unknown block
cwids.unknown3 Unknown3
Byte array
3rd Unknown block
cwids.version Capture Version
Unsigned 16-bit integer
Version or format of record
wlccp.80211_apsd_flag APSD flag
Unsigned 16-bit integer
APSD Flag
wlccp.80211_capabilities 802.11 Capabilities Flags
Unsigned 16-bit integer
802.11 Capabilities Flags
wlccp.80211_cf_poll_req_flag CF Poll Request flag
Unsigned 16-bit integer
CF Poll Request Flag
wlccp.80211_cf_pollable_flag CF Pollable flag
Unsigned 16-bit integer
CF Pollable Flag
wlccp.80211_chan_agility_flag Channel Agility flag
Unsigned 16-bit integer
Channel Agility Flag
wlccp.80211_ess_flag ESS flag
Unsigned 16-bit integer
Set on by APs in Beacon or Probe Response
wlccp.80211_ibss_flag IBSS flag
Unsigned 16-bit integer
Set on by STAs in Beacon or Probe Response
wlccp.80211_pbcc_flag PBCC flag
Unsigned 16-bit integer
PBCC Flag
wlccp.80211_qos_flag QOS flag
Unsigned 16-bit integer
QOS Flag
wlccp.80211_reserved Reserved
Unsigned 16-bit integer
Reserved
wlccp.80211_short_preamble_flag Short Preamble flag
Unsigned 16-bit integer
Short Preamble Flag
wlccp.80211_short_time_slot_flag Short Time Slot flag
Unsigned 16-bit integer
Short Time Slot Flag
wlccp.80211_spectrum_mgmt_flag Spectrum Management flag
Unsigned 16-bit integer
Spectrum Management Flag
wlccp.aaa_auth_type AAA Authentication Type
Unsigned 8-bit integer
AAA Authentication Type
wlccp.aaa_keymgmt_type AAA Key Management Type
Unsigned 8-bit integer
AAA Key Management Type
wlccp.aaa_msg_type AAA Message Type
Unsigned 8-bit integer
AAA Message Type
wlccp.ack_required_flag Ack Required flag
Unsigned 16-bit integer
Set on to require an acknowledgement
wlccp.age Age
Unsigned 32-bit integer
Time since AP became a WDS master
wlccp.apnodeid AP Node ID
No value
AP Node ID
wlccp.apnodeidaddress AP Node Address
6-byte Hardware (MAC) Address
AP Node Address
wlccp.apnodetype AP Node Type
Unsigned 16-bit integer
AP Node Type
wlccp.apregstatus Registration Status
Unsigned 8-bit integer
AP Registration Status
wlccp.auth_type Authentication Type
Unsigned 8-bit integer
Authentication Type
wlccp.base_message_type Base message type
Unsigned 8-bit integer
Base message type
wlccp.beacon_interval Beacon Interval
Unsigned 16-bit integer
Beacon Interval
wlccp.bssid BSS ID
6-byte Hardware (MAC) Address
Basic Service Set ID
wlccp.cca_busy CCA Busy
Unsigned 8-bit integer
CCA Busy
wlccp.channel Channel
Unsigned 8-bit integer
Channel
wlccp.cisco_acctg_msg Cisco Accounting Message
Byte array
Cisco Accounting Message
wlccp.client_mac Client MAC
6-byte Hardware (MAC) Address
Client MAC
wlccp.dest_node_id Destination node ID
6-byte Hardware (MAC) Address
Destination node ID
wlccp.dest_node_type Destination node type
Unsigned 16-bit integer
Destination node type
wlccp.destination_node_type Destination node type
Unsigned 16-bit integer
Node type of the hop destination
wlccp.dsss_dlyd_block_ack_flag Delayed Block Ack Flag
Unsigned 16-bit integer
Delayed Block Ack Flag
wlccp.dsss_imm_block_ack_flag Immediate Block Ack Flag
Unsigned 16-bit integer
Immediate Block Ack Flag
wlccp.dsss_ofdm_flag DSSS-OFDM Flag
Unsigned 16-bit integer
DSSS-OFDM Flag
wlccp.dstmac Dst MAC
6-byte Hardware (MAC) Address
Destination MAC address
wlccp.duration Duration
Unsigned 16-bit integer
Duration
wlccp.eap_msg EAP Message
Byte array
EAP Message
wlccp.eap_pkt_length EAP Packet Length
Unsigned 16-bit integer
EAPOL Type
wlccp.eapol_msg EAPOL Message
No value
EAPOL Message
wlccp.eapol_type EAPOL Type
Unsigned 8-bit integer
EAPOL Type
wlccp.eapol_version EAPOL Version
Unsigned 8-bit integer
EAPOL Version
wlccp.element_count Element Count
Unsigned 8-bit integer
Element Count
wlccp.flags Flags
Unsigned 16-bit integer
Flags
wlccp.framereport_elements Frame Report Elements
No value
Frame Report Elements
wlccp.hops Hops
Unsigned 8-bit integer
Number of WLCCP hops
wlccp.hopwise_routing_flag Hopwise-routing flag
Unsigned 16-bit integer
On to force intermediate access points to process the message also
wlccp.hostname Hostname
String
Hostname of device
wlccp.inbound_flag Inbound flag
Unsigned 16-bit integer
Message is inbound to the top of the topology tree
wlccp.interval Interval
Unsigned 16-bit integer
Interval
wlccp.ipv4_address IPv4 Address
IPv4 address
IPv4 address
wlccp.key_mgmt_type Key Management type
Unsigned 8-bit integer
Key Management type
wlccp.key_seq_count Key Sequence Count
Unsigned 32-bit integer
Key Sequence Count
wlccp.length Length
Unsigned 16-bit integer
Length of WLCCP payload (bytes)
wlccp.mfp_capability MFP Capability
Unsigned 16-bit integer
MFP Capability
wlccp.mfp_config MFP Config
Unsigned 16-bit integer
MFP Config
wlccp.mfp_flags MFP Flags
Unsigned 16-bit integer
MFP Flags
wlccp.mic_flag MIC flag
Unsigned 16-bit integer
On in a message that must be authenticated and has an authentication TLV
wlccp.mic_length MIC Length
Unsigned 16-bit integer
MIC Length
wlccp.mic_msg_seq_count MIC Message Sequence Count
Unsigned 64-bit integer
MIC Message Sequence Count
wlccp.mic_value MIC Value
Byte array
MIC Value
wlccp.mode Mode
Unsigned 8-bit integer
Mode
wlccp.msg_id Message ID
Unsigned 16-bit integer
Sequence number used to match request/reply pairs
wlccp.nm_capability NM Capability
Unsigned 8-bit integer
NM Capability
wlccp.nm_version NM Version
Unsigned 8-bit integer
NM Version
wlccp.nmconfig NM Config
Unsigned 8-bit integer
NM Config
wlccp.nonce_value Nonce Value
Byte array
Nonce Value
wlccp.numframes Number of frames
Unsigned 8-bit integer
Number of Frames
wlccp.originator Originator
6-byte Hardware (MAC) Address
Originating device's MAC address
wlccp.originator_node_type Originator node type
Unsigned 16-bit integer
Originating device's node type
wlccp.outbound_flag Outbound flag
Unsigned 16-bit integer
Message is outbound from the top of the topology tree
wlccp.parent_ap_mac Parent AP MAC
6-byte Hardware (MAC) Address
Parent AP MAC
wlccp.parenttsf Parent TSF
Unsigned 32-bit integer
Parent TSF
wlccp.path_init_reserved Reserved
Unsigned 8-bit integer
Reserved
wlccp.path_length Path Length
Unsigned 8-bit integer
Path Length
wlccp.period Period
Unsigned 8-bit integer
Interval between announcements (seconds)
wlccp.phy_type PHY Type
Unsigned 8-bit integer
PHY Type
wlccp.priority WDS priority
Unsigned 8-bit integer
WDS priority of this access point
wlccp.radius_username RADIUS Username
String
RADIUS Username
wlccp.refresh_request_id Refresh Request ID
Unsigned 32-bit integer
Refresh Request ID
wlccp.reg_lifetime Reg. LifeTime
Unsigned 8-bit integer
Reg. LifeTime
wlccp.relay_flag Relay flag
Unsigned 16-bit integer
Signifies that this header is immediately followed by a relay node field
wlccp.relay_node_id Relay node ID
6-byte Hardware (MAC) Address
Node which relayed this message
wlccp.relay_node_type Relay node type
Unsigned 16-bit integer
Type of node which relayed this message
wlccp.requ_node_type Requestor node type
Unsigned 16-bit integer
Requesting device's node type
wlccp.request_reply_flag Request Reply flag
Unsigned 8-bit integer
Set on to request a reply
wlccp.requestor Requestor
6-byte Hardware (MAC) Address
Requestor device's MAC address
wlccp.responder Responder
6-byte Hardware (MAC) Address
Responding device's MAC address
wlccp.responder_node_type Responder node type
Unsigned 16-bit integer
Responding device's node type
wlccp.response_request_flag Response request flag
Unsigned 16-bit integer
Set on to request a reply
wlccp.retry_flag Retry flag
Unsigned 16-bit integer
Set on for retransmissions
wlccp.rm_flags RM Flags
Unsigned 8-bit integer
RM Flags
wlccp.root_cm_flag Root context manager flag
Unsigned 16-bit integer
Set to on to send message to the root context manager of the topology tree
wlccp.rpi_denisty RPI Density
Byte array
RPI Density
wlccp.rss RSS
Signed 8-bit integer
Received Signal Strength
wlccp.sap SAP
Unsigned 8-bit integer
Service Access Point
wlccp.sap_id SAP ID
Unsigned 8-bit integer
Service Access Point ID
wlccp.sap_version SAP Version
Unsigned 8-bit integer
Service Access Point Version
wlccp.scan_mode Scan Mode
Unsigned 8-bit integer
Scan Mode
wlccp.scmattach_state SCM Attach State
Unsigned 8-bit integer
SCM Attach State
wlccp.scmstate_change SCM State Change
Unsigned 8-bit integer
SCM State Change
wlccp.scmstate_change_reason SCM State Change Reason
Unsigned 8-bit integer
SCM State Change Reason
wlccp.session_timeout Session Timeout
Unsigned 32-bit integer
Session Timeout
wlccp.source_node_id Source node ID
6-byte Hardware (MAC) Address
Source node ID
wlccp.source_node_type Source node type
Unsigned 16-bit integer
Source node type
wlccp.srcidx Source Index
Unsigned 8-bit integer
Source Index
wlccp.srcmac Src MAC
6-byte Hardware (MAC) Address
Source MAC address
wlccp.station_mac Station MAC
6-byte Hardware (MAC) Address
Station MAC
wlccp.station_type Station Type
Unsigned 8-bit integer
Station Type
wlccp.status Status
Unsigned 8-bit integer
Status
wlccp.subtype Subtype
Unsigned 8-bit integer
Message Subtype
wlccp.supp_node_id Supporting node ID
6-byte Hardware (MAC) Address
Supporting node ID
wlccp.supp_node_type Destination node type
Unsigned 16-bit integer
Destination node type
wlccp.targettsf Target TSF
Unsigned 64-bit integer
Target TSF
wlccp.time_elapsed Elapsed Time
Unsigned 16-bit integer
Elapsed Time
wlccp.timestamp Timestamp
Unsigned 64-bit integer
Registration Timestamp
wlccp.tlv WLCCP TLV
No value
WLCCP TLV
wlccp.tlv80211 802.11 TLV Value
Byte array
802.11 TLV Value
wlccp.tlv_container_flag TLV Container Flag
Unsigned 16-bit integer
Set on if the TLV is a container
wlccp.tlv_encrypted_flag TLV Encrypted Flag
Unsigned 16-bit integer
Set on if the TLV is encrypted
wlccp.tlv_flag TLV flag
Unsigned 16-bit integer
Set to indicate that optional TLVs follow the fixed fields
wlccp.tlv_flags TLV Flags
Unsigned 16-bit integer
TLV Flags, Group and Type
wlccp.tlv_length TLV Length
Unsigned 16-bit integer
TLV Length
wlccp.tlv_request_flag TLV Request Flag
Unsigned 16-bit integer
Set on if the TLV is a request
wlccp.tlv_reserved_bit Reserved bits
Unsigned 16-bit integer
Reserved
wlccp.tlv_unknown_value Unknown TLV Contents
Byte array
Unknown TLV Contents
wlccp.token Token
Unsigned 8-bit integer
Token
wlccp.token2 2 Byte Token
Unsigned 16-bit integer
2 Byte Token
wlccp.type Message Type
Unsigned 8-bit integer
Message Type
wlccp.version Version
Unsigned 8-bit integer
Protocol ID/Version
wlccp.wds_reason Reason Code
Unsigned 8-bit integer
Reason Code
wlccp.wids_msg_type WIDS Message Type
Unsigned 8-bit integer
WIDS Message Type
wlccp.wlccp_null_tlv NULL TLV
Byte array
NULL TLV
wlccp.wlccp_tlv_group TLV Group
Unsigned 16-bit integer
TLV Group ID
wlccp.wlccp_tlv_type TLV Type
Unsigned 16-bit integer
TLV Type ID
clearcase.procedure_v3 V3 Procedure
Unsigned 32-bit integer
V3 Procedure
ctdb.callid Call Id
Unsigned 32-bit integer
Call ID
ctdb.clientid ClientId
Unsigned 32-bit integer
ctdb.ctrl_flags CTRL Flags
Unsigned 32-bit integer
ctdb.ctrl_opcode CTRL Opcode
Unsigned 32-bit integer
ctdb.data Data
Byte array
ctdb.datalen Data Length
Unsigned 32-bit integer
ctdb.dbid DB Id
Unsigned 32-bit integer
Database ID
ctdb.dmaster Dmaster
Unsigned 32-bit integer
ctdb.dst Destination
Unsigned 32-bit integer
ctdb.error Error
Byte array
ctdb.errorlen Error Length
Unsigned 32-bit integer
ctdb.generation Generation
Unsigned 32-bit integer
ctdb.hopcount Hopcount
Unsigned 32-bit integer
ctdb.id Id
Unsigned 32-bit integer
Transaction ID
ctdb.immediate Immediate
Boolean
Force migration of DMASTER?
ctdb.key Key
Byte array
ctdb.keyhash KeyHash
Unsigned 32-bit integer
ctdb.keylen Key Length
Unsigned 32-bit integer
ctdb.len Length
Unsigned 32-bit integer
Size of CTDB PDU
ctdb.magic Magic
Unsigned 32-bit integer
ctdb.node_flags Node Flags
Unsigned 32-bit integer
ctdb.node_ip Node IP
IPv4 address
ctdb.num_nodes Num Nodes
Unsigned 32-bit integer
ctdb.opcode Opcode
Unsigned 32-bit integer
CTDB command opcode
ctdb.pid PID
Unsigned 32-bit integer
ctdb.process_exists Process Exists
Boolean
ctdb.recmaster Recovery Master
Unsigned 32-bit integer
ctdb.recmode Recovery Mode
Unsigned 32-bit integer
ctdb.request_in Request In
Frame number
ctdb.response_in Response In
Frame number
ctdb.rsn RSN
Unsigned 64-bit integer
ctdb.src Source
Unsigned 32-bit integer
ctdb.srvid SrvId
Unsigned 64-bit integer
ctdb.status Status
Unsigned 32-bit integer
ctdb.time Time since request
Time duration
ctdb.version Version
Unsigned 32-bit integer
ctdb.vnn VNN
Unsigned 32-bit integer
ctdb.xid xid
Unsigned 32-bit integer
cosine.err Error Code
Unsigned 8-bit integer
cosine.off Offset
Unsigned 8-bit integer
cosine.pri Priority
Unsigned 8-bit integer
cosine.pro Protocol
Unsigned 8-bit integer
cosine.rm Rate Marking
Unsigned 8-bit integer
cigi.3_2_los_ext_response Line of Sight Extended Response
String
Line of Sight Extended Response Packet
cigi.3_2_los_ext_response.alpha Alpha
Unsigned 8-bit integer
Indicates the alpha component of the surface at the point of intersection
cigi.3_2_los_ext_response.alt_zoff Altitude (m)/Z Offset(m)
Double-precision floating point
Indicates the geodetic altitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's Z axis
cigi.3_2_los_ext_response.blue Blue
Unsigned 8-bit integer
Indicates the blue color component of the surface at the point of intersection
cigi.3_2_los_ext_response.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity with which a LOS test vector or segment intersects
cigi.3_2_los_ext_response.entity_id_valid Entity ID Valid
Boolean
Indicates whether the LOS test vector or segment intersects with an entity
cigi.3_2_los_ext_response.green Green
Unsigned 8-bit integer
Indicates the green color component of the surface at the point of intersection
cigi.3_2_los_ext_response.host_frame_number_lsn Host Frame Number LSN
Unsigned 8-bit integer
Least significant nibble of the host frame number parameter of the last IG Control packet received before the HAT or HOT is calculated
cigi.3_2_los_ext_response.lat_xoff Latitude (degrees)/X Offset (m)
Double-precision floating point
Indicates the geodetic latitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's X axis
cigi.3_2_los_ext_response.lon_yoff Longitude (degrees)/Y Offset (m)
Double-precision floating point
Indicates the geodetic longitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's Y axis
cigi.3_2_los_ext_response.los_id LOS ID
Unsigned 16-bit integer
Identifies the LOS response
cigi.3_2_los_ext_response.material_code Material Code
Unsigned 32-bit integer
Indicates the material code of the surface intersected by the LOS test segment of vector
cigi.3_2_los_ext_response.normal_vector_azimuth Normal Vector Azimuth (degrees)
Indicates the azimuth of a unit vector normal to the surface intersected by the LOS test segment or vector
cigi.3_2_los_ext_response.normal_vector_elevation Normal Vector Elevation (degrees)
Indicates the elevation of a unit vector normal to the surface intersected by the LOS test segment or vector
cigi.3_2_los_ext_response.range Range (m)
Double-precision floating point
Indicates the distance along the LOS test segment or vector from the source point to the point of intersection with an object
cigi.3_2_los_ext_response.range_valid Range Valid
Boolean
Indicates whether the Range parameter is valid
cigi.3_2_los_ext_response.red Red
Unsigned 8-bit integer
Indicates the red color component of the surface at the point of intersection
cigi.3_2_los_ext_response.response_count Response Count
Unsigned 8-bit integer
Indicates the total number of Line of Sight Extended Response packets the IG will return for the corresponding request
cigi.3_2_los_ext_response.valid Valid
Boolean
Indicates whether this packet contains valid data
cigi.3_2_los_ext_response.visible Visible
Boolean
Indicates whether the destination point is visible from the source point
cigi.aerosol_concentration_response Aerosol Concentration Response
String
Aerosol Concentration Response Packet
cigi.aerosol_concentration_response.aerosol_concentration Aerosol Concentration (g/m^3)
Identifies the concentration of airborne particles
cigi.aerosol_concentration_response.layer_id Layer ID
Unsigned 8-bit integer
Identifies the weather layer whose aerosol concentration is being described
cigi.aerosol_concentration_response.request_id Request ID
Unsigned 8-bit integer
Identifies the environmental conditions request to which this response packet corresponds
cigi.animation_stop_notification Animation Stop Notification
String
Animation Stop Notification Packet
cigi.animation_stop_notification.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity ID of the animation that has stopped
cigi.art_part_control Articulated Parts Control
String
Articulated Parts Control Packet
cigi.art_part_control.entity_id Entity ID
Unsigned 16-bit integer
Identifies the entity to which this data packet will be applied
cigi.art_part_control.part_enable Articulated Part Enable
Boolean
Determines whether the articulated part submodel should be enabled or disabled within the scene graph
cigi.art_part_control.part_id Articulated Part ID
Unsigned 8-bit integer
Identifies which articulated part is controlled with this data packet
cigi.art_part_control.part_state Articulated Part State
Boolean
Indicates whether an articulated part is to be shown in the display
cigi.art_part_control.pitch Pitch (degrees)
Specifies the pitch of this part with respect to the submodel coordinate system
cigi.art_part_control.pitch_enable Pitch Enable
Boolean
Identifies whether the articulated part pitch enable in this data packet is manipulated from the host
cigi.art_part_control.roll Roll (degrees)
Specifies the roll of this part with respect to the submodel coordinate system
cigi.art_part_control.roll_enable Roll Enable
Boolean
Identifies whether the articulated part roll enable in this data packet is manipulated from the host
cigi.art_part_control.x_offset X Offset (m)
Identifies the distance along the X axis by which the articulated part should be moved
cigi.art_part_control.xoff X Offset (m)
Specifies the distance of the articulated part along its X axis
cigi.art_part_control.xoff_enable X Offset Enable
Boolean
Identifies whether the articulated part x offset in this data packet is manipulated from the host
cigi.art_part_control.y_offset Y Offset (m)
Identifies the distance along the Y axis by which the articulated part should be moved
cigi.art_part_control.yaw Yaw (degrees)
Specifies the yaw of this part with respect to the submodel coordinate system
cigi.art_part_control.yaw_enable Yaw Enable
Unsigned 8-bit integer
Identifies whether the articulated part yaw enable in this data packet is manipulated from the host
cigi.art_part_control.yoff Y Offset (m)
Specifies the distance of the articulated part along its Y axis
cigi.art_part_control.yoff_enable Y Offset Enable
Boolean
Identifies whether the articulated part y offset in this data packet is manipulated from the host
cigi.art_part_control.z_offset Z Offset (m)
Identifies the distance along the Z axis by which the articulated part should be moved
cigi.art_part_control.zoff Z Offset (m)
Specifies the distance of the articulated part along its Z axis
cigi.art_part_control.zoff_enable Z Offset Enable
Boolean
Identifies whether the articulated part z offset in this data packet is manipulated from the host
cigi.atmosphere_control Atmosphere Control
String
Atmosphere Control Packet
cigi.atmosphere_control.air_temp Global Air Temperature (degrees C)
Specifies the global air temperature of the environment
cigi.atmosphere_control.atmospheric_model_enable Atmospheric Model Enable
Boolean
Specifies whether the IG should use an atmospheric model to determine spectral radiances for sensor applications
cigi.atmosphere_control.barometric_pressure Global Barometric Pressure (mb or hPa)
Specifies the global atmospheric pressure
cigi.atmosphere_control.horiz_wind Global Horizontal Wind Speed (m/s)
Specifies the global wind speed parallel to the ellipsoid-tangential reference plane
cigi.atmosphere_control.humidity Global Humidity (%)
Unsigned 8-bit integer
Specifies the global humidity of the environment
cigi.atmosphere_control.vert_wind Global Vertical Wind Speed (m/s)
Specifies the global vertical wind speed
cigi.atmosphere_control.visibility_range Global Visibility Range (m)
Specifies the global visibility range through the atmosphere
cigi.atmosphere_control.wind_direction Global Wind Direction (degrees)
Specifies the global wind direction
cigi.byte_swap Byte Swap
Unsigned 16-bit integer
Used to determine whether the incoming data should be byte-swapped
cigi.celestial_sphere_control Celestial Sphere Control
String
Celestial Sphere Control Packet
cigi.celestial_sphere_control.date Date (MMDDYYYY)
Unsigned 32-bit integer
Specifies the current date within the simulation
cigi.celestial_sphere_control.date_time_valid Date/Time Valid
Boolean
Specifies whether the Hour, Minute, and Date parameters are valid
cigi.celestial_sphere_control.ephemeris_enable Ephemeris Model Enable
Boolean
Controls whether the time of day is static or continuous
cigi.celestial_sphere_control.hour Hour (h)
Unsigned 8-bit integer
Specifies the current hour of the day within the simulation
cigi.celestial_sphere_control.minute Minute (min)
Unsigned 8-bit integer
Specifies the current minute of the day within the simulation
cigi.celestial_sphere_control.moon_enable Moon Enable
Boolean
Specifies whether the moon is enabled in the sky model
cigi.celestial_sphere_control.star_enable Star Field Enable
Boolean
Specifies whether the start field is enabled in the sky model
cigi.celestial_sphere_control.star_intensity Star Field Intensity (%)
Specifies the intensity of the star field within the sky model
cigi.celestial_sphere_control.sun_enable Sun Enable
Boolean
Specifies whether the sun is enabled in the sky model
cigi.coll_det_seg_def Collision Detection Segment Definition
String
Collision Detection Segment Definition Packet
cigi.coll_det_seg_def.collision_mask Collision Mask
Byte array
Indicates which environment features will be included in or excluded from consideration for collision detection testing
cigi.coll_det_seg_def.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity to which this collision detection definition is assigned
cigi.coll_det_seg_def.material_mask Material Mask
Unsigned 32-bit integer
Specifies the environmental and cultural features to be included in or excluded from consideration for collision testing
cigi.coll_det_seg_def.segment_enable Segment Enable
Boolean
Indicates whether the defined segment is enabled for collision testing
cigi.coll_det_seg_def.segment_id Segment ID
Unsigned 8-bit integer
Indicates which segment is being uniquely defined for the given entity
cigi.coll_det_seg_def.x1 X1 (m)
Specifies the X offset of one endpoint of the collision segment
cigi.coll_det_seg_def.x2 X2 (m)
Specifies the X offset of one endpoint of the collision segment
cigi.coll_det_seg_def.x_end Segment X End (m)
Specifies the ending point of the collision segment in the X-axis with respect to the entity's reference point
cigi.coll_det_seg_def.x_start Segment X Start (m)
Specifies the starting point of the collision segment in the X-axis with respect to the entity's reference point
cigi.coll_det_seg_def.y1 Y1 (m)
Specifies the Y offset of one endpoint of the collision segment
cigi.coll_det_seg_def.y2 Y2 (m)
Specifies the Y offset of one endpoint of the collision segment
cigi.coll_det_seg_def.y_end Segment Y End (m)
Specifies the ending point of the collision segment in the Y-axis with respect to the entity's reference point
cigi.coll_det_seg_def.y_start Segment Y Start (m)
Specifies the starting point of the collision segment in the Y-axis with respect to the entity's reference point
cigi.coll_det_seg_def.z1 Z1 (m)
Specifies the Z offset of one endpoint of the collision segment
cigi.coll_det_seg_def.z2 Z2 (m)
Specifies the Z offset of one endpoint of the collision segment
cigi.coll_det_seg_def.z_end Segment Z End (m)
Specifies the ending point of the collision segment in the Z-axis with respect to the entity's reference point
cigi.coll_det_seg_def.z_start Segment Z Start (m)
Specifies the starting point of the collision segment in the Z-axis with respect to the entity's reference point
cigi.coll_det_seg_notification Collision Detection Segment Notification
String
Collision Detection Segment Notification Packet
cigi.coll_det_seg_notification.contacted_entity_id Contacted Entity ID
Unsigned 16-bit integer
Indicates the entity with which the collision occurred
cigi.coll_det_seg_notification.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity to which the collision detection segment belongs
cigi.coll_det_seg_notification.intersection_distance Intersection Distance (m)
Indicates the distance along the collision test vector from the source endpoint to the point of intersection
cigi.coll_det_seg_notification.material_code Material Code
Unsigned 32-bit integer
Indicates the material code of the surface at the point of collision
cigi.coll_det_seg_notification.segment_id Segment ID
Unsigned 8-bit integer
Indicates the ID of the collision detection segment along which the collision occurred
cigi.coll_det_seg_notification.type Collision Type
Boolean
Indicates whether the collision occurred with another entity or with a non-entity object
cigi.coll_det_seg_response Collision Detection Segment Response
String
Collision Detection Segment Response Packet
cigi.coll_det_seg_response.collision_x Collision Point X (m)
Specifies the X component of a vector, which lies along the defined segment where the segment intersected a surface
cigi.coll_det_seg_response.collision_y Collision Point Y (m)
Specifies the Y component of a vector, which lies along the defined segment where the segment intersected a surface
cigi.coll_det_seg_response.collision_z Collision Point Z (m)
Specifies the Z component of a vector, which lies along the defined segment where the segment intersected a surface
cigi.coll_det_seg_response.contact Entity/Non-Entity Contact
Boolean
Indicates whether another entity was contacted during this collision
cigi.coll_det_seg_response.contacted_entity Contacted Entity ID
Unsigned 16-bit integer
Indicates which entity was contacted during the collision
cigi.coll_det_seg_response.entity_id Entity ID
Unsigned 16-bit integer
Indicates which entity experienced a collision
cigi.coll_det_seg_response.material_type Material Type
Signed 32-bit integer
Specifies the material type of the surface that this collision test segment contacted
cigi.coll_det_seg_response.segment_id Segment ID
Unsigned 8-bit integer
Identifies the collision segment
cigi.coll_det_vol_def Collision Detection Volume Definition
String
Collision Detection Volume Definition Packet
cigi.coll_det_vol_def.depth Depth (m)
Specifies the depth of the volume
cigi.coll_det_vol_def.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity to which this collision detection definition is assigned
cigi.coll_det_vol_def.height Height (m)
Specifies the height of the volume
cigi.coll_det_vol_def.pitch Pitch (degrees)
Specifies the pitch of the cuboid with respect to the entity's coordinate system
cigi.coll_det_vol_def.radius_height Radius (m)/Height (m)
Specifies the radius of the sphere or specifies the length of the cuboid along its Z axis
cigi.coll_det_vol_def.roll Roll (degrees)
Specifies the roll of the cuboid with respect to the entity's coordinate system
cigi.coll_det_vol_def.volume_enable Volume Enable
Boolean
Indicates whether the defined volume is enabled for collision testing
cigi.coll_det_vol_def.volume_id Volume ID
Unsigned 8-bit integer
Indicates which volume is being uniquely defined for a given entity
cigi.coll_det_vol_def.volume_type Volume Type
Boolean
Specified whether the volume is spherical or cuboid
cigi.coll_det_vol_def.width Width (m)
Specifies the width of the volume
cigi.coll_det_vol_def.x X (m)
Specifies the X offset of the center of the volume
cigi.coll_det_vol_def.x_offset Centroid X Offset (m)
Specifies the offset of the volume's centroid along the X axis with respect to the entity's reference point
cigi.coll_det_vol_def.y Y (m)
Specifies the Y offset of the center of the volume
cigi.coll_det_vol_def.y_offset Centroid Y Offset (m)
Specifies the offset of the volume's centroid along the Y axis with respect to the entity's reference point
cigi.coll_det_vol_def.yaw Yaw (degrees)
Specifies the yaw of the cuboid with respect to the entity's coordinate system
cigi.coll_det_vol_def.z Z (m)
Specifies the Z offset of the center of the volume
cigi.coll_det_vol_def.z_offset Centroid Z Offset (m)
Specifies the offset of the volume's centroid along the Z axis with respect to the entity's reference point
cigi.coll_det_vol_notification Collision Detection Volume Notification
String
Collision Detection Volume Notification Packet
cigi.coll_det_vol_notification.contacted_entity_id Contacted Entity ID
Unsigned 16-bit integer
Indicates the entity with which the collision occurred
cigi.coll_det_vol_notification.contacted_volume_id Contacted Volume ID
Unsigned 8-bit integer
Indicates the ID of the collision detection volume with which the collision occurred
cigi.coll_det_vol_notification.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity to which the collision detection volume belongs
cigi.coll_det_vol_notification.type Collision Type
Boolean
Indicates whether the collision occurred with another entity or with a non-entity object
cigi.coll_det_vol_notification.volume_id Volume ID
Unsigned 8-bit integer
Indicates the ID of the collision detection volume within which the collision occurred
cigi.coll_det_vol_response Collision Detection Volume Response
String
Collision Detection Volume Response Packet
cigi.coll_det_vol_response.contact Entity/Non-Entity Contact
Boolean
Indicates whether another entity was contacted during this collision
cigi.coll_det_vol_response.contact_entity Contacted Entity ID
Unsigned 16-bit integer
Indicates which entity was contacted with during the collision
cigi.coll_det_vol_response.entity_id Entity ID
Unsigned 16-bit integer
Indicates which entity experienced a collision
cigi.coll_det_vol_response.volume_id Volume ID
Unsigned 8-bit integer
Identifies the collision volume corresponding to the associated Collision Detection Volume Request
cigi.component_control Component Control
String
Component Control Packet
cigi.component_control.component_class Component Class
Unsigned 8-bit integer
Identifies the class the component being controlled is in
cigi.component_control.component_id Component ID
Unsigned 16-bit integer
Identifies the component of a component class and instance ID this packet will be applied to
cigi.component_control.component_state Component State
Unsigned 16-bit integer
Identifies the commanded state of a component
cigi.component_control.component_val1 Component Value 1
Identifies a continuous value to be applied to a component
cigi.component_control.component_val2 Component Value 2
Identifies a continuous value to be applied to a component
cigi.component_control.data_1 Component Data 1
Byte array
User-defined component data
cigi.component_control.data_2 Component Data 2
Byte array
User-defined component data
cigi.component_control.data_3 Component Data 3
Byte array
User-defined component data
cigi.component_control.data_4 Component Data 4
Byte array
User-defined component data
cigi.component_control.data_5 Component Data 5
Byte array
User-defined component data
cigi.component_control.data_6 Component Data 6
Byte array
User-defined component data
cigi.component_control.instance_id Instance ID
Unsigned 16-bit integer
Identifies the instance of the a class the component being controlled belongs to
cigi.conformal_clamped_entity_control Conformal Clamped Entity Control
String
Conformal Clamped Entity Control Packet
cigi.conformal_clamped_entity_control.entity_id Entity ID
Unsigned 16-bit integer
Specifies the entity to which this packet is applied
cigi.conformal_clamped_entity_control.lat Latitude (degrees)
Double-precision floating point
Specifies the entity's geodetic latitude
cigi.conformal_clamped_entity_control.lon Longitude (degrees)
Double-precision floating point
Specifies the entity's geodetic longitude
cigi.conformal_clamped_entity_control.yaw Yaw (degrees)
Specifies the instantaneous heading of the entity
cigi.destport Destination Port
Unsigned 16-bit integer
Destination Port
cigi.earth_ref_model_def Earth Reference Model Definition
String
Earth Reference Model Definition Packet
cigi.earth_ref_model_def.equatorial_radius Equatorial Radius (m)
Double-precision floating point
Specifies the semi-major axis of the ellipsoid
cigi.earth_ref_model_def.erm_enable Custom ERM Enable
Boolean
Specifies whether the IG should use the Earth Reference Model defined by this packet
cigi.earth_ref_model_def.flattening Flattening (m)
Double-precision floating point
Specifies the flattening of the ellipsoid
cigi.entity_control Entity Control
String
Entity Control Packet
cigi.entity_control.alpha Alpha
Unsigned 8-bit integer
Specifies the explicit alpha to be applied to the entity's geometry
cigi.entity_control.alt Altitude (m)
Double-precision floating point
Identifies the altitude position of the reference point of the entity in meters
cigi.entity_control.alt_zoff Altitude (m)/Z Offset (m)
Double-precision floating point
Specifies the entity's altitude or the distance from the parent's reference point along its parent's Z axis
cigi.entity_control.animation_dir Animation Direction
Boolean
Specifies the direction in which an animation plays
cigi.entity_control.animation_loop_mode Animation Loop Mode
Boolean
Specifies whether an animation should be a one-shot
cigi.entity_control.animation_state Animation State
Unsigned 8-bit integer
Specifies the state of an animation
cigi.entity_control.attach_state Attach State
Boolean
Identifies whether the entity should be attach as a child to a parent
cigi.entity_control.coll_det_request Collision Detection Request
Boolean
Determines whether any collision detection segments and volumes associated with this entity are used as the source in collision testing
cigi.entity_control.collision_detect Collision Detection Request
Boolean
Identifies if collision detection is enabled for the entity
cigi.entity_control.effect_state Effect Animation State
Unsigned 8-bit integer
Identifies the animation state of a special effect
cigi.entity_control.entity_id Entity ID
Unsigned 16-bit integer
Identifies the entity motion system
cigi.entity_control.entity_state Entity State
Unsigned 8-bit integer
Identifies the entity's geometry state
cigi.entity_control.entity_type Entity Type
Unsigned 16-bit integer
Specifies the type for the entity
cigi.entity_control.ground_ocean_clamp Ground/Ocean Clamp
Unsigned 8-bit integer
Specifies whether the entity should be clamped to the ground or water surface
cigi.entity_control.inherit_alpha Inherit Alpha
Boolean
Specifies whether the entity's alpha is combined with the apparent alpha of its parent
cigi.entity_control.internal_temp Internal Temperature (degrees C)
Specifies the internal temperature of the entity in degrees Celsius
cigi.entity_control.lat Latitude (degrees)
Double-precision floating point
Identifies the latitude position of the reference point of the entity in degrees
cigi.entity_control.lat_xoff Latitude (degrees)/X Offset (m)
Double-precision floating point
Specifies the entity's geodetic latitude or the distance from the parent's reference point along its parent's X axis
cigi.entity_control.lon Longitude (degrees)
Double-precision floating point
Identifies the longitude position of the reference point of the entity in degrees
cigi.entity_control.lon_yoff Longitude (°)/Y Offset (m)
Double-precision floating point
Specifies the entity's geodetic longitude or the distance from the parent's reference point along its parent's Y axis
cigi.entity_control.opacity Percent Opacity
Specifies the degree of opacity of the entity
cigi.entity_control.parent_id Parent Entity ID
Unsigned 16-bit integer
Identifies the parent to which the entity should be attached
cigi.entity_control.pitch Pitch (degrees)
Specifies the pitch angle of the entity
cigi.entity_control.roll Roll (degrees)
Identifies the roll angle of the entity in degrees
cigi.entity_control.type Entity Type
Unsigned 16-bit integer
Identifies the type of the entity
cigi.entity_control.yaw Yaw (degrees)
Specifies the instantaneous heading of the entity
cigi.env_cond_request Environmental Conditions Request
String
Environmental Conditions Request Packet
cigi.env_cond_request.alt Altitude (m)
Double-precision floating point
Specifies the geodetic altitude at which the environmental state is requested
cigi.env_cond_request.id Request ID
Unsigned 8-bit integer
Identifies the environmental conditions request
cigi.env_cond_request.lat Latitude (degrees)
Double-precision floating point
Specifies the geodetic latitude at which the environmental state is requested
cigi.env_cond_request.lon Longitude (degrees)
Double-precision floating point
Specifies the geodetic longitude at which the environmental state is requested
cigi.env_cond_request.type Request Type
Unsigned 8-bit integer
Specifies the desired response type for the request
cigi.env_control Environment Control
String
Environment Control Packet
cigi.env_control.aerosol Aerosol (gm/m^3)
Controls the liquid water content for the defined atmosphere
cigi.env_control.air_temp Air Temperature (degrees C)
Identifies the global temperature of the environment
cigi.env_control.date Date (MMDDYYYY)
Signed 32-bit integer
Specifies the desired date for use by the ephemeris program within the image generator
cigi.env_control.ephemeris_enable Ephemeris Enable
Boolean
Identifies whether a continuous time of day or static time of day is used
cigi.env_control.global_visibility Global Visibility (m)
Identifies the global visibility
cigi.env_control.hour Hour (h)
Unsigned 8-bit integer
Identifies the hour of the day for the ephemeris program within the image generator
cigi.env_control.humidity Humidity (%)
Unsigned 8-bit integer
Specifies the global humidity of the environment
cigi.env_control.minute Minute (min)
Unsigned 8-bit integer
Identifies the minute of the hour for the ephemeris program within the image generator
cigi.env_control.modtran_enable MODTRAN
Boolean
Identifies whether atmospherics will be included in the calculations
cigi.env_control.pressure Barometric Pressure (mb)
Controls the atmospheric pressure input into MODTRAN
cigi.env_control.wind_direction Wind Direction (degrees)
Identifies the global wind direction
cigi.env_control.wind_speed Wind Speed (m/s)
Identifies the global wind speed
cigi.env_region_control Environmental Region Control
String
Environmental Region Control Packet
cigi.env_region_control.corner_radius Corner Radius (m)
Specifies the radius of the corner of the rounded rectangle
cigi.env_region_control.lat Latitude (degrees)
Double-precision floating point
Specifies the geodetic latitude of the center of the rounded rectangle
cigi.env_region_control.lon Longitude (degrees)
Double-precision floating point
Specifies the geodetic longitude of the center of the rounded rectangle
cigi.env_region_control.merge_aerosol Merge Aerosol Concentrations
Boolean
Specifies whether the concentrations of aerosols found within this region should be merged with those of other regions within areas of overlap
cigi.env_region_control.merge_maritime Merge Maritime Surface Conditions
Boolean
Specifies whether the maritime surface conditions found within this region should be merged with those of other regions within areas of overlap
cigi.env_region_control.merge_terrestrial Merge Terrestrial Surface Conditions
Boolean
Specifies whether the terrestrial surface conditions found within this region should be merged with those of other regions within areas of overlap
cigi.env_region_control.merge_weather Merge Weather Properties
Boolean
Specifies whether atmospheric conditions within this region should be merged with those of other regions within areas of overlap
cigi.env_region_control.region_id Region ID
Unsigned 16-bit integer
Specifies the environmental region to which the data in this packet will be applied
cigi.env_region_control.region_state Region State
Unsigned 8-bit integer
Specifies whether the region should be active or destroyed
cigi.env_region_control.rotation Rotation (degrees)
Specifies the yaw angle of the rounded rectangle
cigi.env_region_control.size_x Size X (m)
Specifies the length of the environmental region along its X axis at the geoid surface
cigi.env_region_control.size_y Size Y (m)
Specifies the length of the environmental region along its Y axis at the geoid surface
cigi.env_region_control.transition_perimeter Transition Perimeter (m)
Specifies the width of the transition perimeter around the environmental region
cigi.event_notification Event Notification
String
Event Notification Packet
cigi.event_notification.data_1 Event Data 1
Byte array
Used for user-defined event data
cigi.event_notification.data_2 Event Data 2
Byte array
Used for user-defined event data
cigi.event_notification.data_3 Event Data 3
Byte array
Used for user-defined event data
cigi.event_notification.event_id Event ID
Unsigned 16-bit integer
Indicates which event has occurred
cigi.frame_size Frame Size (bytes)
Unsigned 8-bit integer
Number of bytes sent with all cigi packets in this frame
cigi.hat_hot_ext_response HAT/HOT Extended Response
String
HAT/HOT Extended Response Packet
cigi.hat_hot_ext_response.hat HAT
Double-precision floating point
Indicates the height of the test point above the terrain
cigi.hat_hot_ext_response.hat_hot_id HAT/HOT ID
Unsigned 16-bit integer
Identifies the HAT/HOT response
cigi.hat_hot_ext_response.host_frame_number_lsn Host Frame Number LSN
Unsigned 8-bit integer
Least significant nibble of the host frame number parameter of the last IG Control packet received before the HAT or HOT is calculated
cigi.hat_hot_ext_response.hot HOT
Double-precision floating point
Indicates the height of terrain above or below the test point
cigi.hat_hot_ext_response.material_code Material Code
Unsigned 32-bit integer
Indicates the material code of the terrain surface at the point of intersection with the HAT/HOT test vector
cigi.hat_hot_ext_response.normal_vector_azimuth Normal Vector Azimuth (degrees)
Indicates the azimuth of the normal unit vector of the surface intersected by the HAT/HOT test vector
cigi.hat_hot_ext_response.normal_vector_elevation Normal Vector Elevation (degrees)
Indicates the elevation of the normal unit vector of the surface intersected by the HAT/HOT test vector
cigi.hat_hot_ext_response.valid Valid
Boolean
Indicates whether the remaining parameters in this packet contain valid numbers
cigi.hat_hot_request HAT/HOT Request
String
HAT/HOT Request Packet
cigi.hat_hot_request.alt_zoff Altitude (m)/Z Offset (m)
Double-precision floating point
Specifies the altitude from which the HAT/HOT request is being made or specifies the Z offset of the point from which the HAT/HOT request is being made
cigi.hat_hot_request.coordinate_system Coordinate System
Boolean
Specifies the coordinate system within which the test point is defined
cigi.hat_hot_request.entity_id Entity ID
Unsigned 16-bit integer
Specifies the entity relative to which the test point is defined
cigi.hat_hot_request.hat_hot_id HAT/HOT ID
Unsigned 16-bit integer
Identifies the HAT/HOT request
cigi.hat_hot_request.lat_xoff Latitude (degrees)/X Offset (m)
Double-precision floating point
Specifies the latitude from which the HAT/HOT request is being made or specifies the X offset of the point from which the HAT/HOT request is being made
cigi.hat_hot_request.lon_yoff Longitude (degrees)/Y Offset (m)
Double-precision floating point
Specifies the longitude from which the HAT/HOT request is being made or specifies the Y offset of the point from which the HAT/HOT request is being made
cigi.hat_hot_request.type Request Type
Unsigned 8-bit integer
Determines the type of response packet the IG should return for this packet
cigi.hat_hot_request.update_period Update Period
Unsigned 8-bit integer
Specifies interval between successive responses to this request. A zero indicates one responses a value n > 0 the IG should respond every nth frame
cigi.hat_hot_response HAT/HOT Response
String
HAT/HOT Response Packet
cigi.hat_hot_response.hat_hot_id HAT/HOT ID
Unsigned 16-bit integer
Identifies the HAT or HOT response
cigi.hat_hot_response.height Height
Double-precision floating point
Contains the requested height
cigi.hat_hot_response.host_frame_number_lsn Host Frame Number LSN
Unsigned 8-bit integer
Least significant nibble of the host frame number parameter of the last IG Control packet received before the HAT or HOT is calculated
cigi.hat_hot_response.type Response Type
Boolean
Indicates whether the Height parameter represent Height Above Terrain or Height Of Terrain
cigi.hat_hot_response.valid Valid
Boolean
Indicates whether the Height parameter contains a valid number
cigi.hat_request Height Above Terrain Request
String
Height Above Terrain Request Packet
cigi.hat_request.alt Altitude (m)
Double-precision floating point
Specifies the altitude from which the HAT request is being made
cigi.hat_request.hat_id HAT ID
Unsigned 16-bit integer
Identifies the HAT request
cigi.hat_request.lat Latitude (degrees)
Double-precision floating point
Specifies the latitudinal position from which the HAT request is being made
cigi.hat_request.lon Longitude (degrees)
Double-precision floating point
Specifies the longitudinal position from which the HAT request is being made
cigi.hat_response Height Above Terrain Response
String
Height Above Terrain Response Packet
cigi.hat_response.alt Altitude (m)
Double-precision floating point
Represents the altitude above or below the terrain for the position requested
cigi.hat_response.hat_id HAT ID
Unsigned 16-bit integer
Identifies the HAT response
cigi.hat_response.material_type Material Type
Signed 32-bit integer
Specifies the material type of the object intersected by the HAT test vector
cigi.hat_response.valid Valid
Boolean
Indicates whether the response is valid or invalid
cigi.hot_request Height of Terrain Request
String
Height of Terrain Request Packet
cigi.hot_request.hot_id HOT ID
Unsigned 16-bit integer
Identifies the HOT request
cigi.hot_request.lat Latitude (degrees)
Double-precision floating point
Specifies the latitudinal position from which the HOT request is made
cigi.hot_request.lon Longitude (degrees)
Double-precision floating point
Specifies the longitudinal position from which the HOT request is made
cigi.hot_response Height of Terrain Response
String
Height of Terrain Response Packet
cigi.hot_response.alt Altitude (m)
Double-precision floating point
Represents the altitude of the terrain for the position requested in the HOT request data packet
cigi.hot_response.hot_id HOT ID
Unsigned 16-bit integer
Identifies the HOT response corresponding to the associated HOT request
cigi.hot_response.material_type Material Type
Signed 32-bit integer
Specifies the material type of the object intersected by the HOT test segment
cigi.hot_response.valid Valid
Boolean
Indicates whether the response is valid or invalid
cigi.ig_control IG Control
String
IG Control Packet
cigi.ig_control.boresight Tracking Device Boresight
Boolean
Used by the host to enable boresight mode
cigi.ig_control.db_number Database Number
Signed 8-bit integer
Identifies the number associated with the database requiring loading
cigi.ig_control.frame_ctr Frame Counter
Unsigned 32-bit integer
Identifies a particular frame
cigi.ig_control.host_frame_number Host Frame Number
Unsigned 32-bit integer
Uniquely identifies a data frame on the host
cigi.ig_control.ig_mode IG Mode Change Request
Unsigned 8-bit integer
Commands the IG to enter its various modes
cigi.ig_control.last_ig_frame_number IG Frame Number
Unsigned 32-bit integer
Contains the value of the IG Frame Number parameter in the last Start of Frame packet received from the IG
cigi.ig_control.time_tag Timing Value (microseconds)
Identifies synchronous operation
cigi.ig_control.timestamp Timestamp (microseconds)
Unsigned 32-bit integer
Indicates the number of 10 microsecond "ticks" since some initial reference time
cigi.ig_control.timestamp_valid Timestamp Valid
Boolean
Indicates whether the timestamp contains a valid value
cigi.ig_control.tracking_enable Tracking Device Enable
Boolean
Identifies the state of an external tracking device
cigi.image_generator_message Image Generator Message
String
Image Generator Message Packet
cigi.image_generator_message.message Message
String
Image generator message
cigi.image_generator_message.message_id Message ID
Unsigned 16-bit integer
Uniquely identifies an instance of an Image Generator Response Message
cigi.los_ext_response Line of Sight Extended Response
String
Line of Sight Extended Response Packet
cigi.los_ext_response.alpha Alpha
Unsigned 8-bit integer
Indicates the alpha component of the surface at the point of intersection
cigi.los_ext_response.alt_zoff Altitude (m)/Z Offset(m)
Double-precision floating point
Indicates the geodetic altitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's Z axis
cigi.los_ext_response.blue Blue
Unsigned 8-bit integer
Indicates the blue color component of the surface at the point of intersection
cigi.los_ext_response.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity with which a LOS test vector or segment intersects
cigi.los_ext_response.entity_id_valid Entity ID Valid
Boolean
Indicates whether the LOS test vector or segment intersects with an entity
cigi.los_ext_response.green Green
Unsigned 8-bit integer
Indicates the green color component of the surface at the point of intersection
cigi.los_ext_response.intersection_coord Intersection Point Coordinate System
Boolean
Indicates the coordinate system relative to which the intersection point is specified
cigi.los_ext_response.lat_xoff Latitude (degrees)/X Offset (m)
Double-precision floating point
Indicates the geodetic latitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's X axis
cigi.los_ext_response.lon_yoff Longitude (degrees)/Y Offset (m)
Double-precision floating point
Indicates the geodetic longitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's Y axis
cigi.los_ext_response.los_id LOS ID
Unsigned 16-bit integer
Identifies the LOS response
cigi.los_ext_response.material_code Material Code
Unsigned 32-bit integer
Indicates the material code of the surface intersected by the LOS test segment of vector
cigi.los_ext_response.normal_vector_azimuth Normal Vector Azimuth (degrees)
Indicates the azimuth of a unit vector normal to the surface intersected by the LOS test segment or vector
cigi.los_ext_response.normal_vector_elevation Normal Vector Elevation (degrees)
Indicates the elevation of a unit vector normal to the surface intersected by the LOS test segment or vector
cigi.los_ext_response.range Range (m)
Double-precision floating point
Indicates the distance along the LOS test segment or vector from the source point to the point of intersection with an object
cigi.los_ext_response.range_valid Range Valid
Boolean
Indicates whether the Range parameter is valid
cigi.los_ext_response.red Red
Unsigned 8-bit integer
Indicates the red color component of the surface at the point of intersection
cigi.los_ext_response.response_count Response Count
Unsigned 8-bit integer
Indicates the total number of Line of Sight Extended Response packets the IG will return for the corresponding request
cigi.los_ext_response.valid Valid
Boolean
Indicates whether this packet contains valid data
cigi.los_ext_response.visible Visible
Boolean
Indicates whether the destination point is visible from the source point
cigi.los_occult_request Line of Sight Occult Request
String
Line of Sight Occult Request Packet
cigi.los_occult_request.dest_alt Destination Altitude (m)
Double-precision floating point
Specifies the altitude of the destination point for the LOS request segment
cigi.los_occult_request.dest_lat Destination Latitude (degrees)
Double-precision floating point
Specifies the latitudinal position for the destination point for the LOS request segment
cigi.los_occult_request.dest_lon Destination Longitude (degrees)
Double-precision floating point
Specifies the longitudinal position of the destination point for the LOS request segment
cigi.los_occult_request.los_id LOS ID
Unsigned 16-bit integer
Identifies the LOS request
cigi.los_occult_request.source_alt Source Altitude (m)
Double-precision floating point
Specifies the altitude of the source point for the LOS request segment
cigi.los_occult_request.source_lat Source Latitude (degrees)
Double-precision floating point
Specifies the latitudinal position of the source point for the LOS request segment
cigi.los_occult_request.source_lon Source Longitude (degrees)
Double-precision floating point
Specifies the longitudinal position of the source point for the LOS request segment
cigi.los_range_request Line of Sight Range Request
String
Line of Sight Range Request Packet
cigi.los_range_request.azimuth Azimuth (degrees)
Specifies the azimuth of the LOS vector
cigi.los_range_request.elevation Elevation (degrees)
Specifies the elevation for the LOS vector
cigi.los_range_request.los_id LOS ID
Unsigned 16-bit integer
Identifies the LOS request
cigi.los_range_request.max_range Maximum Range (m)
Specifies the maximum extent from the source position specified in this data packet to a point along the LOS vector where intersection testing will end
cigi.los_range_request.min_range Minimum Range (m)
Specifies the distance from the source position specified in this data packet to a point along the LOS vector where intersection testing will begin
cigi.los_range_request.source_alt Source Altitude (m)
Double-precision floating point
Specifies the altitude of the source point of the LOS request vector
cigi.los_range_request.source_lat Source Latitude (degrees)
Double-precision floating point
Specifies the latitudinal position of the source point of the LOS request vector
cigi.los_range_request.source_lon Source Longitude (degrees)
Double-precision floating point
Specifies the longitudinal position of the source point of the LOS request vector
cigi.los_response Line of Sight Response
String
Line of Sight Response Packet
cigi.los_response.alt Intersection Altitude (m)
Double-precision floating point
Specifies the altitude of the point of intersection of the LOS request vector with an object
cigi.los_response.count Response Count
Unsigned 8-bit integer
Indicates the total number of Line of Sight Response packets the IG will return for the corresponding request
cigi.los_response.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity with which an LOS test vector or segment intersects
cigi.los_response.entity_id_valid Entity ID Valid
Boolean
Indicates whether the LOS test vector or segment intersects with an entity or a non-entity
cigi.los_response.host_frame_number_lsn Host Frame Number LSN
Unsigned 8-bit integer
Least significant nibble of the host frame number parameter of the last IG Control packet received before the HAT or HOT is calculated
cigi.los_response.lat Intersection Latitude (degrees)
Double-precision floating point
Specifies the latitudinal position of the intersection point of the LOS request vector with an object
cigi.los_response.lon Intersection Longitude (degrees)
Double-precision floating point
Specifies the longitudinal position of the intersection point of the LOS request vector with an object
cigi.los_response.los_id LOS ID
Unsigned 16-bit integer
Identifies the LOS response corresponding tot he associated LOS request
cigi.los_response.material_type Material Type
Signed 32-bit integer
Specifies the material type of the object intersected by the LOS test segment
cigi.los_response.occult_response Occult Response
Boolean
Used to respond to the LOS occult request data packet
cigi.los_response.range Range (m)
Used to respond to the Line of Sight Range Request data packet
cigi.los_response.valid Valid
Boolean
Indicates whether the response is valid or invalid
cigi.los_response.visible Visible
Boolean
Indicates whether the destination point is visible from the source point
cigi.los_segment_request Line of Sight Segment Request
String
Line of Sight Segment Request Packet
cigi.los_segment_request.alpha_threshold Alpha Threshold
Unsigned 8-bit integer
Specifies the minimum alpha value a surface may have for an LOS response to be generated
cigi.los_segment_request.destination_alt_zoff Destination Altitude (m)/ Destination Z Offset (m)
Double-precision floating point
Specifies the altitude of the destination endpoint of the LOS test segment or specifies the Z offset of the destination endpoint of the LOS test segment
cigi.los_segment_request.destination_coord Destination Point Coordinate System
Boolean
Indicates the coordinate system relative to which the test segment destination endpoint is specified
cigi.los_segment_request.destination_entity_id Destination Entity ID
Unsigned 16-bit integer
Indicates the entity with respect to which the Destination X Offset, Y Offset, and Destination Z Offset parameters are specified
cigi.los_segment_request.destination_entity_id_valid Destination Entity ID Valid
Boolean
Destination Entity ID is valid
cigi.los_segment_request.destination_lat_xoff Destination Latitude (degrees)/ Destination X Offset (m)
Double-precision floating point
Specifies the latitude of the destination endpoint of the LOS test segment or specifies the X offset of the destination endpoint of the LOS test segment
cigi.los_segment_request.destination_lon_yoff Destination Longitude (degrees)/Destination Y Offset (m)
Double-precision floating point
Specifies the longitude of the destination endpoint of the LOS test segment or specifies the Y offset of the destination endpoint of the LOS test segment
cigi.los_segment_request.entity_id Entity ID
Unsigned 16-bit integer
Specifies the entity relative to which the test segment endpoints are defined
cigi.los_segment_request.los_id LOS ID
Unsigned 16-bit integer
Identifies the LOS request
cigi.los_segment_request.material_mask Material Mask
Unsigned 32-bit integer
Specifies the environmental and cultural features to be included in or excluded from consideration for the LOS segment testing
cigi.los_segment_request.response_coord Response Coordinate System
Boolean
Specifies the coordinate system to be used in the response
cigi.los_segment_request.source_alt_zoff Source Altitude (m)/Source Z Offset (m)
Double-precision floating point
Specifies the altitude of the source endpoint of the LOS test segment or specifies the Z offset of the source endpoint of the LOS test segment
cigi.los_segment_request.source_coord Source Point Coordinate System
Boolean
Indicates the coordinate system relative to which the test segment source endpoint is specified
cigi.los_segment_request.source_lat_xoff Source Latitude (degrees)/Source X Offset (m)
Double-precision floating point
Specifies the latitude of the source endpoint of the LOS test segment or specifies the X offset of the source endpoint of the LOS test segment
cigi.los_segment_request.source_lon_yoff Source Longitude (degrees)/Source Y Offset (m)
Double-precision floating point
Specifies the longitude of the source endpoint of the LOS test segment or specifies the Y offset of the source endpoint of the LOS test segment
cigi.los_segment_request.type Request Type
Boolean
Determines what type of response the IG should return for this request
cigi.los_segment_request.update_period Update Period
Unsigned 8-bit integer
Specifies interval between successive responses to this request. A zero indicates one responses a value n > 0 the IG should respond every nth frame
cigi.los_vector_request Line of Sight Vector Request
String
Line of Sight Vector Request Packet
cigi.los_vector_request.alpha Alpha Threshold
Unsigned 8-bit integer
Specifies the minimum alpha value a surface may have for an LOS response to be generated
cigi.los_vector_request.azimuth Azimuth (degrees)
Specifies the horizontal angle of the LOS test vector
cigi.los_vector_request.elevation Elevation (degrees)
Specifies the vertical angle of the LOS test vector
cigi.los_vector_request.entity_id Entity ID
Unsigned 16-bit integer
Specifies the entity relative to which the test segment endpoints are defined
cigi.los_vector_request.los_id LOS ID
Unsigned 16-bit integer
Identifies the LOS request
cigi.los_vector_request.material_mask Material Mask
Unsigned 32-bit integer
Specifies the environmental and cultural features to be included in LOS segment testing
cigi.los_vector_request.max_range Maximum Range (m)
Specifies the maximum range along the LOS test vector at which intersection testing should occur
cigi.los_vector_request.min_range Minimum Range (m)
Specifies the minimum range along the LOS test vector at which intersection testing should occur
cigi.los_vector_request.response_coord Response Coordinate System
Boolean
Specifies the coordinate system to be used in the response
cigi.los_vector_request.source_alt_zoff Source Altitude (m)/Source Z Offset (m)
Double-precision floating point
Specifies the altitude of the source point of the LOS test vector or specifies the Z offset of the source point of the LOS test vector
cigi.los_vector_request.source_coord Source Point Coordinate System
Boolean
Indicates the coordinate system relative to which the test vector source point is specified
cigi.los_vector_request.source_lat_xoff Source Latitude (degrees)/Source X Offset (m)
Double-precision floating point
Specifies the latitude of the source point of the LOS test vector
cigi.los_vector_request.source_lon_yoff Source Longitude (degrees)/Source Y Offset (m)
Double-precision floating point
Specifies the longitude of the source point of the LOS test vector
cigi.los_vector_request.type Request Type
Boolean
Determines what type of response the IG should return for this request
cigi.los_vector_request.update_period Update Period
Unsigned 8-bit integer
Specifies interval between successive responses to this request. A zero indicates one responses a value n > 0 the IG should respond every nth frame
cigi.maritime_surface_conditions_control Maritime Surface Conditions Control
String
Maritime Surface Conditions Control Packet
cigi.maritime_surface_conditions_control.entity_region_id Entity ID/Region ID
Unsigned 16-bit integer
Specifies the entity to which the surface attributes in this packet are applied or specifies the region to which the surface attributes are confined
cigi.maritime_surface_conditions_control.scope Scope
Unsigned 8-bit integer
Specifies whether this packet is applied globally, applied to region, or assigned to an entity
cigi.maritime_surface_conditions_control.sea_surface_height Sea Surface Height (m)
Specifies the height of the water above MSL at equilibrium
cigi.maritime_surface_conditions_control.surface_clarity Surface Clarity (%)
Specifies the clarity of the water at its surface
cigi.maritime_surface_conditions_control.surface_conditions_enable Surface Conditions Enable
Boolean
Determines the state of the specified surface conditions
cigi.maritime_surface_conditions_control.surface_water_temp Surface Water Temperature (degrees C)
Specifies the water temperature at the surface
cigi.maritime_surface_conditions_control.whitecap_enable Whitecap Enable
Boolean
Determines whether whitecaps are enabled
cigi.maritime_surface_conditions_response Maritime Surface Conditions Response
String
Maritime Surface Conditions Response Packet
cigi.maritime_surface_conditions_response.request_id Request ID
Unsigned 8-bit integer
Identifies the environmental conditions request to which this response packet corresponds
cigi.maritime_surface_conditions_response.sea_surface_height Sea Surface Height (m)
Indicates the height of the sea surface at equilibrium
cigi.maritime_surface_conditions_response.surface_clarity Surface Clarity (%)
Indicates the clarity of the water at its surface
cigi.maritime_surface_conditions_response.surface_water_temp Surface Water Temperature (degrees C)
Indicates the water temperature at the sea surface
cigi.motion_tracker_control Motion Tracker Control
String
Motion Tracker Control Packet
cigi.motion_tracker_control.boresight_enable Boresight Enable
Boolean
Sets the boresight state of the external tracking device
cigi.motion_tracker_control.pitch_enable Pitch Enable
Boolean
Used to enable or disable the pitch of the motion tracker
cigi.motion_tracker_control.roll_enable Roll Enable
Boolean
Used to enable or disable the roll of the motion tracker
cigi.motion_tracker_control.tracker_enable Tracker Enable
Boolean
Specifies whether the tracking device is enabled
cigi.motion_tracker_control.tracker_id Tracker ID
Unsigned 8-bit integer
Specifies the tracker whose state the data in this packet represents
cigi.motion_tracker_control.view_group_id View/View Group ID
Unsigned 16-bit integer
Specifies the view or view group to which the tracking device is attached
cigi.motion_tracker_control.view_group_select View/View Group Select
Boolean
Specifies whether the tracking device is attached to a single view or a view group
cigi.motion_tracker_control.x_enable X Enable
Boolean
Used to enable or disable the X-axis position of the motion tracker
cigi.motion_tracker_control.y_enable Y Enable
Boolean
Used to enable or disable the Y-axis position of the motion tracker
cigi.motion_tracker_control.yaw_enable Yaw Enable
Boolean
Used to enable or disable the yaw of the motion tracker
cigi.motion_tracker_control.z_enable Z Enable
Boolean
Used to enable or disable the Z-axis position of the motion tracker
cigi.packet_id Packet ID
Unsigned 8-bit integer
Identifies the packet's id
cigi.packet_size Packet Size (bytes)
Unsigned 8-bit integer
Identifies the number of bytes in this type of packet
cigi.port Source or Destination Port
Unsigned 16-bit integer
Source or Destination Port
cigi.pos_request Position Request
String
Position Request Packet
cigi.pos_request.coord_system Coordinate System
Unsigned 8-bit integer
Specifies the desired coordinate system relative to which the position and orientation should be given
cigi.pos_request.object_class Object Class
Unsigned 8-bit integer
Specifies the type of object whose position is being requested
cigi.pos_request.object_id Object ID
Unsigned 16-bit integer
Identifies the entity, view, view group, or motion tracking device whose position is being requested
cigi.pos_request.part_id Articulated Part ID
Unsigned 8-bit integer
Identifies the articulated part whose position is being requested
cigi.pos_request.update_mode Update Mode
Boolean
Specifies whether the IG should report the position of the requested object each frame
cigi.pos_response Position Response
String
Position Response Packet
cigi.pos_response.alt_zoff Altitude (m)/Z Offset (m)
Double-precision floating point
Indicates the geodetic altitude of the entity, articulated part, view, or view group or indicates the Z offset from the parent entity's origin to the child entity, articulated part, view, or view group
cigi.pos_response.coord_system Coordinate System
Unsigned 8-bit integer
Indicates the coordinate system in which the position and orientation are specified
cigi.pos_response.lat_xoff Latitude (degrees)/X Offset (m)
Double-precision floating point
Indicates the geodetic latitude of the entity, articulated part, view, or view group or indicates the X offset from the parent entity's origin to the child entity, articulated part, view or view group
cigi.pos_response.lon_yoff Longitude (degrees)/Y Offset (m)
Double-precision floating point
Indicates the geodetic longitude of the entity, articulated part, view, or view group or indicates the Y offset from the parent entity's origin to the child entity, articulated part, view, or view group
cigi.pos_response.object_class Object Class
Unsigned 8-bit integer
Indicates the type of object whose position is being reported
cigi.pos_response.object_id Object ID
Unsigned 16-bit integer
Identifies the entity, view, view group, or motion tracking device whose position is being reported
cigi.pos_response.part_id Articulated Part ID
Unsigned 8-bit integer
Identifies the articulated part whose position is being reported
cigi.pos_response.pitch Pitch (degrees)
Indicates the pitch angle of the specified entity, articulated part, view, or view group
cigi.pos_response.roll Roll (degrees)
Indicates the roll angle of the specified entity, articulated part, view, or view group
cigi.pos_response.yaw Yaw (degrees)
Indicates the yaw angle of the specified entity, articulated part, view, or view group
cigi.rate_control Rate Control
String
Rate Control Packet
cigi.rate_control.apply_to_part Apply to Articulated Part
Boolean
Determines whether the rate is applied to the articulated part specified by the Articulated Part ID parameter
cigi.rate_control.coordinate_system Coordinate System
Boolean
Specifies the reference coordinate system to which the linear and angular rates are applied
cigi.rate_control.entity_id Entity ID
Unsigned 16-bit integer
Specifies the entity to which this data packet will be applied
cigi.rate_control.part_id Articulated Part ID
Signed 8-bit integer
Identifies which articulated part is controlled with this data packet
cigi.rate_control.pitch_rate Pitch Angular Rate (degrees/s)
Specifies the pitch angular rate for the entity being represented
cigi.rate_control.roll_rate Roll Angular Rate (degrees/s)
Specifies the roll angular rate for the entity being represented
cigi.rate_control.x_rate X Linear Rate (m/s)
Specifies the x component of the velocity vector for the entity being represented
cigi.rate_control.y_rate Y Linear Rate (m/s)
Specifies the y component of the velocity vector for the entity being represented
cigi.rate_control.yaw_rate Yaw Angular Rate (degrees/s)
Specifies the yaw angular rate for the entity being represented
cigi.rate_control.z_rate Z Linear Rate (m/s)
Specifies the z component of the velocity vector for the entity being represented
cigi.sensor_control Sensor Control
String
Sensor Control Packet
cigi.sensor_control.ac_coupling AC Coupling
Indicates the AC Coupling decay rate for the weapon sensor option
cigi.sensor_control.auto_gain Automatic Gain
Boolean
When set to "on," cause the weapons sensor to automatically adjust the gain value to optimize the brightness and contrast of the sensor display
cigi.sensor_control.gain Gain
Indicates the gain value for the weapon sensor option
cigi.sensor_control.level Level
Indicates the level value for the weapon sensor option
cigi.sensor_control.line_dropout Line-by-Line Dropout
Boolean
Indicates whether the line-by-line dropout feature is enabled
cigi.sensor_control.line_dropout_enable Line-by-Line Dropout Enable
Boolean
Specifies whether line-by-line dropout is enabled
cigi.sensor_control.noise Noise
Indicates the detector-noise gain for the weapon sensor option
cigi.sensor_control.polarity Polarity
Boolean
Indicates whether this sensor is showing white hot or black hot
cigi.sensor_control.response_type Response Type
Boolean
Specifies whether the IG should return a Sensor Response packet or a Sensor Extended Response packet
cigi.sensor_control.sensor_enable Sensor On/Off
Boolean
Indicates whether the sensor is turned on or off
cigi.sensor_control.sensor_id Sensor ID
Unsigned 8-bit integer
Identifies the sensor to which this packet should be applied
cigi.sensor_control.sensor_on_off Sensor On/Off
Boolean
Specifies whether the sensor is turned on or off
cigi.sensor_control.track_mode Track Mode
Unsigned 8-bit integer
Indicates which track mode the sensor should be
cigi.sensor_control.track_polarity Track White/Black
Boolean
Identifies whether the weapons sensor will track wither white or black
cigi.sensor_control.track_white_black Track White/Black
Boolean
Specifies whether the sensor tracks white or black
cigi.sensor_control.view_id View ID
Unsigned 8-bit integer
Dictates to which view the corresponding sensor is assigned, regardless of the view group
cigi.sensor_ext_response Sensor Extended Response
String
Sensor Extended Response Packet
cigi.sensor_ext_response.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity ID of the target
cigi.sensor_ext_response.entity_id_valid Entity ID Valid
Boolean
Indicates whether the target is an entity or a non-entity object
cigi.sensor_ext_response.frame_ctr Frame Counter
Unsigned 32-bit integer
Indicates the IG's frame counter at the time that the IG calculates the gate and line-of-sight intersection data
cigi.sensor_ext_response.gate_x_pos Gate X Position (degrees)
Specifies the gate symbol's position along the view's X axis
cigi.sensor_ext_response.gate_x_size Gate X Size (pixels or raster lines)
Unsigned 16-bit integer
Specifies the gate symbol size along the view's X axis
cigi.sensor_ext_response.gate_y_pos Gate Y Position (degrees)
Specifies the gate symbol's position along the view's Y axis
cigi.sensor_ext_response.gate_y_size Gate Y Size (pixels or raster lines)
Unsigned 16-bit integer
Specifies the gate symbol size along the view's Y axis
cigi.sensor_ext_response.sensor_id Sensor ID
Unsigned 8-bit integer
Specifies the sensor to which the data in this packet apply
cigi.sensor_ext_response.sensor_status Sensor Status
Unsigned 8-bit integer
Indicates the current tracking state of the sensor
cigi.sensor_ext_response.track_alt Track Point Altitude (m)
Double-precision floating point
Indicates the geodetic altitude of the point being tracked by the sensor
cigi.sensor_ext_response.track_lat Track Point Latitude (degrees)
Double-precision floating point
Indicates the geodetic latitude of the point being tracked by the sensor
cigi.sensor_ext_response.track_lon Track Point Longitude (degrees)
Double-precision floating point
Indicates the geodetic longitude of the point being tracked by the sensor
cigi.sensor_ext_response.view_id View ID
Unsigned 16-bit integer
Specifies the view that represents the sensor display
cigi.sensor_response Sensor Response
String
Sensor Response Packet
cigi.sensor_response.frame_ctr Frame Counter
Unsigned 32-bit integer
Indicates the IG's frame counter at the time that the IG calculates the gate and line-of-sight intersection data
cigi.sensor_response.gate_x_pos Gate X Position (degrees)
Specifies the gate symbol's position along the view's X axis
cigi.sensor_response.gate_x_size Gate X Size (pixels or raster lines)
Unsigned 16-bit integer
Specifies the gate symbol size along the view's X axis
cigi.sensor_response.gate_y_pos Gate Y Position (degrees)
Specifies the gate symbol's position along the view's Y axis
cigi.sensor_response.gate_y_size Gate Y Size (pixels or raster lines)
Unsigned 16-bit integer
Specifies the gate symbol size along the view's Y axis
cigi.sensor_response.sensor_id Sensor ID
Unsigned 8-bit integer
Identifies the sensor response corresponding to the associated sensor control data packet
cigi.sensor_response.sensor_status Sensor Status
Unsigned 8-bit integer
Indicates the current tracking state of the sensor
cigi.sensor_response.status Sensor Status
Unsigned 8-bit integer
Indicates the current sensor mode
cigi.sensor_response.view_id View ID
Unsigned 8-bit integer
Indicates the sensor view
cigi.sensor_response.x_offset Gate X Offset (degrees)
Unsigned 16-bit integer
Specifies the target's horizontal offset from the view plane normal
cigi.sensor_response.x_size Gate X Size
Unsigned 16-bit integer
Specifies the target size in the X direction (horizontal) in pixels
cigi.sensor_response.y_offset Gate Y Offset (degrees)
Unsigned 16-bit integer
Specifies the target's vertical offset from the view plane normal
cigi.sensor_response.y_size Gate Y Size
Unsigned 16-bit integer
Specifies the target size in the Y direction (vertical) in pixels
cigi.short_art_part_control Short Articulated Part Control
String
Short Articulated Part Control Packet
cigi.short_art_part_control.dof_1 DOF 1
Specifies either an offset or an angular position for the part identified by Articulated Part ID 1
cigi.short_art_part_control.dof_2 DOF 2
Specifies either an offset or an angular position for the part identified by Articulated Part ID 2
cigi.short_art_part_control.dof_select_1 DOF Select 1
Unsigned 8-bit integer
Specifies the degree of freedom to which the value of DOF 1 is applied
cigi.short_art_part_control.dof_select_2 DOF Select 2
Unsigned 8-bit integer
Specifies the degree of freedom to which the value of DOF 2 is applied
cigi.short_art_part_control.entity_id Entity ID
Unsigned 16-bit integer
Specifies the entity to which the articulated part(s) belongs
cigi.short_art_part_control.part_enable_1 Articulated Part Enable 1
Boolean
Determines whether the articulated part submodel specified by Articulated Part ID 1 should be enabled or disabled within the scene graph
cigi.short_art_part_control.part_enable_2 Articulated Part Enable 2
Boolean
Determines whether the articulated part submodel specified by Articulated Part ID 2 should be enabled or disabled within the scene graph
cigi.short_art_part_control.part_id_1 Articulated Part ID 1
Unsigned 8-bit integer
Specifies an articulated part to which the data in this packet should be applied
cigi.short_art_part_control.part_id_2 Articulated Part ID 2
Unsigned 8-bit integer
Specifies an articulated part to which the data in this packet should be applied
cigi.short_component_control Short Component Control
String
Short Component Control Packet
cigi.short_component_control.component_class Component Class
Unsigned 8-bit integer
Identifies the type of object to which the Instance ID parameter refers
cigi.short_component_control.component_id Component ID
Unsigned 16-bit integer
Identifies the component to which the data in this packet should be applied
cigi.short_component_control.component_state Component State
Unsigned 8-bit integer
Specifies a discrete state for the component
cigi.short_component_control.data_1 Component Data 1
Byte array
User-defined component data
cigi.short_component_control.data_2 Component Data 2
Byte array
User-defined component data
cigi.short_component_control.instance_id Instance ID
Unsigned 16-bit integer
Identifies the object to which the component belongs
cigi.sof Start of Frame
String
Start of Frame Packet
cigi.sof.db_number Database Number
Signed 8-bit integer
Indicates load status of the requested database
cigi.sof.earth_reference_model Earth Reference Model
Boolean
Indicates whether the IG is using a custom Earth Reference Model or the default WGS 84 reference ellipsoid for coordinate conversion calculations
cigi.sof.frame_ctr IG to Host Frame Counter
Unsigned 32-bit integer
Contains a number representing a particular frame
cigi.sof.ig_frame_number IG Frame Number
Unsigned 32-bit integer
Uniquely identifies the IG data frame
cigi.sof.ig_mode IG Mode
Unsigned 8-bit integer
Identifies to the host the current operating mode of the IG
cigi.sof.ig_status IG Status Code
Unsigned 8-bit integer
Indicates the error status of the IG
cigi.sof.ig_status_code IG Status Code
Unsigned 8-bit integer
Indicates the operational status of the IG
cigi.sof.last_host_frame_number Last Host Frane Number
Unsigned 32-bit integer
Contains the value of the Host Frame parameter in the last IG Control packet received from the Host.
cigi.sof.time_tag Timing Value (microseconds)
Contains a timing value that is used to time-tag the ethernet message during asynchronous operation
cigi.sof.timestamp Timestamp (microseconds)
Unsigned 32-bit integer
Indicates the number of 10 microsecond "ticks" since some initial reference time
cigi.sof.timestamp_valid Timestamp Valid
Boolean
Indicates whether the Timestamp parameter contains a valid value
cigi.special_effect_def Special Effect Definition
String
Special Effect Definition Packet
cigi.special_effect_def.blue Blue Color Value
Unsigned 8-bit integer
Specifies the blue component of a color to be applied to the effect
cigi.special_effect_def.burst_interval Burst Interval (s)
Indicates the time between successive bursts
cigi.special_effect_def.color_enable Color Enable
Boolean
Indicates whether the red, green, and blue color values will be applied to the special effect
cigi.special_effect_def.duration Duration (s)
Indicates how long an effect or sequence of burst will be active
cigi.special_effect_def.effect_count Effect Count
Unsigned 16-bit integer
Indicates how many effects are contained within a single burst
cigi.special_effect_def.entity_id Entity ID
Unsigned 16-bit integer
Indicates which effect is being modified
cigi.special_effect_def.green Green Color Value
Unsigned 8-bit integer
Specifies the green component of a color to be applied to the effect
cigi.special_effect_def.red Red Color Value
Unsigned 8-bit integer
Specifies the red component of a color to be applied to the effect
cigi.special_effect_def.separation Separation (m)
Indicates the distance between particles within a burst
cigi.special_effect_def.seq_direction Sequence Direction
Boolean
Indicates whether the effect animation sequence should be sequence from beginning to end or vice versa
cigi.special_effect_def.time_scale Time Scale
Specifies a scale factor to apply to the time period for the effect's animation sequence
cigi.special_effect_def.x_scale X Scale
Specifies a scale factor to apply along the effect's X axis
cigi.special_effect_def.y_scale Y Scale
Specifies a scale factor to apply along the effect's Y axis
cigi.special_effect_def.z_scale Z Scale
Specifies a scale factor to apply along the effect's Z axis
cigi.srcport Source Port
Unsigned 16-bit integer
Source Port
cigi.terr_surface_cond_response Terrestrial Surface Conditions Response
String
Terrestrial Surface Conditions Response Packet
cigi.terr_surface_cond_response.request_id Request ID
Unsigned 8-bit integer
Identifies the environmental conditions request to which this response packet corresponds
cigi.terr_surface_cond_response.surface_id Surface Condition ID
Unsigned 32-bit integer
Indicates the presence of a specific surface condition or contaminant at the test point
cigi.terrestrial_surface_conditions_control Terrestrial Surface Conditions Control
String
Terrestrial Surface Conditions Control Packet
cigi.terrestrial_surface_conditions_control.coverage Coverage (%)
Unsigned 8-bit integer
Determines the degree of coverage of the specified surface contaminant
cigi.terrestrial_surface_conditions_control.entity_region_id Entity ID/Region ID
Unsigned 16-bit integer
Specifies the environmental entity to which the surface condition attributes in this packet are applied
cigi.terrestrial_surface_conditions_control.scope Scope
Unsigned 8-bit integer
Determines whether the specified surface conditions are applied globally, regionally, or to an environmental entity
cigi.terrestrial_surface_conditions_control.severity Severity
Unsigned 8-bit integer
Determines the degree of severity for the specified surface contaminant(s)
cigi.terrestrial_surface_conditions_control.surface_condition_enable Surface Condition Enable
Boolean
Specifies whether the surface condition attribute identified by the Surface Condition ID parameter should be enabled
cigi.terrestrial_surface_conditions_control.surface_condition_id Surface Condition ID
Unsigned 16-bit integer
Identifies a surface condition or contaminant
cigi.trajectory_def Trajectory Definition
String
Trajectory Definition Packet
cigi.trajectory_def.acceleration Acceleration Factor (m/s^2)
Indicates the acceleration factor that will be applied to the Vz component of the velocity vector over time to simulate the effects of gravity on the object
cigi.trajectory_def.acceleration_x Acceleration X (m/s^2)
Specifies the X component of the acceleration vector
cigi.trajectory_def.acceleration_y Acceleration Y (m/s^2)
Specifies the Y component of the acceleration vector
cigi.trajectory_def.acceleration_z Acceleration Z (m/s^2)
Specifies the Z component of the acceleration vector
cigi.trajectory_def.entity_id Entity ID
Unsigned 16-bit integer
Indicates which entity is being influenced by this trajectory behavior
cigi.trajectory_def.retardation Retardation Rate (m/s)
Indicates what retardation factor will be applied to the object's motion
cigi.trajectory_def.retardation_rate Retardation Rate (m/s^2)
Specifies the magnitude of an acceleration applied against the entity's instantaneous linear velocity vector
cigi.trajectory_def.terminal_velocity Terminal Velocity (m/s)
Indicates what final velocity the object will be allowed to obtain
cigi.unknown Unknown
String
Unknown Packet
cigi.user_definable User Definable
String
User definable packet
cigi.user_defined User-Defined
String
User-Defined Packet
cigi.version CIGI Version
Unsigned 8-bit integer
Identifies the version of CIGI interface that is currently running on the host
cigi.view_control View Control
String
View Control Packet
cigi.view_control.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity to which this view should be attached
cigi.view_control.group_id Group ID
Unsigned 8-bit integer
Specifies the view group to which the contents of this packet are applied
cigi.view_control.pitch Pitch (degrees)
The rotation about the view's Y axis
cigi.view_control.pitch_enable Pitch Enable
Unsigned 8-bit integer
Identifies whether the pitch parameter should be applied to the specified view or view group
cigi.view_control.roll Roll (degrees)
The rotation about the view's X axis
cigi.view_control.roll_enable Roll Enable
Unsigned 8-bit integer
Identifies whether the roll parameter should be applied to the specified view or view group
cigi.view_control.view_group View Group Select
Unsigned 8-bit integer
Specifies which view group is to be controlled by the offsets
cigi.view_control.view_id View ID
Unsigned 8-bit integer
Specifies which view position is associated with offsets and rotation specified by this data packet
cigi.view_control.x_offset X Offset (m)
Defines the X component of the view offset vector along the entity's longitudinal axis
cigi.view_control.xoff X Offset (m)
Specifies the position of the view eyepoint along the X axis of the entity specified by the Entity ID parameter
cigi.view_control.xoff_enable X Offset Enable
Boolean
Identifies whether the x offset parameter should be applied to the specified view or view group
cigi.view_control.y_offset Y Offset
Defines the Y component of the view offset vector along the entity's lateral axis
cigi.view_control.yaw Yaw (degrees)
The rotation about the view's Z axis
cigi.view_control.yaw_enable Yaw Enable
Unsigned 8-bit integer
Identifies whether the yaw parameter should be applied to the specified view or view group
cigi.view_control.yoff Y Offset (m)
Specifies the position of the view eyepoint along the Y axis of the entity specified by the Entity ID parameter
cigi.view_control.yoff_enable Y Offset Enable
Unsigned 8-bit integer
Identifies whether the y offset parameter should be applied to the specified view or view group
cigi.view_control.z_offset Z Offset
Defines the Z component of the view offset vector along the entity's vertical axis
cigi.view_control.zoff Z Offset (m)
Specifies the position of the view eyepoint along the Z axis of the entity specified by the Entity ID parameter
cigi.view_control.zoff_enable Z Offset Enable
Unsigned 8-bit integer
Identifies whether the z offset parameter should be applied to the specified view or view group
cigi.view_def View Definition
String
View Definition Packet
cigi.view_def.bottom Bottom (degrees)
Specifies the bottom half-angle of the view frustum
cigi.view_def.bottom_enable Field of View Bottom Enable
Boolean
Identifies whether the field of view bottom value is manipulated from the Host
cigi.view_def.far Far (m)
Specifies the position of the view's far clipping plane
cigi.view_def.far_enable Field of View Far Enable
Boolean
Identifies whether the field of view far value is manipulated from the Host
cigi.view_def.fov_bottom Field of View Bottom (degrees)
Defines the bottom clipping plane for the view
cigi.view_def.fov_far Field of View Far (m)
Defines the far clipping plane for the view
cigi.view_def.fov_left Field of View Left (degrees)
Defines the left clipping plane for the view
cigi.view_def.fov_near Field of View Near (m)
Defines the near clipping plane for the view
cigi.view_def.fov_right Field of View Right (degrees)
Defines the right clipping plane for the view
cigi.view_def.fov_top Field of View Top (degrees)
Defines the top clipping plane for the view
cigi.view_def.group_id Group ID
Unsigned 8-bit integer
Specifies the group to which the view is to be assigned
cigi.view_def.left Left (degrees)
Specifies the left half-angle of the view frustum
cigi.view_def.left_enable Field of View Left Enable
Boolean
Identifies whether the field of view left value is manipulated from the Host
cigi.view_def.mirror View Mirror
Unsigned 8-bit integer
Specifies what mirroring function should be applied to the view
cigi.view_def.mirror_mode Mirror Mode
Unsigned 8-bit integer
Specifies the mirroring function to be performed on the view
cigi.view_def.near Near (m)
Specifies the position of the view's near clipping plane
cigi.view_def.near_enable Field of View Near Enable
Boolean
Identifies whether the field of view near value is manipulated from the Host
cigi.view_def.pixel_rep Pixel Replication
Unsigned 8-bit integer
Specifies what pixel replication function should be applied to the view
cigi.view_def.pixel_replication Pixel Replication Mode
Unsigned 8-bit integer
Specifies the pixel replication function to be performed on the view
cigi.view_def.projection_type Projection Type
Boolean
Specifies whether the view projection should be perspective or orthographic parallel
cigi.view_def.reorder Reorder
Boolean
Specifies whether the view should be moved to the top of any overlapping views
cigi.view_def.right Right (degrees)
Specifies the right half-angle of the view frustum
cigi.view_def.right_enable Field of View Right Enable
Boolean
Identifies whether the field of view right value is manipulated from the Host
cigi.view_def.top Top (degrees)
Specifies the top half-angle of the view frustum
cigi.view_def.top_enable Field of View Top Enable
Boolean
Identifies whether the field of view top value is manipulated from the Host
cigi.view_def.tracker_assign Tracker Assign
Boolean
Specifies whether the view should be controlled by an external tracking device
cigi.view_def.view_group View Group
Unsigned 8-bit integer
Specifies the view group to which the view is to be assigned
cigi.view_def.view_id View ID
Unsigned 8-bit integer
Specifies the view to which this packet should be applied
cigi.view_def.view_type View Type
Unsigned 8-bit integer
Specifies the view type
cigi.wave_control Wave Control
String
Wave Control Packet
cigi.wave_control.breaker_type Breaker Type
Unsigned 8-bit integer
Specifies the type of breaker within the surf zone
cigi.wave_control.direction Direction (degrees)
Specifies the direction in which the wave propagates
cigi.wave_control.entity_region_id Entity ID/Region ID
Unsigned 16-bit integer
Specifies the surface entity for which the wave is defined or specifies the environmental region for which the wave is defined
cigi.wave_control.height Wave Height (m)
Specifies the average vertical distance from trough to crest produced by the wave
cigi.wave_control.leading Leading (degrees)
Specifies the phase angle at which the crest occurs
cigi.wave_control.period Period (s)
Specifies the time required fro one complete oscillation of the wave
cigi.wave_control.phase_offset Phase Offset (degrees)
Specifies a phase offset for the wave
cigi.wave_control.scope Scope
Unsigned 8-bit integer
Specifies whether the wave is defined for global, regional, or entity-controlled maritime surface conditions
cigi.wave_control.wave_enable Wave Enable
Boolean
Determines whether the wave is enabled or disabled
cigi.wave_control.wave_id Wave ID
Unsigned 8-bit integer
Specifies the wave to which the attributes in this packet are applied
cigi.wave_control.wavelength Wavelength (m)
Specifies the distance from a particular phase on a wave to the same phase on an adjacent wave
cigi.wea_cond_response Weather Conditions Response
String
Weather Conditions Response Packet
cigi.wea_cond_response.air_temp Air Temperature (degrees C)
Indicates the air temperature at the requested location
cigi.wea_cond_response.barometric_pressure Barometric Pressure (mb or hPa)
Indicates the atmospheric pressure at the requested location
cigi.wea_cond_response.horiz_speed Horizontal Wind Speed (m/s)
Indicates the local wind speed parallel to the ellipsoid-tangential reference plane
cigi.wea_cond_response.humidity Humidity (%)
Unsigned 8-bit integer
Indicates the humidity at the request location
cigi.wea_cond_response.request_id Request ID
Unsigned 8-bit integer
Identifies the environmental conditions request to which this response packet corresponds
cigi.wea_cond_response.vert_speed Vertical Wind Speed (m/s)
Indicates the local vertical wind speed
cigi.wea_cond_response.visibility_range Visibility Range (m)
Indicates the visibility range at the requested location
cigi.wea_cond_response.wind_direction Wind Direction (degrees)
Indicates the local wind direction
cigi.weather_control Weather Control
String
Weather Control Packet
cigi.weather_control.aerosol_concentration Aerosol Concentration (g/m^3)
Specifies the concentration of water, smoke, dust, or other particles suspended in the air
cigi.weather_control.air_temp Air Temperature (degrees C)
Identifies the local temperature inside the weather phenomenon
cigi.weather_control.barometric_pressure Barometric Pressure (mb or hPa)
Specifies the atmospheric pressure within the weather layer
cigi.weather_control.base_elevation Base Elevation (m)
Specifies the altitude of the base of the weather layer
cigi.weather_control.cloud_type Cloud Type
Unsigned 8-bit integer
Specifies the type of clouds contained within the weather layer
cigi.weather_control.coverage Coverage (%)
Indicates the amount of area coverage a particular phenomenon has over the specified global visibility range given in the environment control data packet
cigi.weather_control.elevation Elevation (m)
Indicates the base altitude of the weather phenomenon
cigi.weather_control.entity_id Entity ID
Unsigned 16-bit integer
Identifies the entity's ID
cigi.weather_control.entity_region_id Entity ID/Region ID
Unsigned 16-bit integer
Specifies the entity to which the weather attributes in this packet are applied
cigi.weather_control.horiz_wind Horizontal Wind Speed (m/s)
Specifies the local wind speed parallel to the ellipsoid-tangential reference plane
cigi.weather_control.humidity Humidity (%)
Unsigned 8-bit integer
Specifies the humidity within the weather layer
cigi.weather_control.layer_id Layer ID
Unsigned 8-bit integer
Specifies the weather layer to which the data in this packet are applied
cigi.weather_control.opacity Opacity (%)
Identifies the opacity of the weather phenomenon
cigi.weather_control.phenomenon_type Phenomenon Type
Unsigned 16-bit integer
Identifies the type of weather described by this data packet
cigi.weather_control.random_lightning_enable Random Lightning Enable
Unsigned 8-bit integer
Specifies whether the weather layer exhibits random lightning effects
cigi.weather_control.random_winds Random Winds Aloft
Boolean
Indicates whether a random frequency and duration should be applied to the winds aloft value
cigi.weather_control.random_winds_enable Random Winds Enable
Boolean
Specifies whether a random frequency and duration should be applied to the local wind effects
cigi.weather_control.scope Scope
Unsigned 8-bit integer
Specifies whether the weather is global, regional, or assigned to an entity
cigi.weather_control.scud_enable Scud Enable
Boolean
Indicates whether there will be scud effects applied to the phenomenon specified by this data packet
cigi.weather_control.scud_frequency Scud Frequency (%)
Identifies the frequency for the scud effect
cigi.weather_control.severity Severity
Unsigned 8-bit integer
Indicates the severity of the weather phenomenon
cigi.weather_control.thickness Thickness (m)
Indicates the vertical thickness of the weather phenomenon
cigi.weather_control.transition_band Transition Band (m)
Indicates a vertical transition band both above and below a phenomenon
cigi.weather_control.vert_wind Vertical Wind Speed (m/s)
Specifies the local vertical wind speed
cigi.weather_control.visibility_range Visibility Range (m)
Specifies the visibility range through the weather layer
cigi.weather_control.weather_enable Weather Enable
Boolean
Indicates whether the phenomena specified by this data packet is visible
cigi.weather_control.wind_direction Winds Aloft Direction (degrees)
Indicates local direction of the wind applied to the phenomenon
cigi.weather_control.wind_speed Winds Aloft Speed
Identifies the local wind speed applied to the phenomenon
cip.attribute Attribute
Unsigned 8-bit integer
Attribute
cip.class Class
Unsigned 8-bit integer
Class
cip.connpoint Connection Point
Unsigned 8-bit integer
Connection Point
cip.devtype Device Type
Unsigned 16-bit integer
Device Type
cip.epath EPath
Byte array
EPath
cip.fwo.cmp Compatibility
Unsigned 8-bit integer
Fwd Open: Compatibility bit
cip.fwo.consize Connection Size
Unsigned 16-bit integer
Fwd Open: Connection size
cip.fwo.dir Direction
Unsigned 8-bit integer
Fwd Open: Direction
cip.fwo.f_v Connection Size Type
Unsigned 16-bit integer
Fwd Open: Fixed or variable connection size
cip.fwo.major Major Revision
Unsigned 8-bit integer
Fwd Open: Major Revision
cip.fwo.owner Owner
Unsigned 16-bit integer
Fwd Open: Redundant owner bit
cip.fwo.prio Priority
Unsigned 16-bit integer
Fwd Open: Connection priority
cip.fwo.transport Class
Unsigned 8-bit integer
Fwd Open: Transport Class
cip.fwo.trigger Trigger
Unsigned 8-bit integer
Fwd Open: Production trigger
cip.fwo.type Connection Type
Unsigned 16-bit integer
Fwd Open: Connection type
cip.genstat General Status
Unsigned 8-bit integer
General Status
cip.instance Instance
Unsigned 8-bit integer
Instance
cip.linkaddress Link Address
Unsigned 8-bit integer
Link Address
cip.port Port
Unsigned 8-bit integer
Port Identifier
cip.rr Request/Response
Unsigned 8-bit integer
Request or Response message
cip.sc Service
Unsigned 8-bit integer
Service Code
cip.symbol Symbol
String
ANSI Extended Symbol Segment
cip.vendor Vendor ID
Unsigned 16-bit integer
Vendor ID
cops.accttimer.value Contents: ACCT Timer Value
Unsigned 16-bit integer
Accounting Timer Value in AcctTimer object
cops.c_num C-Num
Unsigned 8-bit integer
C-Num in COPS Object Header
cops.c_type C-Type
Unsigned 8-bit integer
C-Type in COPS Object Header
cops.client_type Client Type
Unsigned 16-bit integer
Client Type in COPS Common Header
cops.context.m_type M-Type
Unsigned 16-bit integer
M-Type in COPS Context Object
cops.context.r_type R-Type
Unsigned 16-bit integer
R-Type in COPS Context Object
cops.cperror Error
Unsigned 16-bit integer
Error in Error object
cops.cperror_sub Error Sub-code
Unsigned 16-bit integer
Error Sub-code in Error object
cops.decision.cmd Command-Code
Unsigned 16-bit integer
Command-Code in Decision/LPDP Decision object
cops.decision.flags Flags
Unsigned 16-bit integer
Flags in Decision/LPDP Decision object
cops.epd.int EPD Integer Data
Signed 64-bit integer
cops.epd.integer64 EPD Inetger64 Data
Signed 64-bit integer
cops.epd.ipv4 EPD IPAddress Data
IPv4 address
cops.epd.null EPD Null Data
Byte array
cops.epd.octets EPD Octet String Data
Byte array
cops.epd.oid EPD OID Data
cops.epd.opaque EPD Opaque Data
Byte array
cops.epd.timeticks EPD TimeTicks Data
Unsigned 64-bit integer
cops.epd.unknown EPD Unknown Data
Byte array
cops.epd.unsigned32 EPD Unsigned32 Data
Unsigned 64-bit integer
cops.epd.unsigned64 EPD Unsigned64 Data
Unsigned 64-bit integer
cops.error Error
Unsigned 16-bit integer
Error in Error object
cops.error_sub Error Sub-code
Unsigned 16-bit integer
Error Sub-code in Error object
cops.errprid.instance_id ErrorPRID Instance Identifier
cops.flags Flags
Unsigned 8-bit integer
Flags in COPS Common Header
cops.gperror Error
Unsigned 16-bit integer
Error in Error object
cops.gperror_sub Error Sub-code
Unsigned 16-bit integer
Error Sub-code in Error object
cops.in-int.ipv4 IPv4 address
IPv4 address
IPv4 address in COPS IN-Int object
cops.in-int.ipv6 IPv6 address
IPv6 address
IPv6 address in COPS IN-Int object
cops.in-out-int.ifindex ifIndex
Unsigned 32-bit integer
If SNMP is supported, corresponds to MIB-II ifIndex
cops.integrity.key_id Contents: Key ID
Unsigned 32-bit integer
Key ID in Integrity object
cops.integrity.seq_num Contents: Sequence Number
Unsigned 32-bit integer
Sequence Number in Integrity object
cops.katimer.value Contents: KA Timer Value
Unsigned 16-bit integer
Keep-Alive Timer Value in KATimer object
cops.lastpdpaddr.ipv4 IPv4 address
IPv4 address
IPv4 address in COPS LastPDPAddr object
cops.lastpdpaddr.ipv6 IPv6 address
IPv6 address
IPv6 address in COPS LastPDPAddr object
cops.msg_len Message Length
Unsigned 32-bit integer
Message Length in COPS Common Header
cops.obj.len Object Length
Unsigned 32-bit integer
Object Length in COPS Object Header
cops.op_code Op Code
Unsigned 8-bit integer
Op Code in COPS Common Header
cops.out-int.ipv4 IPv4 address
IPv4 address
IPv4 address in COPS OUT-Int object
cops.out-int.ipv6 IPv6 address
IPv6 address
IPv6 address in COPS OUT-Int
cops.pc_activity_count Count
Unsigned 32-bit integer
Count
cops.pc_algorithm Algorithm
Unsigned 16-bit integer
Algorithm
cops.pc_bcid Billing Correlation ID
Unsigned 32-bit integer
Billing Correlation ID
cops.pc_bcid_ev BDID Event Counter
Unsigned 32-bit integer
BCID Event Counter
cops.pc_bcid_ts BDID Timestamp
Unsigned 32-bit integer
BCID Timestamp
cops.pc_close_subcode Reason Sub Code
Unsigned 16-bit integer
Reason Sub Code
cops.pc_cmts_ip CMTS IP Address
IPv4 address
CMTS IP Address
cops.pc_cmts_ip_port CMTS IP Port
Unsigned 16-bit integer
CMTS IP Port
cops.pc_delete_subcode Reason Sub Code
Unsigned 16-bit integer
Reason Sub Code
cops.pc_dest_ip Destination IP Address
IPv4 address
Destination IP Address
cops.pc_dest_port Destination IP Port
Unsigned 16-bit integer
Destination IP Port
cops.pc_dfccc_id CCC ID
Unsigned 32-bit integer
CCC ID
cops.pc_dfccc_ip DF IP Address CCC
IPv4 address
DF IP Address CCC
cops.pc_dfccc_ip_port DF IP Port CCC
Unsigned 16-bit integer
DF IP Port CCC
cops.pc_dfcdc_ip DF IP Address CDC
IPv4 address
DF IP Address CDC
cops.pc_dfcdc_ip_port DF IP Port CDC
Unsigned 16-bit integer
DF IP Port CDC
cops.pc_direction Direction
Unsigned 8-bit integer
Direction
cops.pc_ds_field DS Field (DSCP or TOS)
Unsigned 8-bit integer
DS Field (DSCP or TOS)
cops.pc_gate_command_type Gate Command Type
Unsigned 16-bit integer
Gate Command Type
cops.pc_gate_id Gate Identifier
Unsigned 32-bit integer
Gate Identifier
cops.pc_gate_spec_flags Flags
Unsigned 8-bit integer
Flags
cops.pc_key Security Key
Unsigned 32-bit integer
Security Key
cops.pc_max_packet_size Maximum Packet Size
Unsigned 32-bit integer
Maximum Packet Size
cops.pc_min_policed_unit Minimum Policed Unit
Unsigned 32-bit integer
Minimum Policed Unit
cops.pc_mm_amid_am_tag AMID Application Manager Tag
Unsigned 32-bit integer
PacketCable Multimedia AMID Application Manager Tag
cops.pc_mm_amid_application_type AMID Application Type
Unsigned 32-bit integer
PacketCable Multimedia AMID Application Type
cops.pc_mm_amrtrps Assumed Minimum Reserved Traffic Rate Packet Size
Unsigned 16-bit integer
PacketCable Multimedia Committed Envelope Assumed Minimum Reserved Traffic Rate Packet Size
cops.pc_mm_classifier_action Priority
Unsigned 8-bit integer
PacketCable Multimedia Classifier Action
cops.pc_mm_classifier_activation_state Priority
Unsigned 8-bit integer
PacketCable Multimedia Classifier Activation State
cops.pc_mm_classifier_dscp DSCP/TOS Field
Unsigned 8-bit integer
PacketCable Multimedia Classifier DSCP/TOS Field
cops.pc_mm_classifier_dscp_mask DSCP/TOS Mask
Unsigned 8-bit integer
PacketCable Multimedia Classifer DSCP/TOS Mask
cops.pc_mm_classifier_dst_addr Destination address
IPv4 address
PacketCable Multimedia Classifier Destination IP Address
cops.pc_mm_classifier_dst_mask Destination address
IPv4 address
PacketCable Multimedia Classifier Destination Mask
cops.pc_mm_classifier_dst_port Destination Port
Unsigned 16-bit integer
PacketCable Multimedia Classifier Source Port
cops.pc_mm_classifier_dst_port_end Destination Port
Unsigned 16-bit integer
PacketCable Multimedia Classifier Source Port End
cops.pc_mm_classifier_id Priority
Unsigned 16-bit integer
PacketCable Multimedia Classifier ID
cops.pc_mm_classifier_priority Priority
Unsigned 8-bit integer
PacketCable Multimedia Classifier Priority
cops.pc_mm_classifier_proto_id Protocol ID
Unsigned 16-bit integer
PacketCable Multimedia Classifier Protocol ID
cops.pc_mm_classifier_src_addr Source address
IPv4 address
PacketCable Multimedia Classifier Source IP Address
cops.pc_mm_classifier_src_mask Source mask
IPv4 address
PacketCable Multimedia Classifier Source Mask
cops.pc_mm_classifier_src_port Source Port
Unsigned 16-bit integer
PacketCable Multimedia Classifier Source Port
cops.pc_mm_classifier_src_port_end Source Port End
Unsigned 16-bit integer
PacketCable Multimedia Classifier Source Port End
cops.pc_mm_docsis_scn Service Class Name
String
PacketCable Multimedia DOCSIS Service Class Name
cops.pc_mm_envelope Envelope
Unsigned 8-bit integer
PacketCable Multimedia Envelope
cops.pc_mm_error_ec Error-Code
Unsigned 16-bit integer
PacketCable Multimedia PacketCable-Error Error-Code
cops.pc_mm_error_esc Error-code
Unsigned 16-bit integer
PacketCable Multimedia PacketCable-Error Error Sub-code
cops.pc_mm_fs_envelope Envelope
Unsigned 8-bit integer
PacketCable Multimedia Flow Spec Envelope
cops.pc_mm_fs_svc_num Service Number
Unsigned 8-bit integer
PacketCable Multimedia Flow Spec Service Number
cops.pc_mm_gpi Grants Per Interval
Unsigned 8-bit integer
PacketCable Multimedia Grants Per Interval
cops.pc_mm_gs_dscp DSCP/TOS Field
Unsigned 8-bit integer
PacketCable Multimedia GateSpec DSCP/TOS Field
cops.pc_mm_gs_dscp_mask DSCP/TOS Mask
Unsigned 8-bit integer
PacketCable Multimedia GateSpec DSCP/TOS Mask
cops.pc_mm_gs_flags Flags
Unsigned 8-bit integer
PacketCable Multimedia GateSpec Flags
cops.pc_mm_gs_reason Reason
Unsigned 16-bit integer
PacketCable Multimedia Gate State Reason
cops.pc_mm_gs_scid SessionClassID
Unsigned 8-bit integer
PacketCable Multimedia GateSpec SessionClassID
cops.pc_mm_gs_scid_conf SessionClassID Configurable
Unsigned 8-bit integer
PacketCable Multimedia GateSpec SessionClassID Configurable
cops.pc_mm_gs_scid_preempt SessionClassID Preemption
Unsigned 8-bit integer
PacketCable Multimedia GateSpec SessionClassID Preemption
cops.pc_mm_gs_scid_prio SessionClassID Priority
Unsigned 8-bit integer
PacketCable Multimedia GateSpec SessionClassID Priority
cops.pc_mm_gs_state State
Unsigned 16-bit integer
PacketCable Multimedia Gate State
cops.pc_mm_gs_timer_t1 Timer T1
Unsigned 16-bit integer
PacketCable Multimedia GateSpec Timer T1
cops.pc_mm_gs_timer_t2 Timer T2
Unsigned 16-bit integer
PacketCable Multimedia GateSpec Timer T2
cops.pc_mm_gs_timer_t3 Timer T3
Unsigned 16-bit integer
PacketCable Multimedia GateSpec Timer T3
cops.pc_mm_gs_timer_t4 Timer T4
Unsigned 16-bit integer
PacketCable Multimedia GateSpec Timer T4
cops.pc_mm_gti Gate Time Info
Unsigned 32-bit integer
PacketCable Multimedia Gate Time Info
cops.pc_mm_gui Gate Usage Info
Unsigned 32-bit integer
PacketCable Multimedia Gate Usage Info
cops.pc_mm_mdl Maximum Downstream Latency
Unsigned 32-bit integer
PacketCable Multimedia Maximum Downstream Latency
cops.pc_mm_mrtr Minimum Reserved Traffic Rate
Unsigned 32-bit integer
PacketCable Multimedia Committed Envelope Minimum Reserved Traffic Rate
cops.pc_mm_msg_receipt_key Msg Receipt Key
Unsigned 32-bit integer
PacketCable Multimedia Msg Receipt Key
cops.pc_mm_mstr Maximum Sustained Traffic Rate
Unsigned 32-bit integer
PacketCable Multimedia Committed Envelope Maximum Sustained Traffic Rate
cops.pc_mm_mtb Maximum Traffic Burst
Unsigned 32-bit integer
PacketCable Multimedia Committed Envelope Maximum Traffic Burst
cops.pc_mm_ngi Nominal Grant Interval
Unsigned 32-bit integer
PacketCable Multimedia Nominal Grant Interval
cops.pc_mm_npi Nominal Polling Interval
Unsigned 32-bit integer
PacketCable Multimedia Nominal Polling Interval
cops.pc_mm_psid PSID
Unsigned 32-bit integer
PacketCable Multimedia PSID
cops.pc_mm_rtp Request Transmission Policy
Unsigned 32-bit integer
PacketCable Multimedia Committed Envelope Traffic Priority
cops.pc_mm_synch_options_report_type Report Type
Unsigned 8-bit integer
PacketCable Multimedia Synch Options Report Type
cops.pc_mm_synch_options_synch_type Synch Type
Unsigned 8-bit integer
PacketCable Multimedia Synch Options Synch Type
cops.pc_mm_tbul_ul Usage Limit
Unsigned 32-bit integer
PacketCable Multimedia Time-Based Usage Limit
cops.pc_mm_tgj Tolerated Grant Jitter
Unsigned 32-bit integer
PacketCable Multimedia Tolerated Grant Jitter
cops.pc_mm_tp Traffic Priority
Unsigned 8-bit integer
PacketCable Multimedia Committed Envelope Traffic Priority
cops.pc_mm_tpj Tolerated Poll Jitter
Unsigned 32-bit integer
PacketCable Multimedia Tolerated Poll Jitter
cops.pc_mm_ugs Unsolicited Grant Size
Unsigned 16-bit integer
PacketCable Multimedia Unsolicited Grant Size
cops.pc_mm_vbul_ul Usage Limit
Unsigned 64-bit integer
PacketCable Multimedia Volume-Based Usage Limit
cops.pc_mm_vi_major Major Version Number
Unsigned 16-bit integer
PacketCable Multimedia Major Version Number
cops.pc_mm_vi_minor Minor Version Number
Unsigned 16-bit integer
PacketCable Multimedia Minor Version Number
cops.pc_packetcable_err_code Error Code
Unsigned 16-bit integer
Error Code
cops.pc_packetcable_sub_code Error Sub Code
Unsigned 16-bit integer
Error Sub Code
cops.pc_peak_data_rate Peak Data Rate
Peak Data Rate
cops.pc_prks_ip PRKS IP Address
IPv4 address
PRKS IP Address
cops.pc_prks_ip_port PRKS IP Port
Unsigned 16-bit integer
PRKS IP Port
cops.pc_protocol_id Protocol ID
Unsigned 8-bit integer
Protocol ID
cops.pc_reason_code Reason Code
Unsigned 16-bit integer
Reason Code
cops.pc_remote_flags Flags
Unsigned 16-bit integer
Flags
cops.pc_remote_gate_id Remote Gate ID
Unsigned 32-bit integer
Remote Gate ID
cops.pc_reserved Reserved
Unsigned 32-bit integer
Reserved
cops.pc_session_class Session Class
Unsigned 8-bit integer
Session Class
cops.pc_slack_term Slack Term
Unsigned 32-bit integer
Slack Term
cops.pc_spec_rate Rate
Rate
cops.pc_src_ip Source IP Address
IPv4 address
Source IP Address
cops.pc_src_port Source IP Port
Unsigned 16-bit integer
Source IP Port
cops.pc_srks_ip SRKS IP Address
IPv4 address
SRKS IP Address
cops.pc_srks_ip_port SRKS IP Port
Unsigned 16-bit integer
SRKS IP Port
cops.pc_subscriber_id4 Subscriber Identifier (IPv4)
IPv4 address
Subscriber Identifier (IPv4)
cops.pc_subscriber_id6 Subscriber Identifier (IPv6)
IPv6 address
Subscriber Identifier (IPv6)
cops.pc_subtree Object Subtree
No value
Object Subtree
cops.pc_t1_value Timer T1 Value (sec)
Unsigned 16-bit integer
Timer T1 Value (sec)
cops.pc_t7_value Timer T7 Value (sec)
Unsigned 16-bit integer
Timer T7 Value (sec)
cops.pc_t8_value Timer T8 Value (sec)
Unsigned 16-bit integer
Timer T8 Value (sec)
cops.pc_token_bucket_rate Token Bucket Rate
Token Bucket Rate
cops.pc_token_bucket_size Token Bucket Size
Token Bucket Size
cops.pc_transaction_id Transaction Identifier
Unsigned 16-bit integer
Transaction Identifier
cops.pdp.tcp_port TCP Port Number
Unsigned 32-bit integer
TCP Port Number of PDP in PDPRedirAddr/LastPDPAddr object
cops.pdprediraddr.ipv4 IPv4 address
IPv4 address
IPv4 address in COPS PDPRedirAddr object
cops.pdprediraddr.ipv6 IPv6 address
IPv6 address
IPv6 address in COPS PDPRedirAddr object
cops.pepid.id Contents: PEP Id
String
PEP Id in PEPID object
cops.pprid.prefix_id Prefix Identifier
cops.prid.instance_id PRID Instance Identifier
cops.reason Reason
Unsigned 16-bit integer
Reason in Reason object
cops.reason_sub Reason Sub-code
Unsigned 16-bit integer
Reason Sub-code in Reason object
cops.report_type Contents: Report-Type
Unsigned 16-bit integer
Report-Type in Report-Type object
cops.s_num S-Num
Unsigned 8-bit integer
S-Num in COPS-PR Object Header
cops.s_type S-Type
Unsigned 8-bit integer
S-Type in COPS-PR Object Header
cops.ver_flags Version and Flags
Unsigned 8-bit integer
Version and Flags in COPS Common Header
cops.version Version
Unsigned 8-bit integer
Version in COPS Common Header
cups.ptype Type
Unsigned 32-bit integer
cups.state State
Unsigned 8-bit integer
componentstatusprotocol.componentassociation_duration Duration
Unsigned 64-bit integer
componentstatusprotocol.componentassociation_flags Flags
Unsigned 16-bit integer
componentstatusprotocol.componentassociation_ppid PPID
Unsigned 32-bit integer
componentstatusprotocol.componentassociation_protocolid ProtocolID
Unsigned 16-bit integer
componentstatusprotocol.componentassociation_receiverid ReceiverID
Unsigned 64-bit integer
componentstatusprotocol.componentstatusreport_AssociationArray AssociationArray
Unsigned 32-bit integer
componentstatusprotocol.componentstatusreport_associations Associations
Unsigned 16-bit integer
componentstatusprotocol.componentstatusreport_location Location
String
componentstatusprotocol.componentstatusreport_reportinterval ReportInterval
Unsigned 32-bit integer
componentstatusprotocol.componentstatusreport_status Status
String
componentstatusprotocol.componentstatusreport_workload Workload
Unsigned 16-bit integer
componentstatusprotocol.message_flags Flags
Unsigned 8-bit integer
componentstatusprotocol.message_length Length
Unsigned 16-bit integer
componentstatusprotocol.message_senderid SenderID
Unsigned 64-bit integer
componentstatusprotocol.message_sendertimestamp SenderTimeStamp
Unsigned 64-bit integer
componentstatusprotocol.message_type Type
Unsigned 8-bit integer
componentstatusprotocol.message_version Version
Unsigned 32-bit integer
cdt.CompressedData CompressedData
No value
cdt.CompressedData
cdt.algorithmID_OID algorithmID-OID
cdt.OBJECT_IDENTIFIER
cdt.algorithmID_ShortForm algorithmID-ShortForm
Signed 32-bit integer
cdt.AlgorithmID_ShortForm
cdt.compressedContent compressedContent
Byte array
cdt.CompressedContent
cdt.compressedContentInfo compressedContentInfo
No value
cdt.CompressedContentInfo
cdt.compressionAlgorithm compressionAlgorithm
Unsigned 32-bit integer
cdt.CompressionAlgorithmIdentifier
cdt.contentType contentType
Unsigned 32-bit integer
cdt.T_contentType
cdt.contentType_OID contentType-OID
cdt.T_contentType_OID
cdt.contentType_ShortForm contentType-ShortForm
Signed 32-bit integer
cdt.ContentType_ShortForm
image-gif.end Trailer (End of the GIF stream)
No value
This byte tells the decoder that the data stream is finished.
image-gif.extension Extension
No value
Extension.
image-gif.extension.label Extension label
Unsigned 8-bit integer
Extension label.
image-gif.global.bpp Image bits per pixel minus 1
Unsigned 8-bit integer
The number of bits per pixel is one plus the field value.
image-gif.global.color_bpp Bits per color minus 1
Unsigned 8-bit integer
The number of bits per color is one plus the field value.
image-gif.global.color_map Global color map
Byte array
Global color map.
image-gif.global.color_map.ordered Global color map is ordered
Unsigned 8-bit integer
Indicates whether the global color map is ordered.
image-gif.global.color_map.present Global color map is present
Unsigned 8-bit integer
Indicates if the global color map is present
image-gif.global.pixel_aspect_ratio Global pixel aspect ratio
Unsigned 8-bit integer
Gives an approximate value of the aspect ratio of the pixels.
image-gif.image Image
No value
Image.
image-gif.image.code_size LZW minimum code size
Unsigned 8-bit integer
Minimum code size for the LZW compression.
image-gif.image.height Image height
Unsigned 16-bit integer
Image height.
image-gif.image.left Image left position
Unsigned 16-bit integer
Offset between left of Screen and left of Image.
image-gif.image.top Image top position
Unsigned 16-bit integer
Offset between top of Screen and top of Image.
image-gif.image.width Image width
Unsigned 16-bit integer
Image width.
image-gif.image_background_index Background color index
Unsigned 8-bit integer
Index of the background color in the color map.
image-gif.local.bpp Image bits per pixel minus 1
Unsigned 8-bit integer
The number of bits per pixel is one plus the field value.
image-gif.local.color_bpp Bits per color minus 1
Unsigned 8-bit integer
The number of bits per color is one plus the field value.
image-gif.local.color_map Local color map
Byte array
Local color map.
image-gif.local.color_map.ordered Local color map is ordered
Unsigned 8-bit integer
Indicates whether the local color map is ordered.
image-gif.local.color_map.present Local color map is present
Unsigned 8-bit integer
Indicates if the local color map is present
image-gif.screen.height Screen height
Unsigned 16-bit integer
Screen height
image-gif.screen.width Screen width
Unsigned 16-bit integer
Screen width
image-gif.version Version
String
GIF Version
cimd.aoi Alphanumeric Originating Address
String
CIMD Alphanumeric Originating Address
cimd.ce Cancel Enabled
String
CIMD Cancel Enabled
cimd.chksum Checksum
Unsigned 8-bit integer
CIMD Checksum
cimd.cm Cancel Mode
String
CIMD Cancel Mode
cimd.da Destination Address
String
CIMD Destination Address
cimd.dcs Data Coding Scheme
Unsigned 8-bit integer
CIMD Data Coding Scheme
cimd.dcs.cf Compressed
Unsigned 8-bit integer
CIMD DCS Compressed Flag
cimd.dcs.cg Coding Group
Unsigned 8-bit integer
CIMD DCS Coding Group
cimd.dcs.chs Character Set
Unsigned 8-bit integer
CIMD DCS Character Set
cimd.dcs.is Indication Sense
Unsigned 8-bit integer
CIMD DCS Indication Sense
cimd.dcs.it Indication Type
Unsigned 8-bit integer
CIMD DCS Indication Type
cimd.dcs.mc Message Class
Unsigned 8-bit integer
CIMD DCS Message Class
cimd.dcs.mcm Message Class Meaning
Unsigned 8-bit integer
CIMD DCS Message Class Meaning Flag
cimd.drmode Delivery Request Mode
String
CIMD Delivery Request Mode
cimd.dt Discharge Time
String
CIMD Discharge Time
cimd.errcode Error Code
String
CIMD Error Code
cimd.errtext Error Text
String
CIMD Error Text
cimd.fdta First Delivery Time Absolute
String
CIMD First Delivery Time Absolute
cimd.fdtr First Delivery Time Relative
String
CIMD First Delivery Time Relative
cimd.gpar Get Parameter
String
CIMD Get Parameter
cimd.mcount Message Count
String
CIMD Message Count
cimd.mms More Messages To Send
String
CIMD More Messages To Send
cimd.oa Originating Address
String
CIMD Originating Address
cimd.oimsi Originating IMSI
String
CIMD Originating IMSI
cimd.opcode Operation Code
Unsigned 8-bit integer
CIMD Operation Code
cimd.ovma Originated Visited MSC Address
String
CIMD Originated Visited MSC Address
cimd.passwd Password
String
CIMD Password
cimd.pcode Code
String
CIMD Parameter Code
cimd.pi Protocol Identifier
String
CIMD Protocol Identifier
cimd.pnumber Packet Number
Unsigned 8-bit integer
CIMD Packet Number
cimd.priority Priority
String
CIMD Priority
cimd.rpath Reply Path
String
CIMD Reply Path
cimd.saddr Subaddress
String
CIMD Subaddress
cimd.scaddr Service Center Address
String
CIMD Service Center Address
cimd.scts Service Centre Time Stamp
String
CIMD Service Centre Time Stamp
cimd.sdes Service Description
String
CIMD Service Description
cimd.smsct SMS Center Time
String
CIMD SMS Center Time
cimd.srr Status Report Request
String
CIMD Status Report Request
cimd.stcode Status Code
String
CIMD Status Code
cimd.sterrcode Status Error Code
String
CIMD Status Error Code
cimd.tclass Tariff Class
String
CIMD Tariff Class
cimd.ud User Data
String
CIMD User Data
cimd.udb User Data Binary
String
CIMD User Data Binary
cimd.udh User Data Header
String
CIMD User Data Header
cimd.ui User Identity
String
CIMD User Identity
cimd.vpa Validity Period Absolute
String
CIMD Validity Period Absolute
cimd.vpr Validity Period Relative
String
CIMD Validity Period Relative
cimd.ws Window Size
String
CIMD Window Size
loop.forwarding_address Forwarding address
6-byte Hardware (MAC) Address
loop.function Function
Unsigned 16-bit integer
loop.receipt_number Receipt number
Unsigned 16-bit integer
loop.skipcount skipCount
Unsigned 16-bit integer
cfpi.word_two Word two
Unsigned 32-bit integer
cpfi.EOFtype EOFtype
Unsigned 32-bit integer
EOF Type
cpfi.OPMerror OPMerror
Boolean
OPM Error?
cpfi.SOFtype SOFtype
Unsigned 32-bit integer
SOF Type
cpfi.board Board
Byte array
cpfi.crc-32 CRC-32
Unsigned 32-bit integer
cpfi.dstTDA dstTDA
Unsigned 32-bit integer
Source TDA (10 bits)
cpfi.dst_board Destination Board
Byte array
cpfi.dst_instance Destination Instance
Byte array
cpfi.dst_port Destination Port
Byte array
cpfi.frmtype FrmType
Unsigned 32-bit integer
Frame Type
cpfi.fromLCM fromLCM
Boolean
from LCM?
cpfi.instance Instance
Byte array
cpfi.port Port
Byte array
cpfi.speed speed
Unsigned 32-bit integer
SOF Type
cpfi.srcTDA srcTDA
Unsigned 32-bit integer
Source TDA (10 bits)
cpfi.src_board Source Board
Byte array
cpfi.src_instance Source Instance
Byte array
cpfi.src_port Source Port
Byte array
cpfi.word_one Word one
Unsigned 32-bit integer
cms.AuthAttributes_item Item
No value
cms.Attribute
cms.AuthenticatedData AuthenticatedData
No value
cms.AuthenticatedData
cms.CertificateRevocationLists_item Item
No value
x509af.CertificateList
cms.CertificateSet_item Item
Unsigned 32-bit integer
cms.CertificateChoices
cms.ContentInfo ContentInfo
No value
cms.ContentInfo
cms.ContentType ContentType
cms.ContentType
cms.Countersignature Countersignature
No value
cms.Countersignature
cms.DigestAlgorithmIdentifiers_item Item
No value
cms.DigestAlgorithmIdentifier
cms.DigestedData DigestedData
No value
cms.DigestedData
cms.EncryptedData EncryptedData
No value
cms.EncryptedData
cms.EnvelopedData EnvelopedData
No value
cms.EnvelopedData
cms.IssuerAndSerialNumber IssuerAndSerialNumber
No value
cms.IssuerAndSerialNumber
cms.MessageDigest MessageDigest
Byte array
cms.MessageDigest
cms.RC2CBCParameters RC2CBCParameters
Unsigned 32-bit integer
cms.RC2CBCParameters
cms.RC2WrapParameter RC2WrapParameter
Signed 32-bit integer
cms.RC2WrapParameter
cms.RecipientEncryptedKeys_item Item
No value
cms.RecipientEncryptedKey
cms.RecipientInfos_item Item
Unsigned 32-bit integer
cms.RecipientInfo
cms.SMIMECapabilities SMIMECapabilities
Unsigned 32-bit integer
cms.SMIMECapabilities
cms.SMIMECapabilities_item Item
No value
cms.SMIMECapability
cms.SMIMEEncryptionKeyPreference SMIMEEncryptionKeyPreference
Unsigned 32-bit integer
cms.SMIMEEncryptionKeyPreference
cms.SignedAttributes_item Item
No value
cms.Attribute
cms.SignedData SignedData
No value
cms.SignedData
cms.SignerInfos_item Item
No value
cms.SignerInfo
cms.SigningTime SigningTime
Unsigned 32-bit integer
cms.SigningTime
cms.UnauthAttributes_item Item
No value
cms.Attribute
cms.UnprotectedAttributes_item Item
No value
cms.Attribute
cms.UnsignedAttributes_item Item
No value
cms.Attribute
cms.algorithm algorithm
No value
x509af.AlgorithmIdentifier
cms.attrCert attrCert
No value
x509af.AttributeCertificate
cms.attrType attrType
cms.T_attrType
cms.attrValues attrValues
Unsigned 32-bit integer
cms.SET_OF_AttributeValue
cms.attrValues_item Item
No value
cms.AttributeValue
cms.attributes attributes
Unsigned 32-bit integer
cms.UnauthAttributes
cms.authenticatedAttributes authenticatedAttributes
Unsigned 32-bit integer
cms.AuthAttributes
cms.capability capability
cms.T_capability
cms.certificate certificate
No value
x509af.Certificate
cms.certificates certificates
Unsigned 32-bit integer
cms.CertificateSet
cms.certs certs
Unsigned 32-bit integer
cms.CertificateSet
cms.content content
No value
cms.T_content
cms.contentEncryptionAlgorithm contentEncryptionAlgorithm
No value
cms.ContentEncryptionAlgorithmIdentifier
cms.contentInfo.contentType contentType
ContentType
cms.contentType contentType
cms.ContentType
cms.crls crls
Unsigned 32-bit integer
cms.CertificateRevocationLists
cms.date date
String
cms.GeneralizedTime
cms.digest digest
Byte array
cms.Digest
cms.digestAlgorithm digestAlgorithm
No value
cms.DigestAlgorithmIdentifier
cms.digestAlgorithms digestAlgorithms
Unsigned 32-bit integer
cms.DigestAlgorithmIdentifiers
cms.eContent eContent
Byte array
cms.T_eContent
cms.eContentType eContentType
cms.ContentType
cms.encapContentInfo encapContentInfo
No value
cms.EncapsulatedContentInfo
cms.encryptedContent encryptedContent
Byte array
cms.EncryptedContent
cms.encryptedContentInfo encryptedContentInfo
No value
cms.EncryptedContentInfo
cms.encryptedKey encryptedKey
Byte array
cms.EncryptedKey
cms.extendedCertificate extendedCertificate
No value
cms.ExtendedCertificate
cms.extendedCertificateInfo extendedCertificateInfo
No value
cms.ExtendedCertificateInfo
cms.generalTime generalTime
String
cms.GeneralizedTime
cms.issuer issuer
Unsigned 32-bit integer
x509if.Name
cms.issuerAndSerialNumber issuerAndSerialNumber
No value
cms.IssuerAndSerialNumber
cms.iv iv
Byte array
cms.OCTET_STRING
cms.kari kari
No value
cms.KeyAgreeRecipientInfo
cms.kekid kekid
No value
cms.KEKIdentifier
cms.kekri kekri
No value
cms.KEKRecipientInfo
cms.keyAttr keyAttr
No value
cms.T_keyAttr
cms.keyAttrId keyAttrId
cms.T_keyAttrId
cms.keyEncryptionAlgorithm keyEncryptionAlgorithm
No value
cms.KeyEncryptionAlgorithmIdentifier
cms.keyIdentifier keyIdentifier
Byte array
cms.OCTET_STRING
cms.ktri ktri
No value
cms.KeyTransRecipientInfo
cms.mac mac
Byte array
cms.MessageAuthenticationCode
cms.macAlgorithm macAlgorithm
No value
cms.MessageAuthenticationCodeAlgorithm
cms.originator originator
Unsigned 32-bit integer
cms.OriginatorIdentifierOrKey
cms.originatorInfo originatorInfo
No value
cms.OriginatorInfo
cms.originatorKey originatorKey
No value
cms.OriginatorPublicKey
cms.other other
No value
cms.OtherKeyAttribute
cms.parameters parameters
No value
cms.T_parameters
cms.publicKey publicKey
Byte array
cms.BIT_STRING
cms.rKeyId rKeyId
No value
cms.RecipientKeyIdentifier
cms.rc2CBCParameter rc2CBCParameter
No value
cms.RC2CBCParameter
cms.rc2ParameterVersion rc2ParameterVersion
Signed 32-bit integer
cms.INTEGER
cms.rc2WrapParameter rc2WrapParameter
Signed 32-bit integer
cms.RC2WrapParameter
cms.recipientEncryptedKeys recipientEncryptedKeys
Unsigned 32-bit integer
cms.RecipientEncryptedKeys
cms.recipientInfos recipientInfos
Unsigned 32-bit integer
cms.RecipientInfos
cms.recipientKeyId recipientKeyId
No value
cms.RecipientKeyIdentifier
cms.rid rid
Unsigned 32-bit integer
cms.RecipientIdentifier
cms.serialNumber serialNumber
Signed 32-bit integer
x509af.CertificateSerialNumber
cms.sid sid
Unsigned 32-bit integer
cms.SignerIdentifier
cms.signature signature
Byte array
cms.SignatureValue
cms.signatureAlgorithm signatureAlgorithm
No value
cms.SignatureAlgorithmIdentifier
cms.signedAttrs signedAttrs
Unsigned 32-bit integer
cms.SignedAttributes
cms.signerInfos signerInfos
Unsigned 32-bit integer
cms.SignerInfos
cms.subjectAltKeyIdentifier subjectAltKeyIdentifier
Byte array
cms.SubjectKeyIdentifier
cms.subjectKeyIdentifier subjectKeyIdentifier
Byte array
cms.SubjectKeyIdentifier
cms.ukm ukm
Byte array
cms.UserKeyingMaterial
cms.unauthenticatedAttributes unauthenticatedAttributes
Unsigned 32-bit integer
cms.UnauthAttributes
cms.unprotectedAttrs unprotectedAttrs
Unsigned 32-bit integer
cms.UnprotectedAttributes
cms.unsignedAttrs unsignedAttrs
Unsigned 32-bit integer
cms.UnsignedAttributes
cms.utcTime utcTime
String
cms.UTCTime
cms.version version
Signed 32-bit integer
cms.CMSVersion
bossvr.opnum Operation
Unsigned 16-bit integer
Operation
ubikdisk.opnum Operation
Unsigned 16-bit integer
Operation
ubikvote.opnum Operation
Unsigned 16-bit integer
Operation
afsNetAddr.data IP Data
Unsigned 8-bit integer
afsNetAddr.type Type
Unsigned 16-bit integer
fileexp.NameString_principal Principal Name
String
fileexp.TaggedPath_tp_chars AFS Tagged Path
String
fileexp.TaggedPath_tp_tag AFS Tagged Path Name
Unsigned 32-bit integer
fileexp.accesstime_msec fileexp.accesstime_msec
Unsigned 32-bit integer
fileexp.accesstime_sec fileexp.accesstime_sec
Unsigned 32-bit integer
fileexp.acl_len Acl Length
Unsigned 32-bit integer
fileexp.aclexpirationtime fileexp.aclexpirationtime
Unsigned 32-bit integer
fileexp.acltype fileexp.acltype
Unsigned 32-bit integer
fileexp.afsFid.Unique Unique
Unsigned 32-bit integer
afsFid Unique
fileexp.afsFid.Vnode Vnode
Unsigned 32-bit integer
afsFid Vnode
fileexp.afsFid.cell_high Cell High
Unsigned 32-bit integer
afsFid Cell High
fileexp.afsFid.cell_low Cell Low
Unsigned 32-bit integer
afsFid Cell Low
fileexp.afsFid.volume_high Volume High
Unsigned 32-bit integer
afsFid Volume High
fileexp.afsFid.volume_low Volume Low
Unsigned 32-bit integer
afsFid Volume Low
fileexp.afsTaggedPath_length Tagged Path Length
Unsigned 32-bit integer
fileexp.afsacl_uuid1 AFS ACL UUID1
UUID
fileexp.afserrortstatus_st AFS Error Code
Unsigned 32-bit integer
fileexp.afsreturndesc_tokenid_high Tokenid High
Unsigned 32-bit integer
fileexp.afsreturndesc_tokenid_low Tokenid low
Unsigned 32-bit integer
fileexp.agtypeunique fileexp.agtypeunique
Unsigned 32-bit integer
fileexp.anonymousaccess fileexp.anonymousaccess
Unsigned 32-bit integer
fileexp.author fileexp.author
Unsigned 32-bit integer
fileexp.beginrange fileexp.beginrange
Unsigned 32-bit integer
fileexp.beginrangeext fileexp.beginrangeext
Unsigned 32-bit integer
fileexp.blocksused fileexp.blocksused
Unsigned 32-bit integer
fileexp.bulkfetchkeepalive_spare1 BulkFetch KeepAlive spare1
Unsigned 32-bit integer
fileexp.bulkfetchkeepalive_spare2 BulkKeepAlive spare4
Unsigned 32-bit integer
fileexp.bulkfetchstatus_size BulkFetchStatus Size
Unsigned 32-bit integer
fileexp.bulkfetchvv_numvols fileexp.bulkfetchvv_numvols
Unsigned 32-bit integer
fileexp.bulkfetchvv_spare1 fileexp.bulkfetchvv_spare1
Unsigned 32-bit integer
fileexp.bulkfetchvv_spare2 fileexp.bulkfetchvv_spare2
Unsigned 32-bit integer
fileexp.bulkkeepalive_numexecfids BulkKeepAlive numexecfids
Unsigned 32-bit integer
fileexp.calleraccess fileexp.calleraccess
Unsigned 32-bit integer
fileexp.cellidp_high cellidp high
Unsigned 32-bit integer
fileexp.cellidp_low cellidp low
Unsigned 32-bit integer
fileexp.changetime_msec fileexp.changetime_msec
Unsigned 32-bit integer
fileexp.changetime_sec fileexp.changetime_sec
Unsigned 32-bit integer
fileexp.clientspare1 fileexp.clientspare1
Unsigned 32-bit integer
fileexp.dataversion_high fileexp.dataversion_high
Unsigned 32-bit integer
fileexp.dataversion_low fileexp.dataversion_low
Unsigned 32-bit integer
fileexp.defaultcell_uuid Default Cell UUID
UUID
fileexp.devicenumber fileexp.devicenumber
Unsigned 32-bit integer
fileexp.devicenumberhighbits fileexp.devicenumberhighbits
Unsigned 32-bit integer
fileexp.endrange fileexp.endrange
Unsigned 32-bit integer
fileexp.endrangeext fileexp.endrangeext
Unsigned 32-bit integer
fileexp.expirationtime fileexp.expirationtime
Unsigned 32-bit integer
fileexp.fetchdata_pipe_t_size FetchData Pipe_t size
String
fileexp.filetype fileexp.filetype
Unsigned 32-bit integer
fileexp.flags DFS Flags
Unsigned 32-bit integer
fileexp.fstype Filetype
Unsigned 32-bit integer
fileexp.gettime.syncdistance SyncDistance
Unsigned 32-bit integer
fileexp.gettime_secondsp GetTime secondsp
Unsigned 32-bit integer
fileexp.gettime_syncdispersion GetTime Syncdispersion
Unsigned 32-bit integer
fileexp.gettime_usecondsp GetTime usecondsp
Unsigned 32-bit integer
fileexp.group fileexp.group
Unsigned 32-bit integer
fileexp.himaxspare fileexp.himaxspare
Unsigned 32-bit integer
fileexp.interfaceversion fileexp.interfaceversion
Unsigned 32-bit integer
fileexp.l_end_pos fileexp.l_end_pos
Unsigned 32-bit integer
fileexp.l_end_pos_ext fileexp.l_end_pos_ext
Unsigned 32-bit integer
fileexp.l_fstype fileexp.l_fstype
Unsigned 32-bit integer
fileexp.l_pid fileexp.l_pid
Unsigned 32-bit integer
fileexp.l_start_pos fileexp.l_start_pos
Unsigned 32-bit integer
fileexp.l_start_pos_ext fileexp.l_start_pos_ext
Unsigned 32-bit integer
fileexp.l_sysid fileexp.l_sysid
Unsigned 32-bit integer
fileexp.l_type fileexp.l_type
Unsigned 32-bit integer
fileexp.l_whence fileexp.l_whence
Unsigned 32-bit integer
fileexp.length Length
Unsigned 32-bit integer
fileexp.length_high fileexp.length_high
Unsigned 32-bit integer
fileexp.length_low fileexp.length_low
Unsigned 32-bit integer
fileexp.linkcount fileexp.linkcount
Unsigned 32-bit integer
fileexp.lomaxspare fileexp.lomaxspare
Unsigned 32-bit integer
fileexp.minvvp_high fileexp.minvvp_high
Unsigned 32-bit integer
fileexp.minvvp_low fileexp.minvvp_low
Unsigned 32-bit integer
fileexp.mode fileexp.mode
Unsigned 32-bit integer
fileexp.modtime_msec fileexp.modtime_msec
Unsigned 32-bit integer
fileexp.modtime_sec fileexp.modtime_sec
Unsigned 32-bit integer
fileexp.nextoffset_high next offset high
Unsigned 32-bit integer
fileexp.nextoffset_low next offset low
Unsigned 32-bit integer
fileexp.objectuuid fileexp.objectuuid
UUID
fileexp.offset_high offset high
Unsigned 32-bit integer
fileexp.opnum Operation
Unsigned 16-bit integer
Operation
fileexp.owner fileexp.owner
Unsigned 32-bit integer
fileexp.parentunique fileexp.parentunique
Unsigned 32-bit integer
fileexp.parentvnode fileexp.parentvnode
Unsigned 32-bit integer
fileexp.pathconfspare fileexp.pathconfspare
Unsigned 32-bit integer
fileexp.position_high Position High
Unsigned 32-bit integer
fileexp.position_low Position Low
Unsigned 32-bit integer
fileexp.principalName_size Principal Name Size
Unsigned 32-bit integer
fileexp.principalName_size2 Principal Name Size2
Unsigned 32-bit integer
fileexp.readdir.size Readdir Size
Unsigned 32-bit integer
fileexp.returntokenidp_high return token idp high
Unsigned 32-bit integer
fileexp.returntokenidp_low return token idp low
Unsigned 32-bit integer
fileexp.servermodtime_msec fileexp.servermodtime_msec
Unsigned 32-bit integer
fileexp.servermodtime_sec fileexp.servermodtime_sec
Unsigned 32-bit integer
fileexp.setcontext.parm7 Parm7:
Unsigned 32-bit integer
fileexp.setcontext_clientsizesattrs ClientSizeAttrs:
Unsigned 32-bit integer
fileexp.setcontext_rqst_epochtime EpochTime:
Date/Time stamp
fileexp.setcontext_secobjextid SetObjectid:
String
UUID
fileexp.spare4 fileexp.spare4
Unsigned 32-bit integer
fileexp.spare5 fileexp.spare5
Unsigned 32-bit integer
fileexp.spare6 fileexp.spare6
Unsigned 32-bit integer
fileexp.st AFS4Int Error Status Code
Unsigned 32-bit integer
fileexp.storestatus_accesstime_sec fileexp.storestatus_accesstime_sec
Unsigned 32-bit integer
fileexp.storestatus_accesstime_usec fileexp.storestatus_accesstime_usec
Unsigned 32-bit integer
fileexp.storestatus_changetime_sec fileexp.storestatus_changetime_sec
Unsigned 32-bit integer
fileexp.storestatus_changetime_usec fileexp.storestatus_changetime_usec
Unsigned 32-bit integer
fileexp.storestatus_clientspare1 fileexp.storestatus_clientspare1
Unsigned 32-bit integer
fileexp.storestatus_cmask fileexp.storestatus_cmask
Unsigned 32-bit integer
fileexp.storestatus_devicenumber fileexp.storestatus_devicenumber
Unsigned 32-bit integer
fileexp.storestatus_devicenumberhighbits fileexp.storestatus_devicenumberhighbits
Unsigned 32-bit integer
fileexp.storestatus_devicetype fileexp.storestatus_devicetype
Unsigned 32-bit integer
fileexp.storestatus_group fileexp.storestatus_group
Unsigned 32-bit integer
fileexp.storestatus_length_high fileexp.storestatus_length_high
Unsigned 32-bit integer
fileexp.storestatus_length_low fileexp.storestatus_length_low
Unsigned 32-bit integer
fileexp.storestatus_mask fileexp.storestatus_mask
Unsigned 32-bit integer
fileexp.storestatus_mode fileexp.storestatus_mode
Unsigned 32-bit integer
fileexp.storestatus_modtime_sec fileexp.storestatus_modtime_sec
Unsigned 32-bit integer
fileexp.storestatus_modtime_usec fileexp.storestatus_modtime_usec
Unsigned 32-bit integer
fileexp.storestatus_owner fileexp.storestatus_owner
Unsigned 32-bit integer
fileexp.storestatus_spare1 fileexp.storestatus_spare1
Unsigned 32-bit integer
fileexp.storestatus_spare2 fileexp.storestatus_spare2
Unsigned 32-bit integer
fileexp.storestatus_spare3 fileexp.storestatus_spare3
Unsigned 32-bit integer
fileexp.storestatus_spare4 fileexp.storestatus_spare4
Unsigned 32-bit integer
fileexp.storestatus_spare5 fileexp.storestatus_spare5
Unsigned 32-bit integer
fileexp.storestatus_spare6 fileexp.storestatus_spare6
Unsigned 32-bit integer
fileexp.storestatus_trunc_high fileexp.storestatus_trunc_high
Unsigned 32-bit integer
fileexp.storestatus_trunc_low fileexp.storestatus_trunc_low
Unsigned 32-bit integer
fileexp.storestatus_typeuuid fileexp.storestatus_typeuuid
UUID
fileexp.string String
String
fileexp.tn_length fileexp.tn_length
Unsigned 16-bit integer
fileexp.tn_size String Size
Unsigned 32-bit integer
fileexp.tn_tag fileexp.tn_tag
Unsigned 32-bit integer
fileexp.tokenid_hi fileexp.tokenid_hi
Unsigned 32-bit integer
fileexp.tokenid_low fileexp.tokenid_low
Unsigned 32-bit integer
fileexp.type_hi fileexp.type_hi
Unsigned 32-bit integer
fileexp.type_high Type high
Unsigned 32-bit integer
fileexp.type_low fileexp.type_low
Unsigned 32-bit integer
fileexp.typeuuid fileexp.typeuuid
UUID
fileexp.uint fileexp.uint
Unsigned 32-bit integer
fileexp.unique fileexp.unique
Unsigned 32-bit integer
fileexp.uuid AFS UUID
UUID
fileexp.vnode fileexp.vnode
Unsigned 32-bit integer
fileexp.volid_hi fileexp.volid_hi
Unsigned 32-bit integer
fileexp.volid_low fileexp.volid_low
Unsigned 32-bit integer
fileexp.volume_high fileexp.volume_high
Unsigned 32-bit integer
fileexp.volume_low fileexp.volume_low
Unsigned 32-bit integer
fileexp.vv_hi fileexp.vv_hi
Unsigned 32-bit integer
fileexp.vv_low fileexp.vv_low
Unsigned 32-bit integer
fileexp.vvage fileexp.vvage
Unsigned 32-bit integer
fileexp.vvpingage fileexp.vvpingage
Unsigned 32-bit integer
fileexp.vvspare1 fileexp.vvspare1
Unsigned 32-bit integer
fileexp.vvspare2 fileexp.vvspare2
Unsigned 32-bit integer
hf_afsconnparams_mask hf_afsconnparams_mask
Unsigned 32-bit integer
hf_afsconnparams_values hf_afsconnparams_values
Unsigned 32-bit integer
fldb.NameString_principal Principal Name
String
fldb.afsnetaddr.data IP Data
Unsigned 8-bit integer
fldb.afsnetaddr.type Type
Unsigned 16-bit integer
fldb.createentry_rqst_key_size Volume Size
Unsigned 32-bit integer
fldb.createentry_rqst_key_t Volume
String
fldb.creationquota creation quota
Unsigned 32-bit integer
fldb.creationuses creation uses
Unsigned 32-bit integer
fldb.deletedflag deletedflag
Unsigned 32-bit integer
fldb.deleteentry_rqst_fsid_high FSID deleteentry Hi
Unsigned 32-bit integer
fldb.deleteentry_rqst_fsid_low FSID deleteentry Low
Unsigned 32-bit integer
fldb.deleteentry_rqst_voloper voloper
Unsigned 32-bit integer
fldb.deleteentry_rqst_voltype voltype
Unsigned 32-bit integer
fldb.error_st Error Status 2
Unsigned 32-bit integer
fldb.flagsp flagsp
Unsigned 32-bit integer
fldb.getentrybyid_rqst_fsid_high FSID deleteentry Hi
Unsigned 32-bit integer
fldb.getentrybyid_rqst_fsid_low FSID getentrybyid Low
Unsigned 32-bit integer
fldb.getentrybyid_rqst_voloper voloper
Unsigned 32-bit integer
fldb.getentrybyid_rqst_voltype voltype
Unsigned 32-bit integer
fldb.getentrybyname_resp_cloneid_high fldb_getentrybyname_resp_cloneid_high
Unsigned 32-bit integer
fldb.getentrybyname_resp_cloneid_low fldb_getentrybyname_resp_cloneid_low
Unsigned 32-bit integer
fldb.getentrybyname_resp_defaultmaxreplat fldb_getentrybyname_resp_defaultmaxreplat
Unsigned 32-bit integer
fldb.getentrybyname_resp_flags fldb_getentrybyname_resp_flags
Unsigned 32-bit integer
fldb.getentrybyname_resp_hardmaxtotlat fldb_getentrybyname_resp_hardmaxtotlat
Unsigned 32-bit integer
fldb.getentrybyname_resp_key_size fldb_getentrybyname_resp_key_size
Unsigned 32-bit integer
fldb.getentrybyname_resp_key_t fldb_getentrybyname_resp_key_t
String
fldb.getentrybyname_resp_maxtotallat fldb_getentrybyname_resp_maxtotallat
Unsigned 32-bit integer
fldb.getentrybyname_resp_minpouncedally fldb_getentrybyname_resp_minpouncedally
Unsigned 32-bit integer
fldb.getentrybyname_resp_numservers fldb_getentrybyname_resp_numservers
Unsigned 32-bit integer
fldb.getentrybyname_resp_reclaimdally fldb_getentrybyname_resp_reclaimdally
Unsigned 32-bit integer
fldb.getentrybyname_resp_sitecookies fldb_getentrybyname_resp_sitecookies
Unsigned 32-bit integer
fldb.getentrybyname_resp_siteflags fldb_getentrybyname_resp_siteflags
Unsigned 32-bit integer
fldb.getentrybyname_resp_sitemaxreplat fldb_getentrybyname_resp_sitemaxreplat
Unsigned 32-bit integer
fldb.getentrybyname_resp_sitepartition fldb_getentrybyname_resp_sitepartition
Unsigned 32-bit integer
fldb.getentrybyname_resp_spare1 fldb_getentrybyname_resp_spare1
Unsigned 32-bit integer
fldb.getentrybyname_resp_spare2 fldb_getentrybyname_resp_spare2
Unsigned 32-bit integer
fldb.getentrybyname_resp_spare3 fldb_getentrybyname_resp_spare3
Unsigned 32-bit integer
fldb.getentrybyname_resp_spare4 fldb_getentrybyname_resp_spare4
Unsigned 32-bit integer
fldb.getentrybyname_resp_test fldb_getentrybyname_resp_test
Unsigned 8-bit integer
fldb.getentrybyname_resp_volid_high fldb_getentrybyname_resp_volid_high
Unsigned 32-bit integer
fldb.getentrybyname_resp_volid_low fldb_getentrybyname_resp_volid_low
Unsigned 32-bit integer
fldb.getentrybyname_resp_voltype fldb_getentrybyname_resp_voltype
Unsigned 32-bit integer
fldb.getentrybyname_resp_volumetype fldb_getentrybyname_resp_volumetype
Unsigned 32-bit integer
fldb.getentrybyname_resp_whenlocked fldb_getentrybyname_resp_whenlocked
Unsigned 32-bit integer
fldb.getentrybyname_rqst_key_size getentrybyname
Unsigned 32-bit integer
fldb.getentrybyname_rqst_var1 getentrybyname var1
Unsigned 32-bit integer
fldb.listentry_resp_count Count
Unsigned 32-bit integer
fldb.listentry_resp_key_size Key Size
Unsigned 32-bit integer
fldb.listentry_resp_key_size2 key_size2
Unsigned 32-bit integer
fldb.listentry_resp_key_t Volume
String
fldb.listentry_resp_key_t2 Server
String
fldb.listentry_resp_next_index Next Index
Unsigned 32-bit integer
fldb.listentry_resp_voltype VolType
Unsigned 32-bit integer
fldb.listentry_rqst_previous_index Previous Index
Unsigned 32-bit integer
fldb.listentry_rqst_var1 Var 1
Unsigned 32-bit integer
fldb.namestring_size namestring size
Unsigned 32-bit integer
fldb.nextstartp nextstartp
Unsigned 32-bit integer
fldb.numwanted number wanted
Unsigned 32-bit integer
fldb.opnum Operation
Unsigned 16-bit integer
Operation
fldb.principalName_size Principal Name Size
Unsigned 32-bit integer
fldb.principalName_size2 Principal Name Size2
Unsigned 32-bit integer
fldb.releaselock_rqst_fsid_high FSID releaselock Hi
Unsigned 32-bit integer
fldb.releaselock_rqst_fsid_low FSID releaselock Low
Unsigned 32-bit integer
fldb.releaselock_rqst_voloper voloper
Unsigned 32-bit integer
fldb.releaselock_rqst_voltype voltype
Unsigned 32-bit integer
fldb.replaceentry_resp_st Error
Unsigned 32-bit integer
fldb.replaceentry_resp_st2 Error
Unsigned 32-bit integer
fldb.replaceentry_rqst_fsid_high FSID replaceentry Hi
Unsigned 32-bit integer
fldb.replaceentry_rqst_fsid_low FSID replaceentry Low
Unsigned 32-bit integer
fldb.replaceentry_rqst_key_size Key Size
Unsigned 32-bit integer
fldb.replaceentry_rqst_key_t Key
String
fldb.replaceentry_rqst_voltype voltype
Unsigned 32-bit integer
fldb.setlock_resp_st Error
Unsigned 32-bit integer
fldb.setlock_resp_st2 Error
Unsigned 32-bit integer
fldb.setlock_rqst_fsid_high FSID setlock Hi
Unsigned 32-bit integer
fldb.setlock_rqst_fsid_low FSID setlock Low
Unsigned 32-bit integer
fldb.setlock_rqst_voloper voloper
Unsigned 32-bit integer
fldb.setlock_rqst_voltype voltype
Unsigned 32-bit integer
fldb.spare2 spare2
Unsigned 32-bit integer
fldb.spare3 spare3
Unsigned 32-bit integer
fldb.spare4 spare4
Unsigned 32-bit integer
fldb.spare5 spare5
Unsigned 32-bit integer
fldb.uuid_objid objid
UUID
fldb.uuid_owner owner
UUID
fldb.vlconf.cellidhigh CellID High
Unsigned 32-bit integer
fldb.vlconf.cellidlow CellID Low
Unsigned 32-bit integer
fldb.vlconf.hostname hostName
String
fldb.vlconf.name Name
String
fldb.vlconf.numservers Number of Servers
Unsigned 32-bit integer
fldb.vlconf.spare1 Spare1
Unsigned 32-bit integer
fldb.vlconf.spare2 Spare2
Unsigned 32-bit integer
fldb.vlconf.spare3 Spare3
Unsigned 32-bit integer
fldb.vlconf.spare4 Spare4
Unsigned 32-bit integer
fldb.vlconf.spare5 Spare5
Unsigned 32-bit integer
fldb.vldbentry.afsflags AFS Flags
Unsigned 32-bit integer
fldb.vldbentry.charspares Char Spares
String
fldb.vldbentry.cloneidhigh CloneID High
Unsigned 32-bit integer
fldb.vldbentry.cloneidlow CloneID Low
Unsigned 32-bit integer
fldb.vldbentry.defaultmaxreplicalatency Default Max Replica Latency
Unsigned 32-bit integer
fldb.vldbentry.hardmaxtotallatency Hard Max Total Latency
Unsigned 32-bit integer
fldb.vldbentry.lockername Locker Name
String
fldb.vldbentry.maxtotallatency Max Total Latency
Unsigned 32-bit integer
fldb.vldbentry.minimumpouncedally Minimum Pounce Dally
Unsigned 32-bit integer
fldb.vldbentry.nservers Number of Servers
Unsigned 32-bit integer
fldb.vldbentry.reclaimdally Reclaim Dally
Unsigned 32-bit integer
fldb.vldbentry.siteflags Site Flags
Unsigned 32-bit integer
fldb.vldbentry.sitemaxreplatency Site Max Replica Latench
Unsigned 32-bit integer
fldb.vldbentry.siteobjid Site Object ID
UUID
fldb.vldbentry.siteowner Site Owner
UUID
fldb.vldbentry.sitepartition Site Partition
Unsigned 32-bit integer
fldb.vldbentry.siteprincipal Principal Name
String
fldb.vldbentry.spare1 Spare 1
Unsigned 32-bit integer
fldb.vldbentry.spare2 Spare 2
Unsigned 32-bit integer
fldb.vldbentry.spare3 Spare 3
Unsigned 32-bit integer
fldb.vldbentry.spare4 Spare 4
Unsigned 32-bit integer
fldb.vldbentry.volidshigh VolIDs high
Unsigned 32-bit integer
fldb.vldbentry.volidslow VolIDs low
Unsigned 32-bit integer
fldb.vldbentry.voltypes VolTypes
Unsigned 32-bit integer
fldb.vldbentry.volumename VolumeName
String
fldb.vldbentry.volumetype VolumeType
Unsigned 32-bit integer
fldb.vldbentry.whenlocked When Locked
Unsigned 32-bit integer
fldb.volid_high volid high
Unsigned 32-bit integer
fldb.volid_low volid low
Unsigned 32-bit integer
fldb.voltype voltype
Unsigned 32-bit integer
icl_rpc.opnum Operation
Unsigned 16-bit integer
Operation
rep_proc.opnum Operation
Unsigned 16-bit integer
Operation
tkn4int.opnum Operation
Unsigned 16-bit integer
Operation
dtsstime_req.opnum Operation
Unsigned 16-bit integer
Operation
dtsprovider.opnum Operation
Unsigned 16-bit integer
Operation
dtsprovider.status Status
Unsigned 32-bit integer
Return code, status of executed command
hf_error_status_t hf_error_status_t
Unsigned 32-bit integer
hf_rgy_acct_user_flags_t hf_rgy_acct_user_flags_t
Unsigned 32-bit integer
hf_rgy_get_rqst_key_size hf_rgy_get_rqst_key_size
Unsigned 32-bit integer
hf_rgy_get_rqst_key_t hf_rgy_get_rqst_key_t
Unsigned 32-bit integer
hf_rgy_get_rqst_name_domain hf_rgy_get_rqst_name_domain
Unsigned 32-bit integer
hf_rgy_get_rqst_var hf_rgy_get_rqst_var
Unsigned 32-bit integer
hf_rgy_get_rqst_var2 hf_rgy_get_rqst_var2
Unsigned 32-bit integer
hf_rgy_is_member_rqst_key1 hf_rgy_is_member_rqst_key1
Unsigned 32-bit integer
hf_rgy_is_member_rqst_key1_size hf_rgy_is_member_rqst_key1_size
Unsigned 32-bit integer
hf_rgy_is_member_rqst_key2 hf_rgy_is_member_rqst_key2
Unsigned 32-bit integer
hf_rgy_is_member_rqst_key2_size hf_rgy_is_member_rqst_key2_size
Unsigned 32-bit integer
hf_rgy_is_member_rqst_var1 hf_rgy_is_member_rqst_var1
Unsigned 32-bit integer
hf_rgy_is_member_rqst_var2 hf_rgy_is_member_rqst_var2
Unsigned 32-bit integer
hf_rgy_is_member_rqst_var3 hf_rgy_is_member_rqst_var3
Unsigned 32-bit integer
hf_rgy_is_member_rqst_var4 hf_rgy_is_member_rqst_var4
Unsigned 32-bit integer
hf_rgy_key_transfer_rqst_var1 hf_rgy_key_transfer_rqst_var1
Unsigned 32-bit integer
hf_rgy_key_transfer_rqst_var2 hf_rgy_key_transfer_rqst_var2
Unsigned 32-bit integer
hf_rgy_key_transfer_rqst_var3 hf_rgy_key_transfer_rqst_var3
Unsigned 32-bit integer
hf_rgy_name_domain hf_rgy_name_domain
Unsigned 32-bit integer
hf_rgy_sec_rgy_name_max_len hf_rgy_sec_rgy_name_max_len
Unsigned 32-bit integer
hf_rgy_sec_rgy_name_t hf_rgy_sec_rgy_name_t
Unsigned 32-bit integer
hf_rgy_sec_rgy_name_t_size hf_rgy_sec_rgy_name_t_size
Unsigned 32-bit integer
hf_rs_pgo_id_key_t hf_rs_pgo_id_key_t
Unsigned 32-bit integer
hf_rs_pgo_query_key_t hf_rs_pgo_query_key_t
Unsigned 32-bit integer
hf_rs_pgo_query_result_t hf_rs_pgo_query_result_t
Unsigned 32-bit integer
hf_rs_pgo_query_t hf_rs_pgo_query_t
Unsigned 32-bit integer
hf_rs_pgo_unix_num_key_t hf_rs_pgo_unix_num_key_t
Unsigned 32-bit integer
hf_rs_sec_rgy_pgo_item_t_quota hf_rs_sec_rgy_pgo_item_t_quota
Unsigned 32-bit integer
hf_rs_sec_rgy_pgo_item_t_unix_num hf_rs_sec_rgy_pgo_item_t_unix_num
Unsigned 32-bit integer
hf_rs_timeval hf_rs_timeval
Time duration
hf_rs_uuid1 hf_rs_uuid1
UUID
hf_rs_var1 hf_rs_var1
Unsigned 32-bit integer
hf_sec_attr_component_name_t_handle hf_sec_attr_component_name_t_handle
Unsigned 32-bit integer
hf_sec_attr_component_name_t_valid hf_sec_attr_component_name_t_valid
Unsigned 32-bit integer
hf_sec_passwd_type_t hf_sec_passwd_type_t
Unsigned 32-bit integer
hf_sec_passwd_version_t hf_sec_passwd_version_t
Unsigned 32-bit integer
hf_sec_rgy_acct_admin_flags hf_sec_rgy_acct_admin_flags
Unsigned 32-bit integer
hf_sec_rgy_acct_auth_flags_t hf_sec_rgy_acct_auth_flags_t
Unsigned 32-bit integer
hf_sec_rgy_acct_key_t hf_sec_rgy_acct_key_t
Unsigned 32-bit integer
hf_sec_rgy_domain_t hf_sec_rgy_domain_t
Unsigned 32-bit integer
hf_sec_rgy_name_t_principalName_string hf_sec_rgy_name_t_principalName_string
String
hf_sec_rgy_name_t_size hf_sec_rgy_name_t_size
Unsigned 32-bit integer
hf_sec_rgy_pgo_flags_t hf_sec_rgy_pgo_flags_t
Unsigned 32-bit integer
hf_sec_rgy_pgo_item_t hf_sec_rgy_pgo_item_t
Unsigned 32-bit integer
hf_sec_rgy_pname_t_principalName_string hf_sec_rgy_pname_t_principalName_string
String
hf_sec_rgy_pname_t_size hf_sec_rgy_pname_t_size
Unsigned 32-bit integer
hf_sec_rgy_unix_sid_t_group hf_sec_rgy_unix_sid_t_group
Unsigned 32-bit integer
hf_sec_rgy_unix_sid_t_org hf_sec_rgy_unix_sid_t_org
Unsigned 32-bit integer
hf_sec_rgy_unix_sid_t_person hf_sec_rgy_unix_sid_t_person
Unsigned 32-bit integer
hf_sec_timeval_sec_t hf_sec_timeval_sec_t
Unsigned 32-bit integer
rs_pgo.opnum Operation
Unsigned 16-bit integer
Operation
dcerpc.array.actual_count Actual Count
Unsigned 32-bit integer
Actual Count: Actual number of elements in the array
dcerpc.array.buffer Buffer
Byte array
Buffer: Buffer containing elements of the array
dcerpc.array.max_count Max Count
Unsigned 32-bit integer
Maximum Count: Number of elements in the array
dcerpc.array.offset Offset
Unsigned 32-bit integer
Offset for first element in array
dcerpc.auth_ctx_id Auth Context ID
Unsigned 32-bit integer
dcerpc.auth_level Auth level
Unsigned 8-bit integer
dcerpc.auth_pad_len Auth pad len
Unsigned 8-bit integer
dcerpc.auth_rsrvd Auth Rsrvd
Unsigned 8-bit integer
dcerpc.auth_type Auth type
Unsigned 8-bit integer
dcerpc.cn_ack_reason Ack reason
Unsigned 16-bit integer
dcerpc.cn_ack_result Ack result
Unsigned 16-bit integer
dcerpc.cn_ack_trans_id Transfer Syntax
dcerpc.cn_ack_trans_ver Syntax ver
Unsigned 32-bit integer
dcerpc.cn_alloc_hint Alloc hint
Unsigned 32-bit integer
dcerpc.cn_assoc_group Assoc Group
Unsigned 32-bit integer
dcerpc.cn_auth_len Auth Length
Unsigned 16-bit integer
dcerpc.cn_bind_abstract_syntax Abstract Syntax
No value
dcerpc.cn_bind_if_ver Interface Ver
Unsigned 16-bit integer
dcerpc.cn_bind_if_ver_minor Interface Ver Minor
Unsigned 16-bit integer
dcerpc.cn_bind_to_uuid Interface UUID
dcerpc.cn_bind_trans Transfer Syntax
No value
dcerpc.cn_bind_trans_id ID
dcerpc.cn_bind_trans_ver ver
Unsigned 32-bit integer
dcerpc.cn_call_id Call ID
Unsigned 32-bit integer
dcerpc.cn_cancel_count Cancel count
Unsigned 8-bit integer
dcerpc.cn_ctx_id Context ID
Unsigned 16-bit integer
dcerpc.cn_ctx_item Ctx Item
No value
dcerpc.cn_deseg_req Desegmentation Required
Unsigned 32-bit integer
dcerpc.cn_flags Packet Flags
Unsigned 8-bit integer
dcerpc.cn_flags.cancel_pending Cancel Pending
Boolean
dcerpc.cn_flags.dne Did Not Execute
Boolean
dcerpc.cn_flags.first_frag First Frag
Boolean
dcerpc.cn_flags.last_frag Last Frag
Boolean
dcerpc.cn_flags.maybe Maybe
Boolean
dcerpc.cn_flags.mpx Multiplex
Boolean
dcerpc.cn_flags.object Object
Boolean
dcerpc.cn_flags.reserved Reserved
Boolean
dcerpc.cn_frag_len Frag Length
Unsigned 16-bit integer
dcerpc.cn_max_recv Max Recv Frag
Unsigned 16-bit integer
dcerpc.cn_max_xmit Max Xmit Frag
Unsigned 16-bit integer
dcerpc.cn_num_ctx_items Num Ctx Items
Unsigned 8-bit integer
dcerpc.cn_num_protocols Number of protocols
Unsigned 8-bit integer
dcerpc.cn_num_results Num results
Unsigned 8-bit integer
dcerpc.cn_num_trans_items Num Trans Items
Unsigned 8-bit integer
dcerpc.cn_protocol_ver_major Protocol major version
Unsigned 8-bit integer
dcerpc.cn_protocol_ver_minor Protocol minor version
Unsigned 8-bit integer
dcerpc.cn_reject_reason Reject reason
Unsigned 16-bit integer
dcerpc.cn_sec_addr Scndry Addr
String
dcerpc.cn_sec_addr_len Scndry Addr len
Unsigned 16-bit integer
dcerpc.cn_status Status
Unsigned 32-bit integer
dcerpc.dg_act_id Activity
dcerpc.dg_ahint Activity Hint
Unsigned 16-bit integer
dcerpc.dg_auth_proto Auth proto
Unsigned 8-bit integer
dcerpc.dg_cancel_id Cancel ID
Unsigned 32-bit integer
dcerpc.dg_cancel_vers Cancel Version
Unsigned 32-bit integer
dcerpc.dg_flags1 Flags1
Unsigned 8-bit integer
dcerpc.dg_flags1_broadcast Broadcast
Boolean
dcerpc.dg_flags1_frag Fragment
Boolean
dcerpc.dg_flags1_idempotent Idempotent
Boolean
dcerpc.dg_flags1_last_frag Last Fragment
Boolean
dcerpc.dg_flags1_maybe Maybe
Boolean
dcerpc.dg_flags1_nofack No Fack
Boolean
dcerpc.dg_flags1_rsrvd_01 Reserved
Boolean
dcerpc.dg_flags1_rsrvd_80 Reserved
Boolean
dcerpc.dg_flags2 Flags2
Unsigned 8-bit integer
dcerpc.dg_flags2_cancel_pending Cancel Pending
Boolean
dcerpc.dg_flags2_rsrvd_01 Reserved
Boolean
dcerpc.dg_flags2_rsrvd_04 Reserved
Boolean
dcerpc.dg_flags2_rsrvd_08 Reserved
Boolean
dcerpc.dg_flags2_rsrvd_10 Reserved
Boolean
dcerpc.dg_flags2_rsrvd_20 Reserved
Boolean
dcerpc.dg_flags2_rsrvd_40 Reserved
Boolean
dcerpc.dg_flags2_rsrvd_80 Reserved
Boolean
dcerpc.dg_frag_len Fragment len
Unsigned 16-bit integer
dcerpc.dg_frag_num Fragment num
Unsigned 16-bit integer
dcerpc.dg_if_id Interface
dcerpc.dg_if_ver Interface Ver
Unsigned 32-bit integer
dcerpc.dg_ihint Interface Hint
Unsigned 16-bit integer
dcerpc.dg_seqnum Sequence num
Unsigned 32-bit integer
dcerpc.dg_serial_hi Serial High
Unsigned 8-bit integer
dcerpc.dg_serial_lo Serial Low
Unsigned 8-bit integer
dcerpc.dg_server_boot Server boot time
Date/Time stamp
dcerpc.dg_status Status
Unsigned 32-bit integer
dcerpc.drep Data Representation
Byte array
dcerpc.drep.byteorder Byte order
Unsigned 8-bit integer
dcerpc.drep.character Character
Unsigned 8-bit integer
dcerpc.drep.fp Floating-point
Unsigned 8-bit integer
dcerpc.fack_max_frag_size Max Frag Size
Unsigned 32-bit integer
dcerpc.fack_max_tsdu Max TSDU
Unsigned 32-bit integer
dcerpc.fack_selack Selective ACK
Unsigned 32-bit integer
dcerpc.fack_selack_len Selective ACK Len
Unsigned 16-bit integer
dcerpc.fack_serial_num Serial Num
Unsigned 16-bit integer
dcerpc.fack_vers FACK Version
Unsigned 8-bit integer
dcerpc.fack_window_size Window Size
Unsigned 16-bit integer
dcerpc.fragment DCE/RPC Fragment
Frame number
DCE/RPC Fragment
dcerpc.fragment.error Defragmentation error
Frame number
Defragmentation error due to illegal fragments
dcerpc.fragment.multipletails Multiple tail fragments found
Boolean
Several tails were found when defragmenting the packet
dcerpc.fragment.overlap Fragment overlap
Boolean
Fragment overlaps with other fragments
dcerpc.fragment.overlap.conflict Conflicting data in fragment overlap
Boolean
Overlapping fragments contained conflicting data
dcerpc.fragment.toolongfragment Fragment too long
Boolean
Fragment contained data past end of packet
dcerpc.fragments Reassembled DCE/RPC Fragments
No value
DCE/RPC Fragments
dcerpc.krb5_av.auth_verifier Authentication Verifier
Byte array
dcerpc.krb5_av.key_vers_num Key Version Number
Unsigned 8-bit integer
dcerpc.krb5_av.prot_level Protection Level
Unsigned 8-bit integer
dcerpc.nt.acb.autolock Account is autolocked
Boolean
If this account has been autolocked
dcerpc.nt.acb.disabled Account disabled
Boolean
If this account is enabled or disabled
dcerpc.nt.acb.domtrust Interdomain trust account
Boolean
Interdomain trust account
dcerpc.nt.acb.homedirreq Home dir required
Boolean
Is homedirs required for this account?
dcerpc.nt.acb.mns MNS logon user account
Boolean
MNS logon user account
dcerpc.nt.acb.normal Normal user account
Boolean
If this is a normal user account
dcerpc.nt.acb.pwnoexp Password expires
Boolean
If this account expires or not
dcerpc.nt.acb.pwnotreq Password required
Boolean
If a password is required for this account?
dcerpc.nt.acb.svrtrust Server trust account
Boolean
Server trust account
dcerpc.nt.acb.tempdup Temporary duplicate account
Boolean
If this is a temporary duplicate account
dcerpc.nt.acb.wstrust Workstation trust account
Boolean
Workstation trust account
dcerpc.nt.acct_ctrl Acct Ctrl
Unsigned 32-bit integer
Acct CTRL
dcerpc.nt.attr Attributes
Unsigned 32-bit integer
dcerpc.nt.close_frame Frame handle closed
Frame number
Frame handle closed
dcerpc.nt.count Count
Unsigned 32-bit integer
Number of elements in following array
dcerpc.nt.domain_sid Domain SID
String
The Domain SID
dcerpc.nt.guid GUID
GUID (uuid for groups?)
dcerpc.nt.logonhours.divisions Divisions
Unsigned 16-bit integer
Number of divisions for LOGON_HOURS
dcerpc.nt.open_frame Frame handle opened
Frame number
Frame handle opened
dcerpc.nt.str.len Length
Unsigned 16-bit integer
Length of string in short integers
dcerpc.nt.str.size Size
Unsigned 16-bit integer
Size of string in short integers
dcerpc.nt.unknown.char Unknown char
Unsigned 8-bit integer
Unknown char. If you know what this is, contact wireshark developers.
dcerpc.obj_id Object
dcerpc.op Operation
Unsigned 16-bit integer
dcerpc.opnum Opnum
Unsigned 16-bit integer
dcerpc.pkt_type Packet type
Unsigned 8-bit integer
dcerpc.reassembled_in Reassembled PDU in frame
Frame number
The DCE/RPC PDU is completely reassembled in the packet with this number
dcerpc.referent_id Referent ID
Unsigned 32-bit integer
Referent ID for this NDR encoded pointer
dcerpc.request_in Request in frame
Frame number
This packet is a response to the packet with this number
dcerpc.response_in Response in frame
Frame number
This packet will be responded in the packet with this number
dcerpc.server_accepting_cancels Server accepting cancels
Boolean
dcerpc.time Time from request
Time duration
Time between Request and Response for DCE-RPC calls
dcerpc.unknown_if_id Unknown DCERPC interface id
Boolean
dcerpc.ver Version
Unsigned 8-bit integer
dcerpc.ver_minor Version (minor)
Unsigned 8-bit integer
secidmap.opnum Operation
Unsigned 16-bit integer
Operation
budb.AddVolume.vol vol
No value
budb.AddVolumes.cnt cnt
Unsigned 32-bit integer
budb.AddVolumes.vol vol
No value
budb.CreateDump.dump dump
No value
budb.DbHeader.cell cell
String
budb.DbHeader.created created
Signed 32-bit integer
budb.DbHeader.dbversion dbversion
Signed 32-bit integer
budb.DbHeader.lastDumpId lastDumpId
Unsigned 32-bit integer
budb.DbHeader.lastInstanceId lastInstanceId
Unsigned 32-bit integer
budb.DbHeader.lastTapeId lastTapeId
Unsigned 32-bit integer
budb.DbHeader.spare1 spare1
Unsigned 32-bit integer
budb.DbHeader.spare2 spare2
Unsigned 32-bit integer
budb.DbHeader.spare3 spare3
Unsigned 32-bit integer
budb.DbHeader.spare4 spare4
Unsigned 32-bit integer
budb.DbVerify.host host
Signed 32-bit integer
budb.DbVerify.orphans orphans
Signed 32-bit integer
budb.DbVerify.status status
Signed 32-bit integer
budb.DeleteDump.id id
Unsigned 32-bit integer
budb.DeleteTape.tape tape
No value
budb.DeleteVDP.curDumpId curDumpId
Signed 32-bit integer
budb.DeleteVDP.dsname dsname
String
budb.DeleteVDP.dumpPath dumpPath
String
budb.DumpDB.charListPtr charListPtr
No value
budb.DumpDB.flags flags
Signed 32-bit integer
budb.DumpDB.maxLength maxLength
Signed 32-bit integer
budb.FindClone.cloneSpare cloneSpare
Unsigned 32-bit integer
budb.FindClone.clonetime clonetime
Unsigned 32-bit integer
budb.FindClone.dumpID dumpID
Signed 32-bit integer
budb.FindClone.volName volName
String
budb.FindDump.beforeDate beforeDate
Unsigned 32-bit integer
budb.FindDump.dateSpare dateSpare
Unsigned 32-bit integer
budb.FindDump.deptr deptr
No value
budb.FindDump.volName volName
String
budb.FindLatestDump.dname dname
String
budb.FindLatestDump.dumpentry dumpentry
No value
budb.FindLatestDump.vsname vsname
String
budb.FinishDump.dump dump
No value
budb.FinishTape.tape tape
No value
budb.FreeAllLocks.instanceId instanceId
Unsigned 32-bit integer
budb.FreeLock.lockHandle lockHandle
Unsigned 32-bit integer
budb.GetDumps.dbUpdate dbUpdate
Signed 32-bit integer
budb.GetDumps.dumps dumps
No value
budb.GetDumps.end end
Signed 32-bit integer
budb.GetDumps.flags flags
Signed 32-bit integer
budb.GetDumps.index index
Signed 32-bit integer
budb.GetDumps.majorVersion majorVersion
Signed 32-bit integer
budb.GetDumps.name name
String
budb.GetDumps.nextIndex nextIndex
Signed 32-bit integer
budb.GetDumps.start start
Signed 32-bit integer
budb.GetInstanceId.instanceId instanceId
Unsigned 32-bit integer
budb.GetLock.expiration expiration
Signed 32-bit integer
budb.GetLock.instanceId instanceId
Unsigned 32-bit integer
budb.GetLock.lockHandle lockHandle
Unsigned 32-bit integer
budb.GetLock.lockName lockName
Signed 32-bit integer
budb.GetServerInterfaces.serverInterfacesP serverInterfacesP
No value
budb.GetTapes.dbUpdate dbUpdate
Signed 32-bit integer
budb.GetTapes.end end
Signed 32-bit integer
budb.GetTapes.flags flags
Signed 32-bit integer
budb.GetTapes.index index
Signed 32-bit integer
budb.GetTapes.majorVersion majorVersion
Signed 32-bit integer
budb.GetTapes.name name
String
budb.GetTapes.nextIndex nextIndex
Signed 32-bit integer
budb.GetTapes.start start
Signed 32-bit integer
budb.GetTapes.tapes tapes
No value
budb.GetText.charListPtr charListPtr
No value
budb.GetText.lockHandle lockHandle
Signed 32-bit integer
budb.GetText.maxLength maxLength
Signed 32-bit integer
budb.GetText.nextOffset nextOffset
Signed 32-bit integer
budb.GetText.offset offset
Signed 32-bit integer
budb.GetText.textType textType
Signed 32-bit integer
budb.GetTextVersion.textType textType
Signed 32-bit integer
budb.GetTextVersion.tversion tversion
Signed 32-bit integer
budb.GetVolumes.dbUpdate dbUpdate
Signed 32-bit integer
budb.GetVolumes.end end
Signed 32-bit integer
budb.GetVolumes.flags flags
Signed 32-bit integer
budb.GetVolumes.index index
Signed 32-bit integer
budb.GetVolumes.majorVersion majorVersion
Signed 32-bit integer
budb.GetVolumes.name name
String
budb.GetVolumes.nextIndex nextIndex
Signed 32-bit integer
budb.GetVolumes.start start
Signed 32-bit integer
budb.GetVolumes.volumes volumes
No value
budb.RestoreDbHeader.header header
No value
budb.SaveText.charListPtr charListPtr
No value
budb.SaveText.flags flags
Signed 32-bit integer
budb.SaveText.lockHandle lockHandle
Signed 32-bit integer
budb.SaveText.offset offset
Signed 32-bit integer
budb.SaveText.textType textType
Signed 32-bit integer
budb.T_DumpDatabase.filename filename
String
budb.T_DumpHashTable.filename filename
String
budb.T_DumpHashTable.type type
Signed 32-bit integer
budb.T_GetVersion.majorVersion majorVersion
Signed 32-bit integer
budb.UseTape.new new
Signed 32-bit integer
budb.UseTape.tape tape
No value
budb.charListT.charListT_len charListT_len
Unsigned 32-bit integer
budb.charListT.charListT_val charListT_val
Unsigned 8-bit integer
budb.dbVolume.clone clone
Date/Time stamp
budb.dbVolume.dump dump
Unsigned 32-bit integer
budb.dbVolume.flags flags
Unsigned 32-bit integer
budb.dbVolume.id id
Unsigned 64-bit integer
budb.dbVolume.incTime incTime
Date/Time stamp
budb.dbVolume.nBytes nBytes
Signed 32-bit integer
budb.dbVolume.nFrags nFrags
Signed 32-bit integer
budb.dbVolume.name name
String
budb.dbVolume.partition partition
Signed 32-bit integer
budb.dbVolume.position position
Signed 32-bit integer
budb.dbVolume.seq seq
Signed 32-bit integer
budb.dbVolume.server server
String
budb.dbVolume.spare1 spare1
Unsigned 32-bit integer
budb.dbVolume.spare2 spare2
Unsigned 32-bit integer
budb.dbVolume.spare3 spare3
Unsigned 32-bit integer
budb.dbVolume.spare4 spare4
Unsigned 32-bit integer
budb.dbVolume.startByte startByte
Signed 32-bit integer
budb.dbVolume.tape tape
String
budb.dfs_interfaceDescription.interface_uuid interface_uuid
budb.dfs_interfaceDescription.spare0 spare0
Unsigned 32-bit integer
budb.dfs_interfaceDescription.spare1 spare1
Unsigned 32-bit integer
budb.dfs_interfaceDescription.spare2 spare2
Unsigned 32-bit integer
budb.dfs_interfaceDescription.spare3 spare3
Unsigned 32-bit integer
budb.dfs_interfaceDescription.spare4 spare4
Unsigned 32-bit integer
budb.dfs_interfaceDescription.spare5 spare5
Unsigned 32-bit integer
budb.dfs_interfaceDescription.spare6 spare6
Unsigned 32-bit integer
budb.dfs_interfaceDescription.spare7 spare7
Unsigned 32-bit integer
budb.dfs_interfaceDescription.spare8 spare8
Unsigned 32-bit integer
budb.dfs_interfaceDescription.spare9 spare9
Unsigned 32-bit integer
budb.dfs_interfaceDescription.spareText spareText
Unsigned 8-bit integer
budb.dfs_interfaceDescription.vers_major vers_major
Unsigned 16-bit integer
budb.dfs_interfaceDescription.vers_minor vers_minor
Unsigned 16-bit integer
budb.dfs_interfaceDescription.vers_provider vers_provider
Unsigned 32-bit integer
budb.dfs_interfaceList.dfs_interfaceList_len dfs_interfaceList_len
Unsigned 32-bit integer
budb.dfs_interfaceList.dfs_interfaceList_val dfs_interfaceList_val
No value
budb.dumpEntry.created created
Date/Time stamp
budb.dumpEntry.dumpPath dumpPath
String
budb.dumpEntry.dumper dumper
No value
budb.dumpEntry.flags flags
Signed 32-bit integer
budb.dumpEntry.id id
Unsigned 32-bit integer
budb.dumpEntry.incTime incTime
Date/Time stamp
budb.dumpEntry.level level
Signed 32-bit integer
budb.dumpEntry.nVolumes nVolumes
Signed 32-bit integer
budb.dumpEntry.name name
String
budb.dumpEntry.parent parent
Unsigned 32-bit integer
budb.dumpEntry.spare1 spare1
Unsigned 32-bit integer
budb.dumpEntry.spare2 spare2
Unsigned 32-bit integer
budb.dumpEntry.spare3 spare3
Unsigned 32-bit integer
budb.dumpEntry.spare4 spare4
Unsigned 32-bit integer
budb.dumpEntry.tapes tapes
No value
budb.dumpEntry.volumeSetName volumeSetName
String
budb.dumpList.dumpList_len dumpList_len
Unsigned 32-bit integer
budb.dumpList.dumpList_val dumpList_val
No value
budb.opnum Operation
Unsigned 16-bit integer
budb.principal.cell cell
String
budb.principal.instance instance
String
budb.principal.name name
String
budb.principal.spare spare
String
budb.principal.spare1 spare1
Unsigned 32-bit integer
budb.principal.spare2 spare2
Unsigned 32-bit integer
budb.principal.spare3 spare3
Unsigned 32-bit integer
budb.principal.spare4 spare4
Unsigned 32-bit integer
budb.rc Return code
Unsigned 32-bit integer
budb.structDumpHeader.size size
Signed 32-bit integer
budb.structDumpHeader.spare1 spare1
Unsigned 32-bit integer
budb.structDumpHeader.spare2 spare2
Unsigned 32-bit integer
budb.structDumpHeader.spare3 spare3
Unsigned 32-bit integer
budb.structDumpHeader.spare4 spare4
Unsigned 32-bit integer
budb.structDumpHeader.structversion structversion
Signed 32-bit integer
budb.structDumpHeader.type type
Signed 32-bit integer
budb.tapeEntry.dump dump
Unsigned 32-bit integer
budb.tapeEntry.expires expires
Date/Time stamp
budb.tapeEntry.flags flags
Unsigned 32-bit integer
budb.tapeEntry.mediaType mediaType
Signed 32-bit integer
budb.tapeEntry.nBytes nBytes
Unsigned 32-bit integer
budb.tapeEntry.nFiles nFiles
Signed 32-bit integer
budb.tapeEntry.nMBytes nMBytes
Unsigned 32-bit integer
budb.tapeEntry.nVolumes nVolumes
Signed 32-bit integer
budb.tapeEntry.name name
String
budb.tapeEntry.seq seq
Signed 32-bit integer
budb.tapeEntry.spare1 spare1
Unsigned 32-bit integer
budb.tapeEntry.spare2 spare2
Unsigned 32-bit integer
budb.tapeEntry.spare3 spare3
Unsigned 32-bit integer
budb.tapeEntry.spare4 spare4
Unsigned 32-bit integer
budb.tapeEntry.tapeid tapeid
Signed 32-bit integer
budb.tapeEntry.useCount useCount
Signed 32-bit integer
budb.tapeEntry.written written
Date/Time stamp
budb.tapeList.tapeList_len tapeList_len
Unsigned 32-bit integer
budb.tapeList.tapeList_val tapeList_val
No value
budb.tapeSet.a a
Signed 32-bit integer
budb.tapeSet.b b
Signed 32-bit integer
budb.tapeSet.format format
String
budb.tapeSet.id id
Signed 32-bit integer
budb.tapeSet.maxTapes maxTapes
Signed 32-bit integer
budb.tapeSet.spare1 spare1
Unsigned 32-bit integer
budb.tapeSet.spare2 spare2
Unsigned 32-bit integer
budb.tapeSet.spare3 spare3
Unsigned 32-bit integer
budb.tapeSet.spare4 spare4
Unsigned 32-bit integer
budb.tapeSet.tapeServer tapeServer
String
budb.volumeEntry.clone clone
Date/Time stamp
budb.volumeEntry.dump dump
Unsigned 32-bit integer
budb.volumeEntry.flags flags
Unsigned 32-bit integer
budb.volumeEntry.id id
Unsigned 64-bit integer
budb.volumeEntry.incTime incTime
Date/Time stamp
budb.volumeEntry.nBytes nBytes
Signed 32-bit integer
budb.volumeEntry.nFrags nFrags
Signed 32-bit integer
budb.volumeEntry.name name
String
budb.volumeEntry.partition partition
Signed 32-bit integer
budb.volumeEntry.position position
Signed 32-bit integer
budb.volumeEntry.seq seq
Signed 32-bit integer
budb.volumeEntry.server server
String
budb.volumeEntry.spare1 spare1
Unsigned 32-bit integer
budb.volumeEntry.spare2 spare2
Unsigned 32-bit integer
budb.volumeEntry.spare3 spare3
Unsigned 32-bit integer
budb.volumeEntry.spare4 spare4
Unsigned 32-bit integer
budb.volumeEntry.startByte startByte
Signed 32-bit integer
budb.volumeEntry.tape tape
String
budb.volumeList.volumeList_len volumeList_len
Unsigned 32-bit integer
budb.volumeList.volumeList_val volumeList_val
No value
butc.BUTC_AbortDump.dumpID dumpID
Signed 32-bit integer
butc.BUTC_EndStatus.taskId taskId
Unsigned 32-bit integer
butc.BUTC_GetStatus.statusPtr statusPtr
No value
butc.BUTC_GetStatus.taskId taskId
Unsigned 32-bit integer
butc.BUTC_LabelTape.label label
No value
butc.BUTC_LabelTape.taskId taskId
Unsigned 32-bit integer
butc.BUTC_PerformDump.dumpID dumpID
Signed 32-bit integer
butc.BUTC_PerformDump.dumps dumps
No value
butc.BUTC_PerformDump.tcdiPtr tcdiPtr
No value
butc.BUTC_PerformRestore.dumpID dumpID
Signed 32-bit integer
butc.BUTC_PerformRestore.dumpSetName dumpSetName
String
butc.BUTC_PerformRestore.restores restores
No value
butc.BUTC_ReadLabel.taskId taskId
Unsigned 32-bit integer
butc.BUTC_RequestAbort.taskId taskId
Unsigned 32-bit integer
butc.BUTC_RestoreDb.taskId taskId
Unsigned 32-bit integer
butc.BUTC_SaveDb.taskId taskId
Unsigned 32-bit integer
butc.BUTC_ScanDumps.addDbFlag addDbFlag
Signed 32-bit integer
butc.BUTC_ScanDumps.taskId taskId
Unsigned 32-bit integer
butc.BUTC_ScanStatus.flags flags
Unsigned 32-bit integer
butc.BUTC_ScanStatus.statusPtr statusPtr
No value
butc.BUTC_ScanStatus.taskId taskId
Unsigned 32-bit integer
butc.BUTC_TCInfo.tciptr tciptr
No value
butc.Restore_flags.TC_RESTORE_CREATE TC_RESTORE_CREATE
Boolean
butc.Restore_flags.TC_RESTORE_INCR TC_RESTORE_INCR
Boolean
butc.afsNetAddr.data data
Unsigned 8-bit integer
butc.afsNetAddr.type type
Unsigned 16-bit integer
butc.opnum Operation
Unsigned 16-bit integer
butc.rc Return code
Unsigned 32-bit integer
butc.tc_dumpArray.tc_dumpArray tc_dumpArray
No value
butc.tc_dumpArray.tc_dumpArray_len tc_dumpArray_len
Unsigned 32-bit integer
butc.tc_dumpDesc.cloneDate cloneDate
Date/Time stamp
butc.tc_dumpDesc.date date
Date/Time stamp
butc.tc_dumpDesc.hostAddr hostAddr
No value
butc.tc_dumpDesc.name name
String
butc.tc_dumpDesc.partition partition
Signed 32-bit integer
butc.tc_dumpDesc.spare1 spare1
Unsigned 32-bit integer
butc.tc_dumpDesc.spare2 spare2
Unsigned 32-bit integer
butc.tc_dumpDesc.spare3 spare3
Unsigned 32-bit integer
butc.tc_dumpDesc.spare4 spare4
Unsigned 32-bit integer
butc.tc_dumpDesc.vid vid
Unsigned 64-bit integer
butc.tc_dumpInterface.dumpLevel dumpLevel
Signed 32-bit integer
butc.tc_dumpInterface.dumpName dumpName
String
butc.tc_dumpInterface.dumpPath dumpPath
String
butc.tc_dumpInterface.parentDumpId parentDumpId
Signed 32-bit integer
butc.tc_dumpInterface.spare1 spare1
Unsigned 32-bit integer
butc.tc_dumpInterface.spare2 spare2
Unsigned 32-bit integer
butc.tc_dumpInterface.spare3 spare3
Unsigned 32-bit integer
butc.tc_dumpInterface.spare4 spare4
Unsigned 32-bit integer
butc.tc_dumpInterface.tapeSet tapeSet
No value
butc.tc_dumpInterface.volumeSetName volumeSetName
String
butc.tc_dumpStat.bytesDumped bytesDumped
Signed 32-bit integer
butc.tc_dumpStat.dumpID dumpID
Signed 32-bit integer
butc.tc_dumpStat.flags flags
Signed 32-bit integer
butc.tc_dumpStat.numVolErrs numVolErrs
Signed 32-bit integer
butc.tc_dumpStat.spare1 spare1
Unsigned 32-bit integer
butc.tc_dumpStat.spare2 spare2
Unsigned 32-bit integer
butc.tc_dumpStat.spare3 spare3
Unsigned 32-bit integer
butc.tc_dumpStat.spare4 spare4
Unsigned 32-bit integer
butc.tc_dumpStat.volumeBeingDumped volumeBeingDumped
Unsigned 64-bit integer
butc.tc_restoreArray.tc_restoreArray_len tc_restoreArray_len
Unsigned 32-bit integer
butc.tc_restoreArray.tc_restoreArray_val tc_restoreArray_val
No value
butc.tc_restoreDesc.flags flags
Unsigned 32-bit integer
butc.tc_restoreDesc.frag frag
Signed 32-bit integer
butc.tc_restoreDesc.hostAddr hostAddr
No value
butc.tc_restoreDesc.newName newName
String
butc.tc_restoreDesc.oldName oldName
String
butc.tc_restoreDesc.origVid origVid
Unsigned 64-bit integer
butc.tc_restoreDesc.partition partition
Signed 32-bit integer
butc.tc_restoreDesc.position position
Signed 32-bit integer
butc.tc_restoreDesc.realDumpId realDumpId
Unsigned 32-bit integer
butc.tc_restoreDesc.spare2 spare2
Unsigned 32-bit integer
butc.tc_restoreDesc.spare3 spare3
Unsigned 32-bit integer
butc.tc_restoreDesc.spare4 spare4
Unsigned 32-bit integer
butc.tc_restoreDesc.tapeName tapeName
String
butc.tc_restoreDesc.vid vid
Unsigned 64-bit integer
butc.tc_statusInfoSwitch.label label
No value
butc.tc_statusInfoSwitch.none none
Unsigned 32-bit integer
butc.tc_statusInfoSwitch.spare1 spare1
Unsigned 32-bit integer
butc.tc_statusInfoSwitch.spare2 spare2
Unsigned 32-bit integer
butc.tc_statusInfoSwitch.spare3 spare3
Unsigned 32-bit integer
butc.tc_statusInfoSwitch.spare4 spare4
Unsigned 32-bit integer
butc.tc_statusInfoSwitch.spare5 spare5
Unsigned 32-bit integer
butc.tc_statusInfoSwitch.vol vol
No value
butc.tc_statusInfoSwitchLabel.spare1 spare1
Unsigned 32-bit integer
butc.tc_statusInfoSwitchLabel.tapeLabel tapeLabel
No value
butc.tc_statusInfoSwitchVol.nKBytes nKBytes
Unsigned 32-bit integer
butc.tc_statusInfoSwitchVol.spare1 spare1
Unsigned 32-bit integer
butc.tc_statusInfoSwitchVol.volsFailed volsFailed
Signed 32-bit integer
butc.tc_statusInfoSwitchVol.volumeName volumeName
String
butc.tc_tapeLabel.name name
String
butc.tc_tapeLabel.nameLen nameLen
Unsigned 32-bit integer
butc.tc_tapeLabel.size size
Unsigned 32-bit integer
butc.tc_tapeLabel.size_ext size_ext
Unsigned 32-bit integer
butc.tc_tapeLabel.spare1 spare1
Unsigned 32-bit integer
butc.tc_tapeLabel.spare2 spare2
Unsigned 32-bit integer
butc.tc_tapeLabel.spare3 spare3
Unsigned 32-bit integer
butc.tc_tapeLabel.spare4 spare4
Unsigned 32-bit integer
butc.tc_tapeSet.a a
Signed 32-bit integer
butc.tc_tapeSet.b b
Signed 32-bit integer
butc.tc_tapeSet.expDate expDate
Signed 32-bit integer
butc.tc_tapeSet.expType expType
Signed 32-bit integer
butc.tc_tapeSet.format format
String
butc.tc_tapeSet.id id
Signed 32-bit integer
butc.tc_tapeSet.maxTapes maxTapes
Signed 32-bit integer
butc.tc_tapeSet.spare1 spare1
Unsigned 32-bit integer
butc.tc_tapeSet.spare2 spare2
Unsigned 32-bit integer
butc.tc_tapeSet.spare3 spare3
Unsigned 32-bit integer
butc.tc_tapeSet.spare4 spare4
Unsigned 32-bit integer
butc.tc_tapeSet.tapeServer tapeServer
String
butc.tc_tcInfo.spare1 spare1
Unsigned 32-bit integer
butc.tc_tcInfo.spare2 spare2
Unsigned 32-bit integer
butc.tc_tcInfo.spare3 spare3
Unsigned 32-bit integer
butc.tc_tcInfo.spare4 spare4
Unsigned 32-bit integer
butc.tc_tcInfo.tcVersion tcVersion
Signed 32-bit integer
butc.tciStatusS.flags flags
Unsigned 32-bit integer
butc.tciStatusS.info info
Unsigned 32-bit integer
butc.tciStatusS.lastPolled lastPolled
Date/Time stamp
butc.tciStatusS.spare2 spare2
Unsigned 32-bit integer
butc.tciStatusS.spare3 spare3
Unsigned 32-bit integer
butc.tciStatusS.spare4 spare4
Unsigned 32-bit integer
butc.tciStatusS.taskId taskId
Unsigned 32-bit integer
butc.tciStatusS.taskName taskName
String
cds_solicit.opnum Operation
Unsigned 16-bit integer
Operation
conv.opnum Operation
Unsigned 16-bit integer
Operation
conv.status Status
Unsigned 32-bit integer
conv.who_are_you2_resp_casuuid Client's address space UUID
UUID
conv.who_are_you2_resp_seq Sequence Number
Unsigned 32-bit integer
conv.who_are_you2_rqst_actuid Activity UID
UUID
conv.who_are_you2_rqst_boot_time Boot time
Date/Time stamp
conv.who_are_you_resp_seq Sequence Number
Unsigned 32-bit integer
conv.who_are_you_rqst_actuid Activity UID
UUID
conv.who_are_you_rqst_boot_time Boot time
Date/Time stamp
rdaclif.opnum Operation
Unsigned 16-bit integer
Operation
epm.ann_len Annotation length
Unsigned 32-bit integer
epm.ann_offset Annotation offset
Unsigned 32-bit integer
epm.annotation Annotation
String
Annotation
epm.hnd Handle
Byte array
Context handle
epm.if_id Interface
epm.inq_type Inquiry type
Unsigned 32-bit integer
epm.max_ents Max entries
Unsigned 32-bit integer
epm.max_towers Max Towers
Unsigned 32-bit integer
Maximum number of towers to return
epm.num_ents Num entries
Unsigned 32-bit integer
epm.num_towers Num Towers
Unsigned 32-bit integer
Number number of towers to return
epm.object Object
epm.opnum Operation
Unsigned 16-bit integer
Operation
epm.proto.http_port TCP Port
Unsigned 16-bit integer
TCP Port where this service can be found
epm.proto.ip IP
IPv4 address
IP address where service is located
epm.proto.named_pipe Named Pipe
String
Name of the named pipe for this service
epm.proto.netbios_name NetBIOS Name
String
NetBIOS name where this service can be found
epm.proto.tcp_port TCP Port
Unsigned 16-bit integer
TCP Port where this service can be found
epm.proto.udp_port UDP Port
Unsigned 16-bit integer
UDP Port where this service can be found
epm.rc Return code
Unsigned 32-bit integer
EPM return value
epm.replace Replace
Unsigned 8-bit integer
Replace existing objects?
epm.tower Tower
Byte array
Tower data
epm.tower.len Length
Unsigned 32-bit integer
Length of tower data
epm.tower.lhs.len LHS Length
Unsigned 16-bit integer
Length of LHS data
epm.tower.num_floors Number of floors
Unsigned 16-bit integer
Number of floors in tower
epm.tower.proto_id Protocol
Unsigned 8-bit integer
Protocol identifier
epm.tower.rhs.len RHS Length
Unsigned 16-bit integer
Length of RHS data
epm.uuid UUID
UUID
epm.ver_maj Version Major
Unsigned 16-bit integer
epm.ver_min Version Minor
Unsigned 16-bit integer
epm.ver_opt Version Option
Unsigned 32-bit integer
hf_krb5rpc_krb5 hf_krb5rpc_krb5
Byte array
krb5_blob
hf_krb5rpc_opnum hf_krb5rpc_opnum
Unsigned 16-bit integer
hf_krb5rpc_sendto_kdc_resp_keysize hf_krb5rpc_sendto_kdc_resp_keysize
Unsigned 32-bit integer
hf_krb5rpc_sendto_kdc_resp_len hf_krb5rpc_sendto_kdc_resp_len
Unsigned 32-bit integer
hf_krb5rpc_sendto_kdc_resp_max hf_krb5rpc_sendto_kdc_resp_max
Unsigned 32-bit integer
hf_krb5rpc_sendto_kdc_resp_spare1 hf_krb5rpc_sendto_kdc_resp_spare1
Unsigned 32-bit integer
hf_krb5rpc_sendto_kdc_resp_st hf_krb5rpc_sendto_kdc_resp_st
Unsigned 32-bit integer
hf_krb5rpc_sendto_kdc_rqst_keysize hf_krb5rpc_sendto_kdc_rqst_keysize
Unsigned 32-bit integer
hf_krb5rpc_sendto_kdc_rqst_spare1 hf_krb5rpc_sendto_kdc_rqst_spare1
Unsigned 32-bit integer
llb.opnum Operation
Unsigned 16-bit integer
Operation
rs_repmgr.opnum Operation
Unsigned 16-bit integer
Operation
rs_prop_attr.opnum Operation
Unsigned 16-bit integer
Operation
rs_acct.get_projlist_rqst_key_size Var1
Unsigned 32-bit integer
rs_acct.get_projlist_rqst_key_t Var1
String
rs_acct.get_projlist_rqst_var1 Var1
Unsigned 32-bit integer
rs_acct.lookup_rqst_key_size Key Size
Unsigned 32-bit integer
rs_acct.lookup_rqst_var Var
Unsigned 32-bit integer
rs_acct.opnum Operation
Unsigned 16-bit integer
Operation
rs_lookup.get_rqst_key_t Key
String
rs_bind.opnum Operation
Unsigned 16-bit integer
Operation
rs.misc_login_get_info_rqst_key_t Key
String
rs_misc.login_get_info_rqst_key_size Key Size
Unsigned 32-bit integer
rs_misc.login_get_info_rqst_var Var
Unsigned 32-bit integer
rs_misc.opnum Operation
Unsigned 16-bit integer
Operation
rs_prop_acct.opnum Operation
Unsigned 16-bit integer
Operation
rs_unix.opnum Operation
Unsigned 16-bit integer
Operation
rs_pwd_mgmt.opnum Operation
Unsigned 16-bit integer
Operation
rs_attr_schema.opnum Operation
Unsigned 16-bit integer
Operation
rs_prop_acl.opnum Operation
Unsigned 16-bit integer
Operation
rs_prop_pgo.opnum Operation
Unsigned 16-bit integer
Operation
rs_prop_plcy.opnum Operation
Unsigned 16-bit integer
Operation
mgmt.opnum Operation
Unsigned 16-bit integer
rs_replist.opnum Operation
Unsigned 16-bit integer
Operation
dce_update.opnum Operation
Unsigned 16-bit integer
Operation
dcom.actual_count ActualCount
Unsigned 32-bit integer
dcom.array_size (ArraySize)
Unsigned 32-bit integer
dcom.byte_length ByteLength
Unsigned 32-bit integer
dcom.clsid CLSID
dcom.dualstringarray.network_addr NetworkAddr
String
dcom.dualstringarray.num_entries NumEntries
Unsigned 16-bit integer
dcom.dualstringarray.security SecurityBinding
No value
dcom.dualstringarray.security_authn_svc AuthnSvc
Unsigned 16-bit integer
dcom.dualstringarray.security_authz_svc AuthzSvc
Unsigned 16-bit integer
dcom.dualstringarray.security_offset SecurityOffset
Unsigned 16-bit integer
dcom.dualstringarray.security_princ_name PrincName
String
dcom.dualstringarray.string StringBinding
No value
dcom.dualstringarray.tower_id TowerId
Unsigned 16-bit integer
dcom.extent Extension
No value
dcom.extent.array_count Extension Count
Unsigned 32-bit integer
dcom.extent.array_res Reserved
Unsigned 32-bit integer
dcom.extent.id Extension Id
dcom.extent.size Extension Size
Unsigned 32-bit integer
dcom.hresult HResult
Unsigned 32-bit integer
dcom.ifp InterfacePointer
No value
dcom.iid IID
dcom.ip_cnt_data CntData
Unsigned 32-bit integer
dcom.ipid IPID
dcom.max_count MaxCount
Unsigned 32-bit integer
dcom.nospec No Specification Available
Byte array
dcom.objref OBJREF
No value
dcom.objref.cbextension CBExtension
Unsigned 32-bit integer
Size of extension data
dcom.objref.flags Flags
Unsigned 32-bit integer
dcom.objref.resolver_address ResolverAddress
No value
dcom.objref.signature Signature
Unsigned 32-bit integer
dcom.objref.size Size
Unsigned 32-bit integer
dcom.offset Offset
Unsigned 32-bit integer
dcom.oid OID
Unsigned 64-bit integer
dcom.oxid OXID
Unsigned 64-bit integer
dcom.pointer_val (PointerVal)
Unsigned 32-bit integer
dcom.sa SAFEARRAY
No value
dcom.sa.bound_elements BoundElements
Unsigned 32-bit integer
dcom.sa.dims16 Dims16
Unsigned 16-bit integer
dcom.sa.dims32 Dims32
Unsigned 32-bit integer
dcom.sa.element_size ElementSize
Unsigned 32-bit integer
dcom.sa.elements Elements
Unsigned 32-bit integer
dcom.sa.features Features
Unsigned 16-bit integer
dcom.sa.features_auto AUTO
Boolean
dcom.sa.features_bstr BSTR
Boolean
dcom.sa.features_dispatch DISPATCH
Boolean
dcom.sa.features_embedded EMBEDDED
Boolean
dcom.sa.features_fixedsize FIXEDSIZE
Boolean
dcom.sa.features_have_iid HAVEIID
Boolean
dcom.sa.features_have_vartype HAVEVARTYPE
Boolean
dcom.sa.features_record RECORD
Boolean
dcom.sa.features_static STATIC
Boolean
dcom.sa.features_unknown UNKNOWN
Boolean
dcom.sa.features_variant VARIANT
Boolean
dcom.sa.locks Locks
Unsigned 16-bit integer
dcom.sa.low_bound LowBound
Unsigned 32-bit integer
dcom.sa.vartype VarType32
Unsigned 32-bit integer
dcom.stdobjref STDOBJREF
No value
dcom.stdobjref.flags Flags
Unsigned 32-bit integer
dcom.stdobjref.public_refs PublicRefs
Unsigned 32-bit integer
dcom.that.flags Flags
Unsigned 32-bit integer
dcom.this.flags Flags
Unsigned 32-bit integer
dcom.this.res Reserved
Unsigned 32-bit integer
dcom.this.uuid Causality ID
dcom.this.version_major VersionMajor
Unsigned 16-bit integer
dcom.this.version_minor VersionMinor
Unsigned 16-bit integer
dcom.tobedone To Be Done
Byte array
dcom.variant Variant
No value
dcom.variant_rpc_res RPC-Reserved
Unsigned 32-bit integer
dcom.variant_size Size
Unsigned 32-bit integer
dcom.variant_type VarType
Unsigned 16-bit integer
dcom.variant_type32 VarType32
Unsigned 32-bit integer
dcom.variant_wres Reserved
Unsigned 16-bit integer
dcom.version_major VersionMajor
Unsigned 16-bit integer
dcom.version_minor VersionMinor
Unsigned 16-bit integer
dcom.vt.bool VT_BOOL
Unsigned 16-bit integer
dcom.vt.bstr VT_BSTR
String
dcom.vt.byref BYREF
No value
dcom.vt.date VT_DATE
Double-precision floating point
dcom.vt.dispatch VT_DISPATCH
No value
dcom.vt.i1 VT_I1
Signed 8-bit integer
dcom.vt.i2 VT_I2
Signed 16-bit integer
dcom.vt.i4 VT_I4
Signed 32-bit integer
dcom.vt.i8 VT_I8
Signed 64-bit integer
dcom.vt.r4 VT_R4
dcom.vt.r8 VT_R8
Double-precision floating point
dcom.vt.ui1 VT_UI1
Unsigned 8-bit integer
dcom.vt.ui2 VT_UI2
Unsigned 16-bit integer
dcom.vt.ui4 VT_UI4
Unsigned 32-bit integer
dispatch_arg Argument
No value
dispatch_arg_err ArgErr
Unsigned 32-bit integer
dispatch_args Args
Unsigned 32-bit integer
dispatch_code Code
Unsigned 16-bit integer
dispatch_deferred_fill_in DeferredFillIn
Unsigned 32-bit integer
dispatch_description Description
String
dispatch_dispparams DispParams
No value
dispatch_excepinfo ExcepInfo
No value
dispatch_flags Flags
Unsigned 32-bit integer
dispatch_flags_method Method
Boolean
dispatch_flags_propget PropertyGet
Boolean
dispatch_flags_propput PropertyPut
Boolean
dispatch_flags_propputref PropertyPutRef
Boolean
dispatch_help_context HelpContext
Unsigned 32-bit integer
dispatch_help_file HelpFile
String
dispatch_id DispID
Unsigned 32-bit integer
dispatch_itinfo TInfo
No value
dispatch_lcid LCID
Unsigned 32-bit integer
dispatch_named_args NamedArgs
Unsigned 32-bit integer
dispatch_names Names
Unsigned 32-bit integer
dispatch_opnum Operation
Unsigned 16-bit integer
Operation
dispatch_reserved16 Reserved
Unsigned 16-bit integer
dispatch_reserved32 Reserved
Unsigned 32-bit integer
dispatch_riid RIID
dispatch_scode SCode
Unsigned 32-bit integer
dispatch_source Source
String
dispatch_tinfo TInfo
Unsigned 32-bit integer
dispatch_varref VarRef
Unsigned 32-bit integer
dispatch_varrefarg VarRef
No value
dispatch_varrefidx VarRefIdx
Unsigned 32-bit integer
dispatch_varresult VarResult
No value
hf_dispatch_name Name
String
hf_remact_oxid_bindings OxidBindings
No value
remact_authn_hint AuthnHint
Unsigned 32-bit integer
remact_client_impl_level ClientImplLevel
Unsigned 32-bit integer
remact_interface_data InterfaceData
No value
remact_interfaces Interfaces
Unsigned 32-bit integer
remact_mode Mode
Unsigned 32-bit integer
remact_object_name ObjectName
String
remact_object_storage ObjectStorage
No value
remact_opnum Operation
Unsigned 16-bit integer
Operation
remact_prot_seqs ProtSeqs
Unsigned 16-bit integer
remact_req_prot_seqs RequestedProtSeqs
Unsigned 16-bit integer
dcom.oxid.address Address
No value
oxid.opnum Operation
Unsigned 16-bit integer
oxid5.unknown1 unknown 8 bytes 1
Unsigned 64-bit integer
oxid5.unknown2 unknown 8 bytes 2
Unsigned 64-bit integer
oxid_addtoset AddToSet
Unsigned 16-bit integer
oxid_authn_hint AuthnHint
Unsigned 32-bit integer
oxid_bindings OxidBindings
No value
oxid_delfromset DelFromSet
Unsigned 16-bit integer
oxid_ipid IPID
oxid_oid OID
Unsigned 64-bit integer
oxid_oxid OXID
Unsigned 64-bit integer
oxid_ping_backoff_factor PingBackoffFactor
Unsigned 16-bit integer
oxid_protseqs ProtSeq
Unsigned 16-bit integer
oxid_requested_protseqs RequestedProtSeq
Unsigned 16-bit integer
oxid_seqnum SeqNum
Unsigned 16-bit integer
oxid_setid SetId
Unsigned 64-bit integer
dcp-af.crc CRC
Unsigned 16-bit integer
CRC
dcp-af.crc_ok CRC OK
Boolean
AF CRC OK
dcp-af.crcflag crc flag
Boolean
Frame is protected by CRC
dcp-af.len length
Unsigned 32-bit integer
length in bytes of the payload
dcp-af.maj Major Revision
Unsigned 8-bit integer
Major Protocol Revision
dcp-af.min Minor Revision
Unsigned 8-bit integer
Minor Protocol Revision
dcp-af.pt Payload Type
String
T means Tag Packets, all other values reserved
dcp-af.seq frame count
Unsigned 16-bit integer
Logical Frame Number
dcp-pft.addr Addr
Boolean
When set the optional transport header is present
dcp-pft.cmax C max
Unsigned 16-bit integer
Maximum number of RS chunks sent
dcp-pft.crc header CRC
Unsigned 16-bit integer
PFT Header CRC
dcp-pft.crc_ok PFT CRC OK
Boolean
PFT Header CRC OK
dcp-pft.dest dest addr
Unsigned 16-bit integer
PFT destination identifier
dcp-pft.fcount Fragment Count
Unsigned 24-bit integer
Number of fragments produced from this AF Packet
dcp-pft.fec FEC
Boolean
When set the optional RS header is present
dcp-pft.findex Fragment Index
Unsigned 24-bit integer
Index of the fragment within one AF Packet
dcp-pft.fragment Message fragment
Frame number
dcp-pft.fragment.error Message defragmentation error
Frame number
dcp-pft.fragment.multiple_tails Message has multiple tail fragments
Boolean
dcp-pft.fragment.overlap Message fragment overlap
Boolean
dcp-pft.fragment.overlap.conflicts Message fragment overlapping with conflicting data
Boolean
dcp-pft.fragment.too_long_fragment Message fragment too long
Boolean
dcp-pft.fragments Message fragments
No value
dcp-pft.len fragment length
Unsigned 16-bit integer
length in bytes of the payload of this fragment
dcp-pft.payload payload
Byte array
PFT Payload
dcp-pft.pt Sub-protocol
Unsigned 8-bit integer
Always AF
dcp-pft.reassembled.in Reassembled in
Frame number
dcp-pft.rs_corrected RS Symbols Corrected
Signed 16-bit integer
Number of symbols corrected by RS decode or -1 for failure
dcp-pft.rs_ok RS decode OK
Boolean
successfully decoded RS blocks
dcp-pft.rsk RSk
Unsigned 8-bit integer
The length of the Reed Solomon data word
dcp-pft.rsz RSz
Unsigned 8-bit integer
The number of padding bytes in the last Reed Solomon block
dcp-pft.rxmin Rx min
Unsigned 16-bit integer
Minimum number of fragments needed for RS decode
dcp-pft.seq Sequence No
Unsigned 16-bit integer
PFT Sequence No
dcp-pft.source source addr
Unsigned 16-bit integer
PFT source identifier
dcp-tpl.ptr Type
String
Protocol Type & Revision
dcp-tpl.tlv tag
Byte array
Tag Packet
dec_dna.ctl.acknum Ack/Nak
No value
ack/nak number
dec_dna.ctl.blk_size Block size
Unsigned 16-bit integer
Block size
dec_dna.ctl.elist List of router states
No value
Router states
dec_dna.ctl.ename Ethernet name
Byte array
Ethernet name
dec_dna.ctl.fcnval Verification message function value
Byte array
Routing Verification function
dec_dna.ctl.id Transmitting system ID
6-byte Hardware (MAC) Address
Transmitting system ID
dec_dna.ctl.iinfo.blkreq Blocking requested
Boolean
Blocking requested?
dec_dna.ctl.iinfo.mta Accepts multicast traffic
Boolean
Accepts multicast traffic?
dec_dna.ctl.iinfo.node_type Node type
Unsigned 8-bit integer
Node type
dec_dna.ctl.iinfo.rej Rejected
Boolean
Rejected message
dec_dna.ctl.iinfo.verf Verification failed
Boolean
Verification failed?
dec_dna.ctl.iinfo.vrf Verification required
Boolean
Verification required?
dec_dna.ctl.prio Routing priority
Unsigned 8-bit integer
Routing priority
dec_dna.ctl.reserved Reserved
Byte array
Reserved
dec_dna.ctl.router_id Router ID
6-byte Hardware (MAC) Address
Router ID
dec_dna.ctl.router_prio Router priority
Unsigned 8-bit integer
Router priority
dec_dna.ctl.router_state Router state
String
Router state
dec_dna.ctl.seed Verification seed
Byte array
Verification seed
dec_dna.ctl.segment Segment
No value
Routing Segment
dec_dna.ctl.test_data Test message data
Byte array
Routing Test message data
dec_dna.ctl.tiinfo Routing information
Unsigned 8-bit integer
Routing information
dec_dna.ctl.timer Hello timer(seconds)
Unsigned 16-bit integer
Hello timer in seconds
dec_dna.ctl.version Version
No value
Control protocol version
dec_dna.ctl_neighbor Neighbor
6-byte Hardware (MAC) Address
Neighbour ID
dec_dna.dst.address Destination Address
6-byte Hardware (MAC) Address
Destination address
dec_dna.dst_node Destination node
Unsigned 16-bit integer
Destination node
dec_dna.flags Routing flags
Unsigned 8-bit integer
DNA routing flag
dec_dna.flags.RQR Return to Sender Request
Boolean
Return to Sender
dec_dna.flags.RTS Packet on return trip
Boolean
Packet on return trip
dec_dna.flags.control Control packet
Boolean
Control packet
dec_dna.flags.discard Discarded packet
Boolean
Discarded packet
dec_dna.flags.intra_eth Intra-ethernet packet
Boolean
Intra-ethernet packet
dec_dna.flags.msglen Long data packet format
Unsigned 8-bit integer
Long message indicator
dec_dna.nl2 Next level 2 router
Unsigned 8-bit integer
reserved
dec_dna.nsp.delay Delayed ACK allowed
Boolean
Delayed ACK allowed?
dec_dna.nsp.disc_reason Reason for disconnect
Unsigned 16-bit integer
Disconnect reason
dec_dna.nsp.fc_val Flow control
No value
Flow control
dec_dna.nsp.flow_control Flow control
Unsigned 8-bit integer
Flow control(stop, go)
dec_dna.nsp.info Version info
Unsigned 8-bit integer
Version info
dec_dna.nsp.msg_type DNA NSP message
Unsigned 8-bit integer
NSP message
dec_dna.nsp.segnum Message number
Unsigned 16-bit integer
Segment number
dec_dna.nsp.segsize Maximum data segment size
Unsigned 16-bit integer
Max. segment size
dec_dna.nsp.services Requested services
Unsigned 8-bit integer
Services requested
dec_dna.proto_type Protocol type
Unsigned 8-bit integer
reserved
dec_dna.rt.msg_type Routing control message
Unsigned 8-bit integer
Routing control
dec_dna.sess.conn Session connect data
No value
Session connect data
dec_dna.sess.dst_name Session Destination end user
String
Session Destination end user
dec_dna.sess.grp_code Session Group code
Unsigned 16-bit integer
Session group code
dec_dna.sess.menu_ver Session Menu version
String
Session menu version
dec_dna.sess.obj_type Session Object type
Unsigned 8-bit integer
Session object type
dec_dna.sess.rqstr_id Session Requestor ID
String
Session requestor ID
dec_dna.sess.src_name Session Source end user
String
Session Source end user
dec_dna.sess.usr_code Session User code
Unsigned 16-bit integer
Session User code
dec_dna.src.addr Source Address
6-byte Hardware (MAC) Address
Source address
dec_dna.src_node Source node
Unsigned 16-bit integer
Source node
dec_dna.svc_cls Service class
Unsigned 8-bit integer
reserved
dec_dna.visit_cnt Visit count
Unsigned 8-bit integer
Visit count
dec_dna.vst_node Nodes visited ty this package
Unsigned 8-bit integer
Nodes visited
dec_stp.bridge.mac Bridge MAC
6-byte Hardware (MAC) Address
dec_stp.bridge.pri Bridge Priority
Unsigned 16-bit integer
dec_stp.flags BPDU flags
Unsigned 8-bit integer
dec_stp.flags.short_timers Use short timers
Boolean
dec_stp.flags.tc Topology Change
Boolean
dec_stp.flags.tcack Topology Change Acknowledgment
Boolean
dec_stp.forward Forward Delay
Unsigned 8-bit integer
dec_stp.hello Hello Time
Unsigned 8-bit integer
dec_stp.max_age Max Age
Unsigned 8-bit integer
dec_stp.msg_age Message Age
Unsigned 8-bit integer
dec_stp.port Port identifier
Unsigned 8-bit integer
dec_stp.protocol Protocol Identifier
Unsigned 8-bit integer
dec_stp.root.cost Root Path Cost
Unsigned 16-bit integer
dec_stp.root.mac Root MAC
6-byte Hardware (MAC) Address
dec_stp.root.pri Root Priority
Unsigned 16-bit integer
dec_stp.type BPDU Type
Unsigned 8-bit integer
dec_stp.version BPDU Version
Unsigned 8-bit integer
gryphon.cmd Command
Unsigned 8-bit integer
gryphon.dest Destination
Unsigned 8-bit integer
gryphon.destchan Destination channel
Unsigned 8-bit integer
gryphon.src Source
Unsigned 8-bit integer
gryphon.srcchan Source channel
Unsigned 8-bit integer
gryphon.type Frame type
Unsigned 8-bit integer
dhcpfo.additionalheaderbytes Additional Header Bytes
Byte array
dhcpfo.addressestransferred addresses transferred
Unsigned 32-bit integer
dhcpfo.assignedipaddress assigned ip address
IPv4 address
dhcpfo.bindingstatus Type
Unsigned 32-bit integer
dhcpfo.clienthardwareaddress Client Hardware Address
Byte array
dhcpfo.clienthardwaretype Client Hardware Type
Unsigned 8-bit integer
dhcpfo.clientidentifier Client Identifier
String
dhcpfo.clientlasttransactiontime Client last transaction time
Unsigned 32-bit integer
dhcpfo.dhcpstyleoption DHCP Style Option
No value
dhcpfo.ftddns FTDDNS
String
dhcpfo.graceexpirationtime Grace expiration time
Unsigned 32-bit integer
dhcpfo.hashbucketassignment Hash bucket assignment
Byte array
dhcpfo.leaseexpirationtime Lease expiration time
Unsigned 32-bit integer
dhcpfo.length Message length
Unsigned 16-bit integer
dhcpfo.maxunackedbndupd Max unacked BNDUPD
Unsigned 32-bit integer
dhcpfo.mclt MCLT
Unsigned 32-bit integer
dhcpfo.message Message
String
dhcpfo.messagedigest Message digest
String
dhcpfo.optioncode Option Code
Unsigned 16-bit integer
dhcpfo.optionlength Length
Unsigned 16-bit integer
dhcpfo.payloaddata Payload Data
No value
dhcpfo.poffset Payload Offset
Unsigned 8-bit integer
dhcpfo.potentialexpirationtime Potential expiration time
Unsigned 32-bit integer
dhcpfo.protocolversion Protocol version
Unsigned 8-bit integer
dhcpfo.receivetimer Receive timer
Unsigned 32-bit integer
dhcpfo.rejectreason Reject reason
Unsigned 8-bit integer
dhcpfo.sendingserveripaddress sending server ip-address
IPv4 address
dhcpfo.serverstatus server status
Unsigned 8-bit integer
dhcpfo.starttimeofstate Start time of state
Unsigned 32-bit integer
dhcpfo.time Time
Date/Time stamp
dhcpfo.type Message Type
Unsigned 8-bit integer
dhcpfo.vendorclass Vendor class
String
dhcpfo.vendoroption Vendor option
No value
dhcpfo.xid Xid
Unsigned 32-bit integer
dhcpv6.msgtype Message type
Unsigned 8-bit integer
dhcpv6.msgtype.n N
Boolean
dhcpv6.msgtype.o O
Boolean
dhcpv6.msgtype.reserved Reserved
Unsigned 8-bit integer
dhcpv6.msgtype.s S
Boolean
dcm.data.ctx Data Context
Unsigned 8-bit integer
dcm.data.flags Flags
Unsigned 8-bit integer
dcm.data.len DATA LENGTH
Unsigned 32-bit integer
dcm.data.tag Tag
Byte array
dcm.max_pdu_len MAX PDU LENGTH
Unsigned 32-bit integer
dcm.pdi.async Asynch
String
dcm.pdi.ctxt Presentation Context
Unsigned 8-bit integer
dcm.pdi.impl Implementation
String
dcm.pdi.name Application Context
String
dcm.pdi.result Presentation Context result
Unsigned 8-bit integer
dcm.pdi.syntax Abstract Syntax
String
dcm.pdi.version Version
String
dcm.pdu PDU
Unsigned 8-bit integer
dcm.pdu.pdi Item
Unsigned 8-bit integer
dcm.pdu_detail PDU Detail
String
dcm.pdu_len PDU LENGTH
Unsigned 32-bit integer
cprpc_server.opnum Operation
Unsigned 16-bit integer
Operation
docsis.bpi_en Encryption
Boolean
BPI Enable
docsis.ehdr.act_grants Active Grants
Unsigned 8-bit integer
Active Grants
docsis.ehdr.keyseq Key Sequence
Unsigned 8-bit integer
Key Sequence
docsis.ehdr.len Length
Unsigned 8-bit integer
TLV Len
docsis.ehdr.minislots MiniSlots
Unsigned 8-bit integer
Mini Slots Requested
docsis.ehdr.phsi Payload Header Suppression Index
Unsigned 8-bit integer
Payload Header Suppression Index
docsis.ehdr.qind Queue Indicator
Boolean
Queue Indicator
docsis.ehdr.rsvd Reserved
Unsigned 8-bit integer
Reserved Byte
docsis.ehdr.said SAID
Unsigned 16-bit integer
Security Association Identifier
docsis.ehdr.sid SID
Unsigned 16-bit integer
Service Identifier
docsis.ehdr.type Type
Unsigned 8-bit integer
TLV Type
docsis.ehdr.value Value
Byte array
TLV Value
docsis.ehdr.ver Version
Unsigned 8-bit integer
Version
docsis.ehdron EHDRON
Boolean
Extended Header Presence
docsis.fcparm FCParm
Unsigned 8-bit integer
Parameter Field
docsis.fctype FCType
Unsigned 8-bit integer
Frame Control Type
docsis.frag_first First Frame
Boolean
First Frame
docsis.frag_last Last Frame
Boolean
Last Frame
docsis.frag_rsvd Reserved
Unsigned 8-bit integer
Reserved
docsis.frag_seq Fragmentation Sequence #
Unsigned 8-bit integer
Fragmentation Sequence Number
docsis.hcs Header check sequence
Unsigned 16-bit integer
Header check sequence
docsis.lensid Length after HCS (bytes)
Unsigned 16-bit integer
Length or SID
docsis.macparm MacParm
Unsigned 8-bit integer
Mac Parameter Field
docsis.toggle_bit Toggle
Boolean
Toggle
docsis_tlv.auth_block 30 Auth Block
Byte array
Auth Block
docsis_tlv.bpi 17 Baseline Privacy Encoding
Byte array
Baseline Privacy Encoding
docsis_tlv.bpi_en 29 Privacy Enable
Boolean
Privacy Enable
docsis_tlv.clsfr.actstate .6 Activation State
Boolean
Classifier Activation State
docsis_tlv.clsfr.dot1q .11 802.1Q Classifier Encodings
Byte array
802.1Q Classifier Encodings
docsis_tlv.clsfr.dot1q.ethertype ..2 VLAN id
Unsigned 16-bit integer
VLAN Id
docsis_tlv.clsfr.dot1q.userpri ..1 User Priority
Unsigned 16-bit integer
User Priority
docsis_tlv.clsfr.dot1q.vendorspec ..43 Vendor Specific Encodings
Byte array
Vendor Specific Encodings
docsis_tlv.clsfr.dscact .7 DSC Action
Unsigned 8-bit integer
Dynamic Service Change Action
docsis_tlv.clsfr.err .8 Error Encodings
Byte array
Error Encodings
docsis_tlv.clsfr.err.code ..2 Error Code
Unsigned 8-bit integer
TCP/UDP Destination Port End
docsis_tlv.clsfr.err.msg ..3 Error Message
String
Error Message
docsis_tlv.clsfr.err.param ..1 Param Subtype
Unsigned 8-bit integer
Parameter Subtype
docsis_tlv.clsfr.eth .10 Ethernet Classifier Encodings
Byte array
Ethernet Classifier Encodings
docsis_tlv.clsfr.eth.dmac ..1 Dest Mac Address
6-byte Hardware (MAC) Address
Destination Mac Address
docsis_tlv.clsfr.eth.ethertype ..3 Ethertype
Unsigned 24-bit integer
Ethertype
docsis_tlv.clsfr.eth.smac ..2 Source Mac Address
6-byte Hardware (MAC) Address
Source Mac Address
docsis_tlv.clsfr.id .2 Classifier ID
Unsigned 16-bit integer
Classifier ID
docsis_tlv.clsfr.ip .9 IP Classifier Encodings
Byte array
IP Classifier Encodings
docsis_tlv.clsfr.ip.dmask ..6 Destination Mask
IPv4 address
Destination Mask
docsis_tlv.clsfr.ip.dportend ..10 Dest Port End
Unsigned 16-bit integer
TCP/UDP Destination Port End
docsis_tlv.clsfr.ip.dportstart ..9 Dest Port Start
Unsigned 16-bit integer
TCP/UDP Destination Port Start
docsis_tlv.clsfr.ip.dst ..4 Destination Address
IPv4 address
Destination Address
docsis_tlv.clsfr.ip.ipproto ..2 IP Protocol
Unsigned 16-bit integer
IP Protocol
docsis_tlv.clsfr.ip.smask ..5 Source Mask
IPv4 address
Source Mask
docsis_tlv.clsfr.ip.sportend ..8 Source Port End
Unsigned 16-bit integer
TCP/UDP Source Port End
docsis_tlv.clsfr.ip.sportstart ..7 Source Port Start
Unsigned 16-bit integer
TCP/UDP Source Port Start
docsis_tlv.clsfr.ip.src ..3 Source Address
IPv4 address
Source Address
docsis_tlv.clsfr.ip.tosmask ..1 Type Of Service Mask
Byte array
Type Of Service Mask
docsis_tlv.clsfr.ref .1 Classifier Ref
Unsigned 8-bit integer
Classifier Reference
docsis_tlv.clsfr.rulepri .5 Rule Priority
Unsigned 8-bit integer
Rule Priority
docsis_tlv.clsfr.sflowid .4 Service Flow ID
Unsigned 16-bit integer
Service Flow ID
docsis_tlv.clsfr.sflowref .3 Service Flow Ref
Unsigned 16-bit integer
Service Flow Reference
docsis_tlv.clsfr.vendor .43 Vendor Specific Encodings
Byte array
Vendor Specific Encodings
docsis_tlv.cmmic 6 CM MIC
Byte array
Cable Modem Message Integrity Check
docsis_tlv.cmtsmic 7 CMTS MIC
Byte array
CMTS Message Integrity Check
docsis_tlv.cos 4 COS Encodings
Byte array
4 COS Encodings
docsis_tlv.cos.id .1 Class ID
Unsigned 8-bit integer
Class ID
docsis_tlv.cos.maxdown .2 Max Downstream Rate (bps)
Unsigned 32-bit integer
Max Downstream Rate
docsis_tlv.cos.maxup .3 Max Upstream Rate (bps)
Unsigned 32-bit integer
Max Upstream Rate
docsis_tlv.cos.maxupburst .6 Maximum Upstream Burst
Unsigned 16-bit integer
Maximum Upstream Burst
docsis_tlv.cos.mingrntdup .5 Guaranteed Upstream Rate
Unsigned 32-bit integer
Guaranteed Minimum Upstream Data Rate
docsis_tlv.cos.privacy_enable .7 COS Privacy Enable
Boolean
Class of Service Privacy Enable
docsis_tlv.cos.sid .2 Service ID
Unsigned 16-bit integer
Service ID
docsis_tlv.cos.upchnlpri .4 Upstream Channel Priority
Unsigned 8-bit integer
Upstream Channel Priority
docsis_tlv.cosign_cvc 33 Co-Signer CVC
Byte array
Co-Signer CVC
docsis_tlv.cpe_ether 14 CPE Ethernet Addr
6-byte Hardware (MAC) Address
CPE Ethernet Addr
docsis_tlv.downclsfr 23 Downstream Classifier
Byte array
23 Downstream Classifier
docsis_tlv.downfreq 1 Downstream Frequency
Unsigned 32-bit integer
Downstream Frequency
docsis_tlv.downsflow 25 Downstream Service Flow
Byte array
25 Downstream Service Flow
docsis_tlv.hmac_digest 27 HMAC Digest
Byte array
HMAC Digest
docsis_tlv.key_seq 31 Key Sequence Number
Byte array
Key Sequence Number
docsis_tlv.map.docsver .2 Docsis Version
Unsigned 8-bit integer
DOCSIS Version
docsis_tlv.maxclass 28 Max # of Classifiers
Unsigned 16-bit integer
Max # of Classifiers
docsis_tlv.maxcpe 18 Max # of CPE's
Unsigned 8-bit integer
Max Number of CPE's
docsis_tlv.mcap 5 Modem Capabilities
Byte array
Modem Capabilities
docsis_tlv.mcap.concat .1 Concatenation Support
Boolean
Concatenation Support
docsis_tlv.mcap.dcc .12 DCC Support
Boolean
DCC Support
docsis_tlv.mcap.dot1pfiltering .9 802.1P Filtering Support
Unsigned 8-bit integer
802.1P Filtering Support
docsis_tlv.mcap.dot1qfilt .9 802.1Q Filtering Support
Unsigned 8-bit integer
802.1Q Filtering Support
docsis_tlv.mcap.downsaid .7 # Downstream SAIDs Supported
Unsigned 8-bit integer
Downstream Said Support
docsis_tlv.mcap.frag .3 Fragmentation Support
Boolean
Fragmentation Support
docsis_tlv.mcap.igmp .5 IGMP Support
Boolean
IGMP Support
docsis_tlv.mcap.numtaps .11 # Xmit Equalizer Taps
Unsigned 8-bit integer
Number of Transmit Equalizer Taps
docsis_tlv.mcap.phs .4 PHS Support
Boolean
PHS Support
docsis_tlv.mcap.privacy .6 Privacy Support
Boolean
Privacy Support
docsis_tlv.mcap.tapspersym .10 Xmit Equalizer Taps/Sym
Unsigned 8-bit integer
Transmit Equalizer Taps per Symbol
docsis_tlv.mcap.upsid .8 # Upstream SAIDs Supported
Unsigned 8-bit integer
Upstream SID Support
docsis_tlv.mfgr_cvc 32 Manufacturer CVC
Byte array
Manufacturer CVC
docsis_tlv.modemaddr 12 Modem IP Address
IPv4 address
Modem IP Address
docsis_tlv.netaccess 3 Network Access
Boolean
Network Access TLV
docsis_tlv.phs 26 PHS Rules
Byte array
PHS Rules
docsis_tlv.phs.classid .2 Classifier Id
Unsigned 16-bit integer
Classifier Id
docsis_tlv.phs.classref .1 Classifier Reference
Unsigned 8-bit integer
Classifier Reference
docsis_tlv.phs.dscaction .5 DSC Action
Unsigned 8-bit integer
Dynamic Service Change Action
docsis_tlv.phs.err .6 Error Encodings
Byte array
Error Encodings
docsis_tlv.phs.err.code ..2 Error Code
Unsigned 8-bit integer
Error Code
docsis_tlv.phs.err.msg ..3 Error Message
String
Error Message
docsis_tlv.phs.err.param ..1 Param Subtype
Unsigned 8-bit integer
Parameter Subtype
docsis_tlv.phs.phsf .7 PHS Field
Byte array
PHS Field
docsis_tlv.phs.phsi .8 PHS Index
Unsigned 8-bit integer
PHS Index
docsis_tlv.phs.phsm .9 PHS Mask
Byte array
PHS Mask
docsis_tlv.phs.phss .10 PHS Size
Unsigned 8-bit integer
PHS Size
docsis_tlv.phs.phsv .11 PHS Verify
Boolean
PHS Verify
docsis_tlv.phs.sflowid .4 Service flow Id
Unsigned 16-bit integer
Service Flow Id
docsis_tlv.phs.sflowref .3 Service flow reference
Unsigned 16-bit integer
Service Flow Reference
docsis_tlv.phs.vendorspec .43 PHS Vendor Specific
Byte array
PHS Vendor Specific
docsis_tlv.rng_tech Ranging Technique
Unsigned 8-bit integer
Ranging Technique
docsis_tlv.sflow.act_timeout .12 Timeout for Active Params (secs)
Unsigned 16-bit integer
Timeout for Active Params (secs)
docsis_tlv.sflow.adm_timeout .13 Timeout for Admitted Params (secs)
Unsigned 16-bit integer
Timeout for Admitted Params (secs)
docsis_tlv.sflow.assumed_min_pkt_size .11 Assumed Min Reserved Packet Size
Unsigned 16-bit integer
Assumed Minimum Reserved Packet Size
docsis_tlv.sflow.cname .4 Service Class Name
String
Service Class Name
docsis_tlv.sflow.err .5 Error Encodings
Byte array
Error Encodings
docsis_tlv.sflow.err.code ..2 Error Code
Unsigned 8-bit integer
Error Code
docsis_tlv.sflow.err.msg ..3 Error Message
String
Error Message
docsis_tlv.sflow.err.param ..1 Param Subtype
Unsigned 8-bit integer
Parameter Subtype
docsis_tlv.sflow.grnts_per_intvl .22 Grants Per Interval
Unsigned 8-bit integer
Grants Per Interval
docsis_tlv.sflow.id .2 Service Flow Id
Unsigned 32-bit integer
Service Flow Id
docsis_tlv.sflow.iptos_overwrite .23 IP TOS Overwrite
Unsigned 16-bit integer
IP TOS Overwrite
docsis_tlv.sflow.max_down_lat .14 Maximum Downstream Latency (usec)
Unsigned 32-bit integer
Maximum Downstream Latency (usec)
docsis_tlv.sflow.maxburst .9 Maximum Burst (bps)
Unsigned 32-bit integer
Maximum Burst (bps)
docsis_tlv.sflow.maxconcat .14 Max Concat Burst
Unsigned 16-bit integer
Max Concatenated Burst
docsis_tlv.sflow.maxtrafrate .8 Maximum Sustained Traffic Rate (bps)
Unsigned 32-bit integer
Maximum Sustained Traffic Rate (bps)
docsis_tlv.sflow.mintrafrate .10 Minimum Traffic Rate (bps)
Unsigned 32-bit integer
Minimum Traffic Rate (bps)
docsis_tlv.sflow.nom_grant_intvl .20 Nominal Grant Interval (usec)
Unsigned 32-bit integer
Nominal Grant Interval (usec)
docsis_tlv.sflow.nominal_polling .17 Nominal Polling Interval(usec)
Unsigned 32-bit integer
Nominal Polling Interval(usec)
docsis_tlv.sflow.qos .6 QOS Parameter Set
Unsigned 8-bit integer
QOS Parameter Set
docsis_tlv.sflow.ref .1 Service Flow Ref
Unsigned 16-bit integer
Service Flow Reference
docsis_tlv.sflow.reqxmitpol .16 Request/Transmission Policy
Unsigned 32-bit integer
Request/Transmission Policy
docsis_tlv.sflow.schedtype .15 Scheduling Type
Unsigned 32-bit integer
Scheduling Type
docsis_tlv.sflow.sid .3 Service Identifier
Unsigned 16-bit integer
Service Identifier
docsis_tlv.sflow.tol_grant_jitter .21 Tolerated Grant Jitter (usec)
Unsigned 32-bit integer
Tolerated Grant Jitter (usec)
docsis_tlv.sflow.toler_jitter .18 Tolerated Poll Jitter (usec)
Unsigned 32-bit integer
Tolerated Poll Jitter (usec)
docsis_tlv.sflow.trafpri .7 Traffic Priority
Unsigned 8-bit integer
Traffic Priority
docsis_tlv.sflow.ugs_size .19 Unsolicited Grant Size (bytes)
Unsigned 16-bit integer
Unsolicited Grant Size (bytes)
docsis_tlv.sflow.ugs_timeref .24 UGS Time Reference
Unsigned 32-bit integer
UGS Time Reference
docsis_tlv.sflow.vendorspec .43 Vendor Specific Encodings
Byte array
Vendor Specific Encodings
docsis_tlv.snmp_access 10 SNMP Write Access
Byte array
SNMP Write Access
docsis_tlv.snmp_obj 11 SNMP Object
Byte array
SNMP Object
docsis_tlv.snmpv3 34 SNMPv3 Kickstart Value
Byte array
SNMPv3 Kickstart Value
docsis_tlv.snmpv3.publicnum .2 SNMPv3 Kickstart Manager Public Number
Byte array
SNMPv3 Kickstart Value Manager Public Number
docsis_tlv.snmpv3.secname .1 SNMPv3 Kickstart Security Name
String
SNMPv3 Kickstart Security Name
docsis_tlv.subsfltrgrps 37 Subscriber Management Filter Groups
Byte array
Subscriber Management Filter Groups
docsis_tlv.subsipentry Subscriber Management CPE IP Entry
IPv4 address
Subscriber Management CPE IP Entry
docsis_tlv.subsiptable 36 Subscriber Management CPE IP Table
Byte array
Subscriber Management CPE IP Table
docsis_tlv.subsmgmtctrl 35 Subscriber Management Control
Byte array
Subscriber Management Control
docsis_tlv.svcunavail 13 Service Not Available Response
Byte array
Service Not Available Response
docsis_tlv.svcunavail.classid Service Not Available: (Class ID)
Unsigned 8-bit integer
Service Not Available (Class ID)
docsis_tlv.svcunavail.code Service Not Available (Code)
Unsigned 8-bit integer
Service Not Available (Code)
docsis_tlv.svcunavail.type Service Not Available (Type)
Unsigned 8-bit integer
Service Not Available (Type)
docsis_tlv.sw_upg_file 9 Software Upgrade File
String
Software Upgrade File
docsis_tlv.sw_upg_srvr 21 Software Upgrade Server
IPv4 address
Software Upgrade Server
docsis_tlv.tftp_time 19 TFTP Server Timestamp
Unsigned 32-bit integer
TFTP Server TimeStamp
docsis_tlv.tftpmodemaddr 20 TFTP Server Provisioned Modem Addr
IPv4 address
TFTP Server Provisioned Modem Addr
docsis_tlv.upchid 2 Upstream Channel ID
Unsigned 8-bit integer
Service Identifier
docsis_tlv.upclsfr 22 Upstream Classifier
Byte array
22 Upstream Classifier
docsis_tlv.upsflow 24 Upstream Service Flow
Byte array
24 Upstream Service Flow
docsis_tlv.vendorid 8 Vendor ID
Byte array
Vendor Identifier
docsis_tlv.vendorspec 43 Vendor Specific Encodings
Byte array
Vendor Specific Encodings
docsis_bpkmattr.auth_key 7 Auth Key
Byte array
Auth Key
docsis_bpkmattr.bpiver 22 BPI Version
Unsigned 8-bit integer
BPKM Attributes
docsis_bpkmattr.cacert 17 CA Certificate
Byte array
CA Certificate
docsis_bpkmattr.cbciv 14 CBC IV
Byte array
Cypher Block Chaining
docsis_bpkmattr.cmcert 18 CM Certificate
Byte array
CM Certificate
docsis_bpkmattr.cmid 5 CM Identification
Byte array
CM Identification
docsis_bpkmattr.crypto_suite_lst 21 Cryptographic Suite List
Byte array
Cryptographic Suite
docsis_bpkmattr.cryptosuite 20 Cryptographic Suite
Unsigned 16-bit integer
Cryptographic Suite
docsis_bpkmattr.dispstr 6 Display String
String
Display String
docsis_bpkmattr.dnld_params 28 Download Parameters
Byte array
Download Parameters
docsis_bpkmattr.errcode 16 Error Code
Unsigned 8-bit integer
Error Code
docsis_bpkmattr.hmacdigest 11 HMAC Digest
Byte array
HMAC Digest
docsis_bpkmattr.ipaddr 27 IP Address
IPv4 address
IP Address
docsis_bpkmattr.keylife 9 Key Lifetime (s)
Unsigned 32-bit integer
Key Lifetime (s)
docsis_bpkmattr.keyseq 10 Key Sequence Number
Unsigned 8-bit integer
Key Sequence Number
docsis_bpkmattr.macaddr 3 Mac Address
6-byte Hardware (MAC) Address
Mac Address
docsis_bpkmattr.manfid 2 Manufacturer Id
Byte array
Manufacturer Id
docsis_bpkmattr.rsa_pub_key 4 RSA Public Key
Byte array
RSA Public Key
docsis_bpkmattr.sadescr 23 SA Descriptor
Byte array
SA Descriptor
docsis_bpkmattr.said 12 SAID
Unsigned 16-bit integer
Security Association ID
docsis_bpkmattr.saquery 25 SA Query
Byte array
SA Query
docsis_bpkmattr.saquery_type 26 SA Query Type
Unsigned 8-bit integer
SA Query Type
docsis_bpkmattr.satype 24 SA Type
Unsigned 8-bit integer
SA Type
docsis_bpkmattr.seccap 19 Security Capabilities
Byte array
Security Capabilities
docsis_bpkmattr.serialnum 1 Serial Number
String
Serial Number
docsis_bpkmattr.tek 8 Traffic Encryption Key
Byte array
Traffic Encryption Key
docsis_bpkmattr.tekparams 13 TEK Parameters
Byte array
TEK Parameters
docsis_bpkmattr.vendordef 127 Vendor Defined
Byte array
Vendor Defined
docsis_bpkmreq.code BPKM Code
Unsigned 8-bit integer
BPKM Request Message
docsis_bpkmreq.ident BPKM Identifier
Unsigned 8-bit integer
BPKM Identifier
docsis_bpkmreq.length BPKM Length
Unsigned 16-bit integer
BPKM Length
docsis_bpkmrsp.code BPKM Code
Unsigned 8-bit integer
BPKM Response Message
docsis_bpkmrsp.ident BPKM Identifier
Unsigned 8-bit integer
BPKM Identifier
docsis_bpkmrsp.length BPKM Length
Unsigned 16-bit integer
BPKM Length
docsis_dccack.hmac_digest HMAC-DigestNumber
Byte array
HMAC-DigestNumber
docsis_dccack.key_seq_num Auth Key Sequence Number
Unsigned 8-bit integer
Auth Key Sequence Number
docsis_dccack.tran_id Transaction ID
Unsigned 16-bit integer
Transaction ID
docsis_dccreq.cmts_mac_addr CMTS Mac Address
6-byte Hardware (MAC) Address
CMTS Mac Address
docsis_dccreq.ds_chan_id Downstream Channel ID
Unsigned 8-bit integer
Downstream Channel ID
docsis_dccreq.ds_freq Frequency
Unsigned 32-bit integer
Frequency
docsis_dccreq.ds_intlv_depth_i Interleaver Depth I Value
Unsigned 8-bit integer
Interleaver Depth I Value
docsis_dccreq.ds_intlv_depth_j Interleaver Depth J Value
Unsigned 8-bit integer
Interleaver Depth J Value
docsis_dccreq.ds_mod_type Modulation Type
Unsigned 8-bit integer
Modulation Type
docsis_dccreq.ds_sym_rate Symbol Rate
Unsigned 8-bit integer
Symbol Rate
docsis_dccreq.ds_sync_sub SYNC Substitution
Unsigned 8-bit integer
SYNC Substitution
docsis_dccreq.hmac_digest HMAC-DigestNumber
Byte array
HMAC-DigestNumber
docsis_dccreq.init_tech Initialization Technique
Unsigned 8-bit integer
Initialization Technique
docsis_dccreq.key_seq_num Auth Key Sequence Number
Unsigned 8-bit integer
Auth Key Sequence Number
docsis_dccreq.said_sub_cur SAID Sub - Current Value
Unsigned 16-bit integer
SAID Sub - Current Value
docsis_dccreq.said_sub_new SAID Sub - New Value
Unsigned 16-bit integer
SAID Sub - New Value
docsis_dccreq.sf_sfid_cur SF Sub - SFID Current Value
Unsigned 32-bit integer
SF Sub - SFID Current Value
docsis_dccreq.sf_sfid_new SF Sub - SFID New Value
Unsigned 32-bit integer
SF Sub - SFID New Value
docsis_dccreq.sf_sid_cur SF Sub - SID Current Value
Unsigned 16-bit integer
SF Sub - SID Current Value
docsis_dccreq.sf_sid_new SF Sub - SID New Value
Unsigned 16-bit integer
SF Sub - SID New Value
docsis_dccreq.sf_unsol_grant_tref SF Sub - Unsolicited Grant Time Reference
Unsigned 32-bit integer
SF Sub - Unsolicited Grant Time Reference
docsis_dccreq.tran_id Transaction ID
Unsigned 16-bit integer
Transaction ID
docsis_dccreq.ucd_sub UCD Substitution
Byte array
UCD Substitution
docsis_dccreq.up_chan_id Up Channel ID
Unsigned 8-bit integer
Up Channel ID
docsis_dccrsp.cm_jump_time_length Jump Time Length
Unsigned 32-bit integer
Jump Time Length
docsis_dccrsp.cm_jump_time_start Jump Time Start
Unsigned 64-bit integer
Jump Time Start
docsis_dccrsp.conf_code Confirmation Code
Unsigned 8-bit integer
Confirmation Code
docsis_dccrsp.hmac_digest HMAC-DigestNumber
Byte array
HMAC-DigestNumber
docsis_dccrsp.key_seq_num Auth Key Sequence Number
Unsigned 8-bit integer
Auth Key Sequence Number
docsis_dccrsp.tran_id Transaction ID
Unsigned 16-bit integer
Transaction ID
docsis_dcd.cfg_chan DSG Configuration Channel
Unsigned 32-bit integer
DSG Configuration Channel
docsis_dcd.cfg_tdsg1 DSG Initialization Timeout (Tdsg1)
Unsigned 16-bit integer
DSG Initialization Timeout (Tdsg1)
docsis_dcd.cfg_tdsg2 DSG Operational Timeout (Tdsg2)
Unsigned 16-bit integer
DSG Operational Timeout (Tdsg2)
docsis_dcd.cfg_tdsg3 DSG Two-Way Retry Timer (Tdsg3)
Unsigned 16-bit integer
DSG Two-Way Retry Timer (Tdsg3)
docsis_dcd.cfg_tdsg4 DSG One-Way Retry Timer (Tdsg4)
Unsigned 16-bit integer
DSG One-Way Retry Timer (Tdsg4)
docsis_dcd.cfg_vendor_spec DSG Configuration Vendor Specific Parameters
Byte array
DSG Configuration Vendor Specific Parameters
docsis_dcd.cfr_id Downstream Classifier Id
Unsigned 16-bit integer
Downstream Classifier Id
docsis_dcd.cfr_ip_dest_addr Downstream Classifier IP Destination Address
IPv4 address
Downstream Classifier IP Destination Address
docsis_dcd.cfr_ip_dest_mask Downstream Classifier IP Destination Mask
IPv4 address
Downstream Classifier IP Destination Address
docsis_dcd.cfr_ip_source_addr Downstream Classifier IP Source Address
IPv4 address
Downstream Classifier IP Source Address
docsis_dcd.cfr_ip_source_mask Downstream Classifier IP Source Mask
IPv4 address
Downstream Classifier IP Source Mask
docsis_dcd.cfr_ip_tcpudp_dstport_end Downstream Classifier IP TCP/UDP Destination Port End
Unsigned 16-bit integer
Downstream Classifier IP TCP/UDP Destination Port End
docsis_dcd.cfr_ip_tcpudp_dstport_start Downstream Classifier IP TCP/UDP Destination Port Start
Unsigned 16-bit integer
Downstream Classifier IP TCP/UDP Destination Port Start
docsis_dcd.cfr_ip_tcpudp_srcport_end Downstream Classifier IP TCP/UDP Source Port End
Unsigned 16-bit integer
Downstream Classifier IP TCP/UDP Source Port End
docsis_dcd.cfr_ip_tcpudp_srcport_start Downstream Classifier IP TCP/UDP Source Port Start
Unsigned 16-bit integer
Downstream Classifier IP TCP/UDP Source Port Start
docsis_dcd.cfr_rule_pri Downstream Classifier Rule Priority
Unsigned 8-bit integer
Downstream Classifier Rule Priority
docsis_dcd.clid_app_id DSG Rule Client ID Application ID
Unsigned 16-bit integer
DSG Rule Client ID Application ID
docsis_dcd.clid_ca_sys_id DSG Rule Client ID CA System ID
Unsigned 16-bit integer
DSG Rule Client ID CA System ID
docsis_dcd.clid_known_mac_addr DSG Rule Client ID Known MAC Address
6-byte Hardware (MAC) Address
DSG Rule Client ID Known MAC Address
docsis_dcd.config_ch_cnt Configuration Change Count
Unsigned 8-bit integer
Configuration Change Count
docsis_dcd.frag_sequence_num Fragment Sequence Number
Unsigned 8-bit integer
Fragment Sequence Number
docsis_dcd.num_of_frag Number of Fragments
Unsigned 8-bit integer
Number of Fragments
docsis_dcd.rule_cfr_id DSG Rule Classifier ID
Unsigned 16-bit integer
DSG Rule Classifier ID
docsis_dcd.rule_id DSG Rule Id
Unsigned 8-bit integer
DSG Rule Id
docsis_dcd.rule_pri DSG Rule Priority
Unsigned 8-bit integer
DSG Rule Priority
docsis_dcd.rule_tunl_addr DSG Rule Tunnel MAC Address
6-byte Hardware (MAC) Address
DSG Rule Tunnel MAC Address
docsis_dcd.rule_ucid_list DSG Rule UCID Range
Byte array
DSG Rule UCID Range
docsis_dcd.rule_vendor_spec DSG Rule Vendor Specific Parameters
Byte array
DSG Rule Vendor Specific Parameters
docsis_dsaack.confcode Confirmation Code
Unsigned 8-bit integer
Confirmation Code
docsis_dsaack.tranid Transaction Id
Unsigned 16-bit integer
Service Identifier
docsis_dsareq.tranid Transaction Id
Unsigned 16-bit integer
Transaction Id
docsis_dsarsp.confcode Confirmation Code
Unsigned 8-bit integer
Confirmation Code
docsis_dsarsp.tranid Transaction Id
Unsigned 16-bit integer
Service Identifier
docsis_dscack.confcode Confirmation Code
Unsigned 8-bit integer
Confirmation Code
docsis_dscack.tranid Transaction Id
Unsigned 16-bit integer
Service Identifier
docsis_dscreq.tranid Transaction Id
Unsigned 16-bit integer
Transaction Id
docsis_dscrsp.confcode Confirmation Code
Unsigned 8-bit integer
Confirmation Code
docsis_dscrsp.tranid Transaction Id
Unsigned 16-bit integer
Service Identifier
docsis_dsdreq.rsvd Reserved
Unsigned 16-bit integer
Reserved
docsis_dsdreq.sfid Service Flow ID
Unsigned 32-bit integer
Service Flow Id
docsis_dsdreq.tranid Transaction Id
Unsigned 16-bit integer
Transaction Id
docsis_dsdrsp.confcode Confirmation Code
Unsigned 8-bit integer
Confirmation Code
docsis_dsdrsp.rsvd Reserved
Unsigned 8-bit integer
Reserved
docsis_dsdrsp.tranid Transaction Id
Unsigned 16-bit integer
Transaction Id
docsis_intrngreq.downchid Downstream Channel ID
Unsigned 8-bit integer
Downstream Channel ID
docsis_intrngreq.sid Service Identifier
Unsigned 16-bit integer
Service Identifier
docsis_intrngreq.upchid Upstream Channel ID
Unsigned 8-bit integer
Upstream Channel ID
docsis_mgmt.control Control [0x03]
Unsigned 8-bit integer
Control
docsis_mgmt.dsap DSAP [0x00]
Unsigned 8-bit integer
Destination SAP
docsis_mgmt.dst Destination Address
6-byte Hardware (MAC) Address
Destination Address
docsis_mgmt.msglen Message Length - DSAP to End (Bytes)
Unsigned 16-bit integer
Message Length
docsis_mgmt.rsvd Reserved [0x00]
Unsigned 8-bit integer
Reserved
docsis_mgmt.src Source Address
6-byte Hardware (MAC) Address
Source Address
docsis_mgmt.ssap SSAP [0x00]
Unsigned 8-bit integer
Source SAP
docsis_mgmt.type Type
Unsigned 8-bit integer
Type
docsis_mgmt.version Version
Unsigned 8-bit integer
Version
docsis_rngreq.downchid Downstream Channel ID
Unsigned 8-bit integer
Downstream Channel ID
docsis_rngreq.pendcomp Pending Till Complete
Unsigned 8-bit integer
Upstream Channel ID
docsis_rngreq.sid Service Identifier
Unsigned 16-bit integer
Service Identifier
docsis_rngrsp.chid_override Upstream Channel ID Override
Unsigned 8-bit integer
Upstream Channel ID Override
docsis_rngrsp.freq_over Downstream Frequency Override (Hz)
Unsigned 32-bit integer
Downstream Frequency Override
docsis_rngrsp.freqadj Offset Freq Adjust (Hz)
Signed 16-bit integer
Frequency Adjust
docsis_rngrsp.poweradj Power Level Adjust (0.25dB units)
Signed 8-bit integer
Power Level Adjust
docsis_rngrsp.rng_stat Ranging Status
Unsigned 8-bit integer
Ranging Status
docsis_rngrsp.sid Service Identifier
Unsigned 16-bit integer
Service Identifier
docsis_rngrsp.timingadj Timing Adjust (6.25us/64)
Signed 32-bit integer
Timing Adjust
docsis_rngrsp.upchid Upstream Channel ID
Unsigned 8-bit integer
Upstream Channel ID
docsis_rngrsp.xmit_eq_adj Transmit Equalisation Adjust
Byte array
Timing Equalisation Adjust
docsis_regack.respnse Response Code
Unsigned 8-bit integer
Response Code
docsis_regack.sid Service Identifier
Unsigned 16-bit integer
Service Identifier
docsis_regreq.sid Service Identifier
Unsigned 16-bit integer
Service Identifier
docsis_regrsp.respnse Response Code
Unsigned 8-bit integer
Response Code
docsis_regrsp.sid Service Identifier
Unsigned 16-bit integer
Service Identifier
docsis_map.acktime ACK Time (minislots)
Unsigned 32-bit integer
Ack Time (minislots)
docsis_map.allocstart Alloc Start Time (minislots)
Unsigned 32-bit integer
Alloc Start Time (minislots)
docsis_map.data_end Data Backoff End
Unsigned 8-bit integer
Data Backoff End
docsis_map.data_start Data Backoff Start
Unsigned 8-bit integer
Data Backoff Start
docsis_map.ie Information Element
Unsigned 32-bit integer
Information Element
docsis_map.iuc Interval Usage Code
Unsigned 32-bit integer
Interval Usage Code
docsis_map.numie Number of IE's
Unsigned 8-bit integer
Number of Information Elements
docsis_map.offset Offset
Unsigned 32-bit integer
Offset
docsis_map.rng_end Ranging Backoff End
Unsigned 8-bit integer
Ranging Backoff End
docsis_map.rng_start Ranging Backoff Start
Unsigned 8-bit integer
Ranging Backoff Start
docsis_map.rsvd Reserved [0x00]
Unsigned 8-bit integer
Reserved Byte
docsis_map.sid Service Identifier
Unsigned 32-bit integer
Service Identifier
docsis_map.ucdcount UCD Count
Unsigned 8-bit integer
Map UCD Count
docsis_map.upchid Upstream Channel ID
Unsigned 8-bit integer
Upstream Channel ID
docsis_uccreq.upchid Upstream Channel Id
Unsigned 8-bit integer
Upstream Channel Id
docsis_uccrsp.upchid Upstream Channel Id
Unsigned 8-bit integer
Upstream Channel Id
docsis_ucd.burst.diffenc 2 Differential Encoding
Unsigned 8-bit integer
Differential Encoding
docsis_ucd.burst.fec 5 FEC (T)
Unsigned 8-bit integer
FEC (T) Codeword Parity Bits = 2^T
docsis_ucd.burst.fec_codeword 6 FEC Codeword Info bytes (k)
Unsigned 8-bit integer
FEC Codeword Info Bytes (k)
docsis_ucd.burst.guardtime 9 Guard Time Size (Symbol Times)
Unsigned 8-bit integer
Guard Time Size
docsis_ucd.burst.last_cw_len 10 Last Codeword Length
Unsigned 8-bit integer
Last Codeword Length
docsis_ucd.burst.maxburst 8 Max Burst Size (Minislots)
Unsigned 8-bit integer
Max Burst Size (Minislots)
docsis_ucd.burst.modtype 1 Modulation Type
Unsigned 8-bit integer
Modulation Type
docsis_ucd.burst.preamble_len 3 Preamble Length (Bits)
Unsigned 16-bit integer
Preamble Length (Bits)
docsis_ucd.burst.preamble_off 4 Preamble Offset (Bits)
Unsigned 16-bit integer
Preamble Offset (Bits)
docsis_ucd.burst.preambletype 14 Preamble Type
Unsigned 8-bit integer
Preamble Type
docsis_ucd.burst.rsintblock 13 RS Interleaver Block Size
Unsigned 8-bit integer
R-S Interleaver Block
docsis_ucd.burst.rsintdepth 12 RS Interleaver Depth
Unsigned 8-bit integer
R-S Interleaver Depth
docsis_ucd.burst.scdmacodespersubframe 16 SCDMA Codes per Subframe
Unsigned 8-bit integer
SCDMA Codes per Subframe
docsis_ucd.burst.scdmaframerintstepsize 17 SDMA Framer Int Step Size
Unsigned 8-bit integer
SCDMA Framer Interleaving Step Size
docsis_ucd.burst.scdmascrambleronoff 15 SCDMA Scrambler On/Off
Unsigned 8-bit integer
SCDMA Scrambler On/Off
docsis_ucd.burst.scrambler_seed 7 Scrambler Seed
Unsigned 16-bit integer
Burst Descriptor
docsis_ucd.burst.scrambleronoff 11 Scrambler On/Off
Unsigned 8-bit integer
Scrambler On/Off
docsis_ucd.burst.tcmenabled 18 TCM Enable
Unsigned 8-bit integer
TCM Enabled
docsis_ucd.confcngcnt Config Change Count
Unsigned 8-bit integer
Configuration Change Count
docsis_ucd.downchid Downstream Channel ID
Unsigned 8-bit integer
Management Message
docsis_ucd.freq Frequency (Hz)
Unsigned 32-bit integer
Upstream Center Frequency
docsis_ucd.iuc Interval Usage Code
Unsigned 8-bit integer
Interval Usage Code
docsis_ucd.length TLV Length
Unsigned 8-bit integer
Channel TLV length
docsis_ucd.mslotsize Mini Slot Size (6.25us TimeTicks)
Unsigned 8-bit integer
Mini Slot Size (6.25us TimeTicks)
docsis_ucd.preamble Preamble Pattern
Byte array
Preamble Superstring
docsis_ucd.symrate Symbol Rate (ksym/sec)
Unsigned 8-bit integer
Symbol Rate
docsis_ucd.type TLV Type
Unsigned 8-bit integer
Channel TLV type
docsis_ucd.upchid Upstream Channel ID
Unsigned 8-bit integer
Upstream Channel ID
docsis_type29ucd.burst.diffenc 2 Differential Encoding
Unsigned 8-bit integer
Differential Encoding
docsis_type29ucd.burst.fec 5 FEC (T)
Unsigned 8-bit integer
FEC (T) Codeword Parity Bits = 2^T
docsis_type29ucd.burst.fec_codeword 6 FEC Codeword Info bytes (k)
Unsigned 8-bit integer
FEC Codeword Info Bytes (k)
docsis_type29ucd.burst.guardtime 9 Guard Time Size (Symbol Times)
Unsigned 8-bit integer
Guard Time Size
docsis_type29ucd.burst.last_cw_len 10 Last Codeword Length
Unsigned 8-bit integer
Last Codeword Length
docsis_type29ucd.burst.maxburst 8 Max Burst Size (Minislots)
Unsigned 8-bit integer
Max Burst Size (Minislots)
docsis_type29ucd.burst.modtype 1 Modulation Type
Unsigned 8-bit integer
Modulation Type
docsis_type29ucd.burst.preamble_len 3 Preamble Length (Bits)
Unsigned 16-bit integer
Preamble Length (Bits)
docsis_type29ucd.burst.preamble_off 4 Preamble Offset (Bits)
Unsigned 16-bit integer
Preamble Offset (Bits)
docsis_type29ucd.burst.preambletype 14 Scrambler On/Off
Unsigned 8-bit integer
Preamble Type
docsis_type29ucd.burst.rsintblock 13 Scrambler On/Off
Unsigned 8-bit integer
R-S Interleaver Block
docsis_type29ucd.burst.rsintdepth 12 Scrambler On/Off
Unsigned 8-bit integer
R-S Interleaver Depth
docsis_type29ucd.burst.scdmacodespersubframe 16 Scrambler On/Off
Unsigned 8-bit integer
SCDMA Codes per Subframe
docsis_type29ucd.burst.scdmaframerintstepsize 17 Scrambler On/Off
Unsigned 8-bit integer
SCDMA Framer Interleaving Step Size
docsis_type29ucd.burst.scdmascrambleronoff 15 Scrambler On/Off
Unsigned 8-bit integer
SCDMA Scrambler On/Off
docsis_type29ucd.burst.scrambler_seed 7 Scrambler Seed
Unsigned 16-bit integer
Burst Descriptor
docsis_type29ucd.burst.scrambleronoff 11 Scrambler On/Off
Unsigned 8-bit integer
Scrambler On/Off
docsis_type29ucd.burst.tcmenabled 18 Scrambler On/Off
Unsigned 8-bit integer
TCM Enabled
docsis_type29ucd.confcngcnt Config Change Count
Unsigned 8-bit integer
Configuration Change Count
docsis_type29ucd.downchid Downstream Channel ID
Unsigned 8-bit integer
Management Message
docsis_type29ucd.extpreamble 6 Extended Preamble Pattern
Byte array
Extended Preamble Pattern
docsis_type29ucd.freq 2 Frequency (Hz)
Unsigned 32-bit integer
Upstream Center Frequency
docsis_type29ucd.iuc Interval Usage Code
Unsigned 8-bit integer
Interval Usage Code
docsis_type29ucd.maintainpowerspectraldensity 15 Maintain power spectral density
Byte array
Maintain power spectral density
docsis_type29ucd.mslotsize Mini Slot Size (6.25us TimeTicks)
Unsigned 8-bit integer
Mini Slot Size (6.25us TimeTicks)
docsis_type29ucd.preamble 3 Preamble Pattern
Byte array
Preamble Superstring
docsis_type29ucd.rangingrequired 16 Ranging Required
Byte array
Ranging Required
docsis_type29ucd.scdmaactivecodes 10 SCDMA Active Codes
Byte array
SCDMA Active Codes
docsis_type29ucd.scdmacodehoppingseed 11 SCDMA Code Hopping Seed
Byte array
SCDMA Code Hopping Seed
docsis_type29ucd.scdmacodesperminislot 9 SCDMA Codes per mini slot
Byte array
SCDMA Codes per mini slot
docsis_type29ucd.scdmaenable 7 SCDMA Mode Enable
Byte array
SCDMA Mode Enable
docsis_type29ucd.scdmaspreadinginterval 8 SCDMA Spreading Interval
Byte array
SCDMA Spreading Interval
docsis_type29ucd.scdmatimestamp 14 SCDMA Timestamp Snapshot
Byte array
SCDMA Timestamp Snapshot
docsis_type29ucd.scdmausratiodenom 13 SCDMA US Ratio Denominator
Byte array
SCDMA US Ratio Denominator
docsis_type29ucd.scdmausrationum 12 SCDMA US Ratio Numerator
Byte array
SCDMA US Ratio Numerator
docsis_type29ucd.symrate 1 Symbol Rate (ksym/sec)
Unsigned 8-bit integer
Symbol Rate
docsis_type29ucd.upchid Upstream Channel ID
Unsigned 8-bit integer
Upstream Channel ID
docsis_vsif.cisco.iosfile IOS Config File
String
IOS Config File
docsis_vsif.cisco.ipprec IP Precedence Encodings
Byte array
IP Precedence Encodings
docsis_vsif.cisco.ipprec.bw IP Precedence Bandwidth
Unsigned 8-bit integer
IP Precedence Bandwidth
docsis_vsif.cisco.ipprec.value IP Precedence Value
Unsigned 8-bit integer
IP Precedence Value
docsis_vsif.cisco.numphones Number of phone lines
Unsigned 8-bit integer
Number of phone lines
docsis_vsif.unknown VSIF Encodings
Byte array
Unknown Vendor
docsis_vsif.vendorid Vendor Id
Unsigned 24-bit integer
Vendor Identifier
dua.asp_identifier ASP identifier
Unsigned 32-bit integer
dua.diagnostic_information Diagnostic information
Byte array
dua.dlci_channel Channel
Unsigned 16-bit integer
dua.dlci_one_bit One bit
Boolean
dua.dlci_reserved Reserved
Unsigned 16-bit integer
dua.dlci_spare Spare
Unsigned 16-bit integer
dua.dlci_v_bit V-bit
Boolean
dua.dlci_zero_bit Zero bit
Boolean
dua.error_code Error code
Unsigned 32-bit integer
dua.heartbeat_data Heartbeat data
Byte array
dua.info_string Info string
String
dua.int_interface_identifier Integer interface identifier
Unsigned 32-bit integer
dua.interface_range_end End
Unsigned 32-bit integer
dua.interface_range_start Start
Unsigned 32-bit integer
dua.message_class Message class
Unsigned 8-bit integer
dua.message_length Message length
Unsigned 32-bit integer
dua.message_type Message Type
Unsigned 8-bit integer
dua.parameter_length Parameter length
Unsigned 16-bit integer
dua.parameter_padding Parameter padding
Byte array
dua.parameter_tag Parameter Tag
Unsigned 16-bit integer
dua.parameter_value Parameter value
Byte array
dua.release_reason Reason
Unsigned 32-bit integer
dua.reserved Reserved
Unsigned 8-bit integer
dua.states States
Byte array
dua.status_identification Status identification
Unsigned 16-bit integer
dua.status_type Status type
Unsigned 16-bit integer
dua.tei_status TEI status
Unsigned 32-bit integer
dua.text_interface_identifier Text interface identifier
String
dua.traffic_mode_type Traffic mode type
Unsigned 32-bit integer
dua.version Version
Unsigned 8-bit integer
drda.ddm.codepoint Code point
Unsigned 16-bit integer
DDM code point
drda.ddm.ddmid Magic
Unsigned 8-bit integer
DDM magic
drda.ddm.fmt.bit0 Reserved
Boolean
DSSFMT reserved
drda.ddm.fmt.bit1 Chained
Boolean
DSSFMT chained
drda.ddm.fmt.bit2 Continue
Boolean
DSSFMT contine on error
drda.ddm.fmt.bit3 Same correlation
Boolean
DSSFMT same correlation
drda.ddm.fmt.dsstyp DSS type
Unsigned 8-bit integer
DSSFMT type
drda.ddm.format Format
Unsigned 8-bit integer
DDM format
drda.ddm.length Length
Unsigned 16-bit integer
DDM length
drda.ddm.length2 Length2
Unsigned 16-bit integer
DDM length2
drda.ddm.rqscrr CorrelId
Unsigned 16-bit integer
DDM correlation identifier
drda.param.codepoint Code point
Unsigned 16-bit integer
Param code point
drda.param.data Data (ASCII)
String
Param data left as ASCII for display
drda.param.length Length
Unsigned 16-bit integer
Param length
drda.sqlstatement SQL statement (ASCII)
String
SQL statement left as ASCII for display
drsuapi.DsBind.bind_guid bind_guid
drsuapi.DsBind.bind_handle bind_handle
Byte array
drsuapi.DsBind.bind_info bind_info
No value
drsuapi.DsBindInfo.info24 info24
No value
drsuapi.DsBindInfo.info28 info28
No value
drsuapi.DsBindInfo24.site_guid site_guid
drsuapi.DsBindInfo24.supported_extensions supported_extensions
Unsigned 32-bit integer
drsuapi.DsBindInfo24.u1 u1
Unsigned 32-bit integer
drsuapi.DsBindInfo28.repl_epoch repl_epoch
Unsigned 32-bit integer
drsuapi.DsBindInfo28.site_guid site_guid
drsuapi.DsBindInfo28.supported_extensions supported_extensions
Unsigned 32-bit integer
drsuapi.DsBindInfo28.u1 u1
Unsigned 32-bit integer
drsuapi.DsBindInfoCtr.info info
Unsigned 32-bit integer
drsuapi.DsBindInfoCtr.length length
Unsigned 32-bit integer
drsuapi.DsCrackNames.bind_handle bind_handle
Byte array
drsuapi.DsCrackNames.ctr ctr
Unsigned 32-bit integer
drsuapi.DsCrackNames.level level
Signed 32-bit integer
drsuapi.DsCrackNames.req req
Unsigned 32-bit integer
drsuapi.DsGetDCInfo01.server_nt4_account server_nt4_account
String
drsuapi.DsGetDCInfo01.unknown1 unknown1
Unsigned 32-bit integer
drsuapi.DsGetDCInfo01.unknown2 unknown2
Unsigned 32-bit integer
drsuapi.DsGetDCInfo01.unknown3 unknown3
Unsigned 32-bit integer
drsuapi.DsGetDCInfo01.unknown4 unknown4
Unsigned 32-bit integer
drsuapi.DsGetDCInfo01.unknown5 unknown5
Unsigned 32-bit integer
drsuapi.DsGetDCInfo01.unknown6 unknown6
Unsigned 32-bit integer
drsuapi.DsGetDCInfo1.computer_dn computer_dn
String
drsuapi.DsGetDCInfo1.dns_name dns_name
String
drsuapi.DsGetDCInfo1.is_enabled is_enabled
Unsigned 32-bit integer
drsuapi.DsGetDCInfo1.is_pdc is_pdc
Unsigned 32-bit integer
drsuapi.DsGetDCInfo1.netbios_name netbios_name
String
drsuapi.DsGetDCInfo1.server_dn server_dn
String
drsuapi.DsGetDCInfo1.site_name site_name
String
drsuapi.DsGetDCInfo2.computer_dn computer_dn
String
drsuapi.DsGetDCInfo2.computer_guid computer_guid
drsuapi.DsGetDCInfo2.dns_name dns_name
String
drsuapi.DsGetDCInfo2.is_enabled is_enabled
Unsigned 32-bit integer
drsuapi.DsGetDCInfo2.is_gc is_gc
Unsigned 32-bit integer
drsuapi.DsGetDCInfo2.is_pdc is_pdc
Unsigned 32-bit integer
drsuapi.DsGetDCInfo2.netbios_name netbios_name
String
drsuapi.DsGetDCInfo2.ntds_dn ntds_dn
String
drsuapi.DsGetDCInfo2.ntds_guid ntds_guid
drsuapi.DsGetDCInfo2.server_dn server_dn
String
drsuapi.DsGetDCInfo2.server_guid server_guid
drsuapi.DsGetDCInfo2.site_dn site_dn
String
drsuapi.DsGetDCInfo2.site_guid site_guid
drsuapi.DsGetDCInfo2.site_name site_name
String
drsuapi.DsGetDCInfoCtr.ctr01 ctr01
No value
drsuapi.DsGetDCInfoCtr.ctr1 ctr1
No value
drsuapi.DsGetDCInfoCtr.ctr2 ctr2
No value
drsuapi.DsGetDCInfoCtr01.array array
No value
drsuapi.DsGetDCInfoCtr01.count count
Unsigned 32-bit integer
drsuapi.DsGetDCInfoCtr1.array array
No value
drsuapi.DsGetDCInfoCtr1.count count
Unsigned 32-bit integer
drsuapi.DsGetDCInfoCtr2.array array
No value
drsuapi.DsGetDCInfoCtr2.count count
Unsigned 32-bit integer
drsuapi.DsGetDCInfoRequest.req1 req1
No value
drsuapi.DsGetDCInfoRequest1.domain_name domain_name
String
drsuapi.DsGetDCInfoRequest1.level level
Signed 32-bit integer
drsuapi.DsGetDomainControllerInfo.bind_handle bind_handle
Byte array
drsuapi.DsGetDomainControllerInfo.ctr ctr
Unsigned 32-bit integer
drsuapi.DsGetDomainControllerInfo.level level
Signed 32-bit integer
drsuapi.DsGetDomainControllerInfo.req req
Unsigned 32-bit integer
drsuapi.DsGetNCChanges.bind_handle bind_handle
Byte array
drsuapi.DsGetNCChanges.ctr ctr
Unsigned 32-bit integer
drsuapi.DsGetNCChanges.level level
Signed 32-bit integer
drsuapi.DsGetNCChanges.req req
Unsigned 32-bit integer
drsuapi.DsGetNCChangesCtr.ctr6 ctr6
No value
drsuapi.DsGetNCChangesCtr.ctr7 ctr7
No value
drsuapi.DsGetNCChangesCtr6.array_ptr1 array_ptr1
Unsigned 32-bit integer
drsuapi.DsGetNCChangesCtr6.coursor_ex coursor_ex
No value
drsuapi.DsGetNCChangesCtr6.ctr12 ctr12
No value
drsuapi.DsGetNCChangesCtr6.guid1 guid1
drsuapi.DsGetNCChangesCtr6.guid2 guid2
drsuapi.DsGetNCChangesCtr6.len1 len1
Unsigned 32-bit integer
drsuapi.DsGetNCChangesCtr6.ptr1 ptr1
Unsigned 32-bit integer
drsuapi.DsGetNCChangesCtr6.sync_req_info1 sync_req_info1
No value
drsuapi.DsGetNCChangesCtr6.u1 u1
Unsigned 32-bit integer
drsuapi.DsGetNCChangesCtr6.u2 u2
Unsigned 32-bit integer
drsuapi.DsGetNCChangesCtr6.u3 u3
Unsigned 32-bit integer
drsuapi.DsGetNCChangesCtr6.usn1 usn1
No value
drsuapi.DsGetNCChangesCtr6.usn2 usn2
No value
drsuapi.DsGetNCChangesRequest.req5 req5
No value
drsuapi.DsGetNCChangesRequest.req8 req8
No value
drsuapi.DsGetNCChangesRequest5.coursor coursor
No value
drsuapi.DsGetNCChangesRequest5.guid1 guid1
drsuapi.DsGetNCChangesRequest5.guid2 guid2
drsuapi.DsGetNCChangesRequest5.h1 h1
Unsigned 64-bit integer
drsuapi.DsGetNCChangesRequest5.sync_req_info1 sync_req_info1
No value
drsuapi.DsGetNCChangesRequest5.unknown1 unknown1
Unsigned 32-bit integer
drsuapi.DsGetNCChangesRequest5.unknown2 unknown2
Unsigned 32-bit integer
drsuapi.DsGetNCChangesRequest5.unknown3 unknown3
Unsigned 32-bit integer
drsuapi.DsGetNCChangesRequest5.unknown4 unknown4
Unsigned 32-bit integer
drsuapi.DsGetNCChangesRequest5.usn1 usn1
No value
drsuapi.DsGetNCChangesRequest8.coursor coursor
No value
drsuapi.DsGetNCChangesRequest8.ctr12 ctr12
No value
drsuapi.DsGetNCChangesRequest8.guid1 guid1
drsuapi.DsGetNCChangesRequest8.guid2 guid2
drsuapi.DsGetNCChangesRequest8.h1 h1
Unsigned 64-bit integer
drsuapi.DsGetNCChangesRequest8.sync_req_info1 sync_req_info1
No value
drsuapi.DsGetNCChangesRequest8.unique_ptr1 unique_ptr1
Unsigned 32-bit integer
drsuapi.DsGetNCChangesRequest8.unique_ptr2 unique_ptr2
Unsigned 32-bit integer
drsuapi.DsGetNCChangesRequest8.unknown1 unknown1
Unsigned 32-bit integer
drsuapi.DsGetNCChangesRequest8.unknown2 unknown2
Unsigned 32-bit integer
drsuapi.DsGetNCChangesRequest8.unknown3 unknown3
Unsigned 32-bit integer
drsuapi.DsGetNCChangesRequest8.unknown4 unknown4
Unsigned 32-bit integer
drsuapi.DsGetNCChangesRequest8.usn1 usn1
No value
drsuapi.DsGetNCChangesRequest_Ctr12.array array
No value
drsuapi.DsGetNCChangesRequest_Ctr12.count count
Unsigned 32-bit integer
drsuapi.DsGetNCChangesRequest_Ctr13.data data
No value
drsuapi.DsGetNCChangesRequest_Ctr13.unknown1 unknown1
Unsigned 32-bit integer
drsuapi.DsGetNCChangesRequest_Ctr14.byte_array byte_array
Unsigned 8-bit integer
drsuapi.DsGetNCChangesRequest_Ctr14.length length
Unsigned 32-bit integer
drsuapi.DsGetNCChangesUsnTriple.usn1 usn1
Unsigned 64-bit integer
drsuapi.DsGetNCChangesUsnTriple.usn2 usn2
Unsigned 64-bit integer
drsuapi.DsGetNCChangesUsnTriple.usn3 usn3
Unsigned 64-bit integer
drsuapi.DsNameCtr.ctr1 ctr1
No value
drsuapi.DsNameCtr1.array array
No value
drsuapi.DsNameCtr1.count count
Unsigned 32-bit integer
drsuapi.DsNameInfo1.dns_domain_name dns_domain_name
String
drsuapi.DsNameInfo1.result_name result_name
String
drsuapi.DsNameInfo1.status status
Signed 32-bit integer
drsuapi.DsNameRequest.req1 req1
No value
drsuapi.DsNameRequest1.count count
Unsigned 32-bit integer
drsuapi.DsNameRequest1.format_desired format_desired
Signed 32-bit integer
drsuapi.DsNameRequest1.format_flags format_flags
Signed 32-bit integer
drsuapi.DsNameRequest1.format_offered format_offered
Signed 32-bit integer
drsuapi.DsNameRequest1.names names
No value
drsuapi.DsNameRequest1.unknown1 unknown1
Unsigned 32-bit integer
drsuapi.DsNameRequest1.unknown2 unknown2
Unsigned 32-bit integer
drsuapi.DsNameString.str str
String
drsuapi.DsReplica06.str1 str1
String
drsuapi.DsReplica06.u1 u1
Unsigned 32-bit integer
drsuapi.DsReplica06.u2 u2
Unsigned 32-bit integer
drsuapi.DsReplica06.u3 u3
Unsigned 32-bit integer
drsuapi.DsReplica06.u4 u4
Unsigned 32-bit integer
drsuapi.DsReplica06.u5 u5
Unsigned 32-bit integer
drsuapi.DsReplica06.u6 u6
Unsigned 64-bit integer
drsuapi.DsReplica06.u7 u7
Unsigned 32-bit integer
drsuapi.DsReplica06Ctr.array array
No value
drsuapi.DsReplica06Ctr.count count
Unsigned 32-bit integer
drsuapi.DsReplica06Ctr.reserved reserved
Unsigned 32-bit integer
drsuapi.DsReplicaAddOptions.DRSUAPI_DS_REPLICA_ADD_ASYNCHRONOUS_OPERATION DRSUAPI_DS_REPLICA_ADD_ASYNCHRONOUS_OPERATION
Boolean
drsuapi.DsReplicaAddOptions.DRSUAPI_DS_REPLICA_ADD_WRITEABLE DRSUAPI_DS_REPLICA_ADD_WRITEABLE
Boolean
drsuapi.DsReplicaAttrValMetaData.attribute_name attribute_name
String
drsuapi.DsReplicaAttrValMetaData.created created
Date/Time stamp
drsuapi.DsReplicaAttrValMetaData.deleted deleted
Date/Time stamp
drsuapi.DsReplicaAttrValMetaData.local_usn local_usn
Unsigned 64-bit integer
drsuapi.DsReplicaAttrValMetaData.object_dn object_dn
String
drsuapi.DsReplicaAttrValMetaData.originating_dsa_invocation_id originating_dsa_invocation_id
drsuapi.DsReplicaAttrValMetaData.originating_last_changed originating_last_changed
Date/Time stamp
drsuapi.DsReplicaAttrValMetaData.originating_usn originating_usn
Unsigned 64-bit integer
drsuapi.DsReplicaAttrValMetaData.value value
Unsigned 8-bit integer
drsuapi.DsReplicaAttrValMetaData.value_length value_length
Unsigned 32-bit integer
drsuapi.DsReplicaAttrValMetaData.version version
Unsigned 32-bit integer
drsuapi.DsReplicaAttrValMetaData2.attribute_name attribute_name
String
drsuapi.DsReplicaAttrValMetaData2.created created
Date/Time stamp
drsuapi.DsReplicaAttrValMetaData2.deleted deleted
Date/Time stamp
drsuapi.DsReplicaAttrValMetaData2.local_usn local_usn
Unsigned 64-bit integer
drsuapi.DsReplicaAttrValMetaData2.object_dn object_dn
String
drsuapi.DsReplicaAttrValMetaData2.originating_dsa_invocation_id originating_dsa_invocation_id
drsuapi.DsReplicaAttrValMetaData2.originating_dsa_obj_dn originating_dsa_obj_dn
String
drsuapi.DsReplicaAttrValMetaData2.originating_last_changed originating_last_changed
Date/Time stamp
drsuapi.DsReplicaAttrValMetaData2.originating_usn originating_usn
Unsigned 64-bit integer
drsuapi.DsReplicaAttrValMetaData2.value value
Unsigned 8-bit integer
drsuapi.DsReplicaAttrValMetaData2.value_length value_length
Unsigned 32-bit integer
drsuapi.DsReplicaAttrValMetaData2.version version
Unsigned 32-bit integer
drsuapi.DsReplicaAttrValMetaData2Ctr.array array
No value
drsuapi.DsReplicaAttrValMetaData2Ctr.count count
Unsigned 32-bit integer
drsuapi.DsReplicaAttrValMetaData2Ctr.enumeration_context enumeration_context
Signed 32-bit integer
drsuapi.DsReplicaAttrValMetaDataCtr.array array
No value
drsuapi.DsReplicaAttrValMetaDataCtr.count count
Unsigned 32-bit integer
drsuapi.DsReplicaAttrValMetaDataCtr.enumeration_context enumeration_context
Signed 32-bit integer
drsuapi.DsReplicaConnection04.bind_guid bind_guid
drsuapi.DsReplicaConnection04.bind_time bind_time
Date/Time stamp
drsuapi.DsReplicaConnection04.u1 u1
Unsigned 64-bit integer
drsuapi.DsReplicaConnection04.u2 u2
Unsigned 32-bit integer
drsuapi.DsReplicaConnection04.u3 u3
Unsigned 32-bit integer
drsuapi.DsReplicaConnection04.u4 u4
Unsigned 32-bit integer
drsuapi.DsReplicaConnection04.u5 u5
Unsigned 32-bit integer
drsuapi.DsReplicaConnection04Ctr.array array
No value
drsuapi.DsReplicaConnection04Ctr.count count
Unsigned 32-bit integer
drsuapi.DsReplicaConnection04Ctr.reserved reserved
Unsigned 32-bit integer
drsuapi.DsReplicaCoursor.highest_usn highest_usn
Unsigned 64-bit integer
drsuapi.DsReplicaCoursor.source_dsa_invocation_id source_dsa_invocation_id
drsuapi.DsReplicaCoursor05Ctr.array array
No value
drsuapi.DsReplicaCoursor05Ctr.count count
Unsigned 32-bit integer
drsuapi.DsReplicaCoursor05Ctr.u1 u1
Unsigned 32-bit integer
drsuapi.DsReplicaCoursor05Ctr.u2 u2
Unsigned 32-bit integer
drsuapi.DsReplicaCoursor05Ctr.u3 u3
Unsigned 32-bit integer
drsuapi.DsReplicaCoursor2.highest_usn highest_usn
Unsigned 64-bit integer
drsuapi.DsReplicaCoursor2.last_sync_success last_sync_success
Date/Time stamp
drsuapi.DsReplicaCoursor2.source_dsa_invocation_id source_dsa_invocation_id
drsuapi.DsReplicaCoursor2Ctr.array array
No value
drsuapi.DsReplicaCoursor2Ctr.count count
Unsigned 32-bit integer
drsuapi.DsReplicaCoursor2Ctr.enumeration_context enumeration_context
Signed 32-bit integer
drsuapi.DsReplicaCoursor3.highest_usn highest_usn
Unsigned 64-bit integer
drsuapi.DsReplicaCoursor3.last_sync_success last_sync_success
Date/Time stamp
drsuapi.DsReplicaCoursor3.source_dsa_invocation_id source_dsa_invocation_id
drsuapi.DsReplicaCoursor3.source_dsa_obj_dn source_dsa_obj_dn
String
drsuapi.DsReplicaCoursor3Ctr.array array
No value
drsuapi.DsReplicaCoursor3Ctr.count count
Unsigned 32-bit integer
drsuapi.DsReplicaCoursor3Ctr.enumeration_context enumeration_context
Signed 32-bit integer
drsuapi.DsReplicaCoursorCtr.array array
No value
drsuapi.DsReplicaCoursorCtr.count count
Unsigned 32-bit integer
drsuapi.DsReplicaCoursorCtr.reserved reserved
Unsigned 32-bit integer
drsuapi.DsReplicaCoursorEx.coursor coursor
No value
drsuapi.DsReplicaCoursorEx.time1 time1
Date/Time stamp
drsuapi.DsReplicaCoursorEx05Ctr.array array
No value
drsuapi.DsReplicaCoursorEx05Ctr.count count
Unsigned 32-bit integer
drsuapi.DsReplicaCoursorEx05Ctr.u1 u1
Unsigned 32-bit integer
drsuapi.DsReplicaCoursorEx05Ctr.u2 u2
Unsigned 32-bit integer
drsuapi.DsReplicaCoursorEx05Ctr.u3 u3
Unsigned 32-bit integer
drsuapi.DsReplicaDeleteOptions.DRSUAPI_DS_REPLICA_DELETE_ASYNCHRONOUS_OPERATION DRSUAPI_DS_REPLICA_DELETE_ASYNCHRONOUS_OPERATION
Boolean
drsuapi.DsReplicaDeleteOptions.DRSUAPI_DS_REPLICA_DELETE_WRITEABLE DRSUAPI_DS_REPLICA_DELETE_WRITEABLE
Boolean
drsuapi.DsReplicaGetInfo.bind_handle bind_handle
Byte array
drsuapi.DsReplicaGetInfo.info info
Unsigned 32-bit integer
drsuapi.DsReplicaGetInfo.info_type info_type
Signed 32-bit integer
drsuapi.DsReplicaGetInfo.level level
Signed 32-bit integer
drsuapi.DsReplicaGetInfo.req req
Unsigned 32-bit integer
drsuapi.DsReplicaGetInfoRequest.req1 req1
No value
drsuapi.DsReplicaGetInfoRequest.req2 req2
No value
drsuapi.DsReplicaGetInfoRequest1.guid1 guid1
drsuapi.DsReplicaGetInfoRequest1.info_type info_type
Signed 32-bit integer
drsuapi.DsReplicaGetInfoRequest1.object_dn object_dn
String
drsuapi.DsReplicaGetInfoRequest2.guid1 guid1
drsuapi.DsReplicaGetInfoRequest2.info_type info_type
Signed 32-bit integer
drsuapi.DsReplicaGetInfoRequest2.object_dn object_dn
String
drsuapi.DsReplicaGetInfoRequest2.string1 string1
String
drsuapi.DsReplicaGetInfoRequest2.string2 string2
String
drsuapi.DsReplicaGetInfoRequest2.unknown1 unknown1
Unsigned 32-bit integer
drsuapi.DsReplicaGetInfoRequest2.unknown2 unknown2
Unsigned 32-bit integer
drsuapi.DsReplicaInfo.attrvalmetadata attrvalmetadata
No value
drsuapi.DsReplicaInfo.attrvalmetadata2 attrvalmetadata2
No value
drsuapi.DsReplicaInfo.connectfailures connectfailures
No value
drsuapi.DsReplicaInfo.connections04 connections04
No value
drsuapi.DsReplicaInfo.coursors coursors
No value
drsuapi.DsReplicaInfo.coursors05 coursors05
No value
drsuapi.DsReplicaInfo.coursors2 coursors2
No value
drsuapi.DsReplicaInfo.coursors3 coursors3
No value
drsuapi.DsReplicaInfo.i06 i06
No value
drsuapi.DsReplicaInfo.linkfailures linkfailures
No value
drsuapi.DsReplicaInfo.neighbours neighbours
No value
drsuapi.DsReplicaInfo.neighbours02 neighbours02
No value
drsuapi.DsReplicaInfo.objmetadata objmetadata
No value
drsuapi.DsReplicaInfo.objmetadata2 objmetadata2
No value
drsuapi.DsReplicaInfo.pendingops pendingops
No value
drsuapi.DsReplicaKccDsaFailure.dsa_obj_dn dsa_obj_dn
String
drsuapi.DsReplicaKccDsaFailure.dsa_obj_guid dsa_obj_guid
drsuapi.DsReplicaKccDsaFailure.first_failure first_failure
Date/Time stamp
drsuapi.DsReplicaKccDsaFailure.last_result last_result
Unsigned 32-bit integer
drsuapi.DsReplicaKccDsaFailure.num_failures num_failures
Unsigned 32-bit integer
drsuapi.DsReplicaKccDsaFailuresCtr.array array
No value
drsuapi.DsReplicaKccDsaFailuresCtr.count count
Unsigned 32-bit integer
drsuapi.DsReplicaKccDsaFailuresCtr.reserved reserved
Unsigned 32-bit integer
drsuapi.DsReplicaModifyOptions.DRSUAPI_DS_REPLICA_MODIFY_ASYNCHRONOUS_OPERATION DRSUAPI_DS_REPLICA_MODIFY_ASYNCHRONOUS_OPERATION
Boolean
drsuapi.DsReplicaModifyOptions.DRSUAPI_DS_REPLICA_MODIFY_WRITEABLE DRSUAPI_DS_REPLICA_MODIFY_WRITEABLE
Boolean
drsuapi.DsReplicaNeighbour.consecutive_sync_failures consecutive_sync_failures
Unsigned 32-bit integer
drsuapi.DsReplicaNeighbour.highest_usn highest_usn
Unsigned 64-bit integer
drsuapi.DsReplicaNeighbour.last_attempt last_attempt
Date/Time stamp
drsuapi.DsReplicaNeighbour.last_success last_success
Date/Time stamp
drsuapi.DsReplicaNeighbour.naming_context_dn naming_context_dn
String
drsuapi.DsReplicaNeighbour.naming_context_obj_guid naming_context_obj_guid
drsuapi.DsReplicaNeighbour.replica_flags replica_flags
Unsigned 32-bit integer
drsuapi.DsReplicaNeighbour.reserved reserved
Unsigned 32-bit integer
drsuapi.DsReplicaNeighbour.result_last_attempt result_last_attempt
Unsigned 32-bit integer
drsuapi.DsReplicaNeighbour.source_dsa_address source_dsa_address
String
drsuapi.DsReplicaNeighbour.source_dsa_invocation_id source_dsa_invocation_id
drsuapi.DsReplicaNeighbour.source_dsa_obj_dn source_dsa_obj_dn
String
drsuapi.DsReplicaNeighbour.source_dsa_obj_guid source_dsa_obj_guid
drsuapi.DsReplicaNeighbour.tmp_highest_usn tmp_highest_usn
Unsigned 64-bit integer
drsuapi.DsReplicaNeighbour.transport_obj_dn transport_obj_dn
String
drsuapi.DsReplicaNeighbour.transport_obj_guid transport_obj_guid
drsuapi.DsReplicaNeighbourCtr.array array
No value
drsuapi.DsReplicaNeighbourCtr.count count
Unsigned 32-bit integer
drsuapi.DsReplicaNeighbourCtr.reserved reserved
Unsigned 32-bit integer
drsuapi.DsReplicaObjMetaData.attribute_name attribute_name
String
drsuapi.DsReplicaObjMetaData.local_usn local_usn
Unsigned 64-bit integer
drsuapi.DsReplicaObjMetaData.originating_dsa_invocation_id originating_dsa_invocation_id
drsuapi.DsReplicaObjMetaData.originating_last_changed originating_last_changed
Date/Time stamp
drsuapi.DsReplicaObjMetaData.originating_usn originating_usn
Unsigned 64-bit integer
drsuapi.DsReplicaObjMetaData.version version
Unsigned 32-bit integer
drsuapi.DsReplicaObjMetaData2.attribute_name attribute_name
String
drsuapi.DsReplicaObjMetaData2.local_usn local_usn
Unsigned 64-bit integer
drsuapi.DsReplicaObjMetaData2.originating_dsa_invocation_id originating_dsa_invocation_id
drsuapi.DsReplicaObjMetaData2.originating_dsa_obj_dn originating_dsa_obj_dn
String
drsuapi.DsReplicaObjMetaData2.originating_last_changed originating_last_changed
Date/Time stamp
drsuapi.DsReplicaObjMetaData2.originating_usn originating_usn
Unsigned 64-bit integer
drsuapi.DsReplicaObjMetaData2.version version
Unsigned 32-bit integer
drsuapi.DsReplicaObjMetaData2Ctr.array array
No value
drsuapi.DsReplicaObjMetaData2Ctr.count count
Unsigned 32-bit integer
drsuapi.DsReplicaObjMetaData2Ctr.enumeration_context enumeration_context
Signed 32-bit integer
drsuapi.DsReplicaObjMetaDataCtr.array array
No value
drsuapi.DsReplicaObjMetaDataCtr.count count
Unsigned 32-bit integer
drsuapi.DsReplicaObjMetaDataCtr.reserved reserved
Unsigned 32-bit integer
drsuapi.DsReplicaOp.nc_dn nc_dn
String
drsuapi.DsReplicaOp.nc_obj_guid nc_obj_guid
drsuapi.DsReplicaOp.operation_start operation_start
Date/Time stamp
drsuapi.DsReplicaOp.operation_type operation_type
Signed 16-bit integer
drsuapi.DsReplicaOp.options options
Unsigned 16-bit integer
drsuapi.DsReplicaOp.priority priority
Unsigned 32-bit integer
drsuapi.DsReplicaOp.remote_dsa_address remote_dsa_address
String
drsuapi.DsReplicaOp.remote_dsa_obj_dn remote_dsa_obj_dn
String
drsuapi.DsReplicaOp.remote_dsa_obj_guid remote_dsa_obj_guid
drsuapi.DsReplicaOp.serial_num serial_num
Unsigned 32-bit integer
drsuapi.DsReplicaOpCtr.array array
No value
drsuapi.DsReplicaOpCtr.count count
Unsigned 32-bit integer
drsuapi.DsReplicaOpCtr.time time
Date/Time stamp
drsuapi.DsReplicaSync.bind_handle bind_handle
Byte array
drsuapi.DsReplicaSync.level level
Signed 32-bit integer
drsuapi.DsReplicaSync.req req
Unsigned 32-bit integer
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_ABANDONED DRSUAPI_DS_REPLICA_SYNC_ABANDONED
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_ADD_REFERENCE DRSUAPI_DS_REPLICA_SYNC_ADD_REFERENCE
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_ALL_SOURCES DRSUAPI_DS_REPLICA_SYNC_ALL_SOURCES
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_ASYNCHRONOUS_OPERATION DRSUAPI_DS_REPLICA_SYNC_ASYNCHRONOUS_OPERATION
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_ASYNCHRONOUS_REPLICA DRSUAPI_DS_REPLICA_SYNC_ASYNCHRONOUS_REPLICA
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_CRITICAL DRSUAPI_DS_REPLICA_SYNC_CRITICAL
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_FORCE DRSUAPI_DS_REPLICA_SYNC_FORCE
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_FULL DRSUAPI_DS_REPLICA_SYNC_FULL
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_FULL_IN_PROGRESS DRSUAPI_DS_REPLICA_SYNC_FULL_IN_PROGRESS
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_INITIAL DRSUAPI_DS_REPLICA_SYNC_INITIAL
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_INITIAL_IN_PROGRESS DRSUAPI_DS_REPLICA_SYNC_INITIAL_IN_PROGRESS
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_INTERSITE_MESSAGING DRSUAPI_DS_REPLICA_SYNC_INTERSITE_MESSAGING
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_NEVER_COMPLETED DRSUAPI_DS_REPLICA_SYNC_NEVER_COMPLETED
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_NEVER_NOTIFY DRSUAPI_DS_REPLICA_SYNC_NEVER_NOTIFY
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_NOTIFICATION DRSUAPI_DS_REPLICA_SYNC_NOTIFICATION
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_NO_DISCARD DRSUAPI_DS_REPLICA_SYNC_NO_DISCARD
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_PARTIAL_ATTRIBUTE_SET DRSUAPI_DS_REPLICA_SYNC_PARTIAL_ATTRIBUTE_SET
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_PERIODIC DRSUAPI_DS_REPLICA_SYNC_PERIODIC
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_PREEMPTED DRSUAPI_DS_REPLICA_SYNC_PREEMPTED
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_REQUEUE DRSUAPI_DS_REPLICA_SYNC_REQUEUE
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_TWO_WAY DRSUAPI_DS_REPLICA_SYNC_TWO_WAY
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_URGENT DRSUAPI_DS_REPLICA_SYNC_URGENT
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_USE_COMPRESSION DRSUAPI_DS_REPLICA_SYNC_USE_COMPRESSION
Boolean
drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_WRITEABLE DRSUAPI_DS_REPLICA_SYNC_WRITEABLE
Boolean
drsuapi.DsReplicaSyncRequest.req1 req1
No value
drsuapi.DsReplicaSyncRequest1.guid1 guid1
drsuapi.DsReplicaSyncRequest1.info info
No value
drsuapi.DsReplicaSyncRequest1.options options
Unsigned 32-bit integer
drsuapi.DsReplicaSyncRequest1.string1 string1
String
drsuapi.DsReplicaSyncRequest1Info.byte_array byte_array
Unsigned 8-bit integer
drsuapi.DsReplicaSyncRequest1Info.guid1 guid1
drsuapi.DsReplicaSyncRequest1Info.nc_dn nc_dn
String
drsuapi.DsReplicaSyncRequest1Info.str_len str_len
Unsigned 32-bit integer
drsuapi.DsReplicaSyncRequest1Info.unknown1 unknown1
Unsigned 32-bit integer
drsuapi.DsReplicaSyncRequest1Info.unknown2 unknown2
Unsigned 32-bit integer
drsuapi.DsReplicaUpdateRefs.bind_handle bind_handle
Byte array
drsuapi.DsReplicaUpdateRefs.level level
Signed 32-bit integer
drsuapi.DsReplicaUpdateRefs.req req
Unsigned 32-bit integer
drsuapi.DsReplicaUpdateRefsOptions.DRSUAPI_DS_REPLICA_UPDATE_0x00000010 DRSUAPI_DS_REPLICA_UPDATE_0x00000010
Boolean
drsuapi.DsReplicaUpdateRefsOptions.DRSUAPI_DS_REPLICA_UPDATE_ADD_REFERENCE DRSUAPI_DS_REPLICA_UPDATE_ADD_REFERENCE
Boolean
drsuapi.DsReplicaUpdateRefsOptions.DRSUAPI_DS_REPLICA_UPDATE_ASYNCHRONOUS_OPERATION DRSUAPI_DS_REPLICA_UPDATE_ASYNCHRONOUS_OPERATION
Boolean
drsuapi.DsReplicaUpdateRefsOptions.DRSUAPI_DS_REPLICA_UPDATE_DELETE_REFERENCE DRSUAPI_DS_REPLICA_UPDATE_DELETE_REFERENCE
Boolean
drsuapi.DsReplicaUpdateRefsOptions.DRSUAPI_DS_REPLICA_UPDATE_WRITEABLE DRSUAPI_DS_REPLICA_UPDATE_WRITEABLE
Boolean
drsuapi.DsReplicaUpdateRefsRequest.req1 req1
No value
drsuapi.DsReplicaUpdateRefsRequest1.dest_dsa_dns_name dest_dsa_dns_name
String
drsuapi.DsReplicaUpdateRefsRequest1.dest_dsa_guid dest_dsa_guid
drsuapi.DsReplicaUpdateRefsRequest1.options options
Unsigned 32-bit integer
drsuapi.DsReplicaUpdateRefsRequest1.sync_req_info1 sync_req_info1
No value
drsuapi.DsReplicaUpdateRefsRequest1.unknown1 unknown1
Unsigned 32-bit integer
drsuapi.DsReplicaUpdateRefsRequest1.unknown2 unknown2
Unsigned 32-bit integer
drsuapi.DsRplicaOpOptions.add add
Unsigned 32-bit integer
drsuapi.DsRplicaOpOptions.delete delete
Unsigned 32-bit integer
drsuapi.DsRplicaOpOptions.modify modify
Unsigned 32-bit integer
drsuapi.DsRplicaOpOptions.sync sync
Unsigned 32-bit integer
drsuapi.DsRplicaOpOptions.unknown unknown
Unsigned 32-bit integer
drsuapi.DsRplicaOpOptions.update_refs update_refs
Unsigned 32-bit integer
drsuapi.DsUnbind.bind_handle bind_handle
Byte array
drsuapi.DsWriteAccountSpn.bind_handle bind_handle
Byte array
drsuapi.DsWriteAccountSpn.level level
Signed 32-bit integer
drsuapi.DsWriteAccountSpn.req req
Unsigned 32-bit integer
drsuapi.DsWriteAccountSpn.res res
Unsigned 32-bit integer
drsuapi.DsWriteAccountSpnRequest.req1 req1
No value
drsuapi.DsWriteAccountSpnRequest1.count count
Unsigned 32-bit integer
drsuapi.DsWriteAccountSpnRequest1.object_dn object_dn
String
drsuapi.DsWriteAccountSpnRequest1.operation operation
Signed 32-bit integer
drsuapi.DsWriteAccountSpnRequest1.spn_names spn_names
No value
drsuapi.DsWriteAccountSpnRequest1.unknown1 unknown1
Unsigned 32-bit integer
drsuapi.DsWriteAccountSpnResult.res1 res1
No value
drsuapi.DsWriteAccountSpnResult1.status status
Unsigned 32-bit integer
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_00000080 DRSUAPI_SUPPORTED_EXTENSION_00000080
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_00100000 DRSUAPI_SUPPORTED_EXTENSION_00100000
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_20000000 DRSUAPI_SUPPORTED_EXTENSION_20000000
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_40000000 DRSUAPI_SUPPORTED_EXTENSION_40000000
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_80000000 DRSUAPI_SUPPORTED_EXTENSION_80000000
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_ADDENTRYREPLY_V3 DRSUAPI_SUPPORTED_EXTENSION_ADDENTRYREPLY_V3
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_ADDENTRY_V2 DRSUAPI_SUPPORTED_EXTENSION_ADDENTRY_V2
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_ADD_SID_HISTORY DRSUAPI_SUPPORTED_EXTENSION_ADD_SID_HISTORY
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_ASYNC_REPLICATION DRSUAPI_SUPPORTED_EXTENSION_ASYNC_REPLICATION
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_BASE DRSUAPI_SUPPORTED_EXTENSION_BASE
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_CRYPTO_BIND DRSUAPI_SUPPORTED_EXTENSION_CRYPTO_BIND
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V01 DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V01
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V1 DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V1
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V2 DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V2
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V5 DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V5
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V6 DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V6
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V7 DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V7
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V6 DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V6
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V8 DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V8
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GETCHG_COMPRESS DRSUAPI_SUPPORTED_EXTENSION_GETCHG_COMPRESS
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GET_MEMBERSHIPS2 DRSUAPI_SUPPORTED_EXTENSION_GET_MEMBERSHIPS2
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GET_REPL_INFO DRSUAPI_SUPPORTED_EXTENSION_GET_REPL_INFO
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_INSTANCE_TYPE_NOT_REQ_ON_MOD DRSUAPI_SUPPORTED_EXTENSION_INSTANCE_TYPE_NOT_REQ_ON_MOD
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_KCC_EXECUTE DRSUAPI_SUPPORTED_EXTENSION_KCC_EXECUTE
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_LINKED_VALUE_REPLICATION DRSUAPI_SUPPORTED_EXTENSION_LINKED_VALUE_REPLICATION
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_MOVEREQ_V2 DRSUAPI_SUPPORTED_EXTENSION_MOVEREQ_V2
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_NONDOMAIN_NCS DRSUAPI_SUPPORTED_EXTENSION_NONDOMAIN_NCS
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_POST_BETA3 DRSUAPI_SUPPORTED_EXTENSION_POST_BETA3
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_REMOVEAPI DRSUAPI_SUPPORTED_EXTENSION_REMOVEAPI
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_RESTORE_USN_OPTIMIZATION DRSUAPI_SUPPORTED_EXTENSION_RESTORE_USN_OPTIMIZATION
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_STRONG_ENCRYPTION DRSUAPI_SUPPORTED_EXTENSION_STRONG_ENCRYPTION
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_TRANSITIVE_MEMBERSHIP DRSUAPI_SUPPORTED_EXTENSION_TRANSITIVE_MEMBERSHIP
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_VERIFY_OBJECT DRSUAPI_SUPPORTED_EXTENSION_VERIFY_OBJECT
Boolean
drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_XPRESS_COMPRESS DRSUAPI_SUPPORTED_EXTENSION_XPRESS_COMPRESS
Boolean
drsuapi.opnum Operation
Unsigned 16-bit integer
drsuapi.rc Return code
Unsigned 32-bit integer
data.data Data
Byte array
dsi.attn_flag Flags
Unsigned 16-bit integer
Server attention flag
dsi.attn_flag.crash Crash
Boolean
Attention flag, server crash bit
dsi.attn_flag.msg Message
Boolean
Attention flag, server message bit
dsi.attn_flag.reconnect Don't reconnect
Boolean
Attention flag, don't reconnect bit
dsi.attn_flag.shutdown Shutdown
Boolean
Attention flag, server is shutting down
dsi.attn_flag.time Minutes
Unsigned 16-bit integer
Number of minutes
dsi.command Command
Unsigned 8-bit integer
Represents a DSI command.
dsi.data_offset Data offset
Signed 32-bit integer
Data offset
dsi.error_code Error code
Signed 32-bit integer
Error code
dsi.flags Flags
Unsigned 8-bit integer
Indicates request or reply.
dsi.length Length
Unsigned 32-bit integer
Total length of the data that follows the DSI header.
dsi.open_len Length
Unsigned 8-bit integer
Open session option len
dsi.open_option Option
Byte array
Open session options (undecoded)
dsi.open_quantum Quantum
Unsigned 32-bit integer
Server/Attention quantum
dsi.open_type Flags
Unsigned 8-bit integer
Open session option type.
dsi.requestid Request ID
Unsigned 16-bit integer
Keeps track of which request this is. Replies must match a Request. IDs must be generated in sequential order.
dsi.reserved Reserved
Unsigned 32-bit integer
Reserved for future use. Should be set to zero.
dsi.server_addr.len Length
Unsigned 8-bit integer
Address length.
dsi.server_addr.type Type
Unsigned 8-bit integer
Address type.
dsi.server_addr.value Value
Byte array
Address value
dsi.server_directory Directory service
String
Server directory service
dsi.server_flag Flag
Unsigned 16-bit integer
Server capabilities flag
dsi.server_flag.copyfile Support copyfile
Boolean
Server support copyfile
dsi.server_flag.directory Support directory services
Boolean
Server support directory services
dsi.server_flag.fast_copy Support fast copy
Boolean
Server support fast copy
dsi.server_flag.no_save_passwd Don't allow save password
Boolean
Don't allow save password
dsi.server_flag.notify Support server notifications
Boolean
Server support notifications
dsi.server_flag.passwd Support change password
Boolean
Server support change password
dsi.server_flag.reconnect Support server reconnect
Boolean
Server support reconnect
dsi.server_flag.srv_msg Support server message
Boolean
Support server message
dsi.server_flag.srv_sig Support server signature
Boolean
Support server signature
dsi.server_flag.tcpip Support TCP/IP
Boolean
Server support TCP/IP
dsi.server_flag.utf8_name Support UTF8 server name
Boolean
Server support UTF8 server name
dsi.server_flag.uuids Support UUIDs
Boolean
Server supports UUIDs
dsi.server_icon Icon bitmap
Byte array
Server icon bitmap
dsi.server_name Server name
String
Server name
dsi.server_signature Server signature
Byte array
Server signature
dsi.server_type Server type
String
Server type
dsi.server_uams UAM
String
UAM
dsi.server_vers AFP version
String
AFP version
dsi.utf8_server_name UTF8 Server name
String
UTF8 Server name
dsi.utf8_server_name_len Length
Unsigned 16-bit integer
UTF8 server name length.
dccp.ack Acknowledgement Number
Unsigned 64-bit integer
dccp.ack_res Reserved
Unsigned 16-bit integer
dccp.ccval CCVal
Unsigned 8-bit integer
dccp.checksum Checksum
Unsigned 16-bit integer
dccp.checksum_bad Bad Checksum
Boolean
dccp.checksum_data Data Checksum
Unsigned 32-bit integer
dccp.cscov Checksum Coverage
Unsigned 8-bit integer
dccp.data1 Data 1
Unsigned 8-bit integer
dccp.data2 Data 2
Unsigned 8-bit integer
dccp.data3 Data 3
Unsigned 8-bit integer
dccp.data_offset Data Offset
Unsigned 8-bit integer
dccp.dstport Destination Port
Unsigned 16-bit integer
dccp.elapsed_time Elapsed Time
Unsigned 32-bit integer
dccp.feature_number Feature Number
Unsigned 8-bit integer
dccp.malformed Malformed
Boolean
dccp.ndp_count NDP Count
Unsigned 64-bit integer
dccp.option_type Option Type
Unsigned 8-bit integer
dccp.options Options
No value
DCCP Options fields
dccp.port Source or Destination Port
Unsigned 16-bit integer
dccp.res1 Reserved
Unsigned 8-bit integer
dccp.res2 Reserved
Unsigned 8-bit integer
dccp.reset_code Reset Code
Unsigned 8-bit integer
dccp.seq Sequence Number
Unsigned 64-bit integer
dccp.service_code Service Code
Unsigned 32-bit integer
dccp.srcport Source Port
Unsigned 16-bit integer
dccp.timestamp Timestamp
Unsigned 32-bit integer
dccp.timestamp_echo Timestamp Echo
Unsigned 32-bit integer
dccp.type Type
Unsigned 8-bit integer
dccp.x Extended Sequence Numbers
Boolean
ddp.checksum Checksum
Unsigned 16-bit integer
ddp.dst Destination address
String
ddp.dst.net Destination Net
Unsigned 16-bit integer
ddp.dst.node Destination Node
Unsigned 8-bit integer
ddp.dst_socket Destination Socket
Unsigned 8-bit integer
ddp.hopcount Hop count
Unsigned 8-bit integer
ddp.len Datagram length
Unsigned 16-bit integer
ddp.src Source address
String
ddp.src.net Source Net
Unsigned 16-bit integer
ddp.src.node Source Node
Unsigned 8-bit integer
ddp.src_socket Source Socket
Unsigned 8-bit integer
ddp.type Protocol type
Unsigned 8-bit integer
dtls.alert_message Alert Message
No value
Alert message
dtls.alert_message.desc Description
Unsigned 8-bit integer
Alert message description
dtls.alert_message.level Level
Unsigned 8-bit integer
Alert message level
dtls.app_data Encrypted Application Data
Byte array
Payload is encrypted application data
dtls.change_cipher_spec Change Cipher Spec Message
No value
Signals a change in cipher specifications
dtls.fragment Message fragment
Frame number
dtls.fragment.error Message defragmentation error
Frame number
dtls.fragment.multiple_tails Message has multiple tail fragments
Boolean
dtls.fragment.overlap Message fragment overlap
Boolean
dtls.fragment.overlap.conflicts Message fragment overlapping with conflicting data
Boolean
dtls.fragment.too_long_fragment Message fragment too long
Boolean
dtls.fragments Message fragments
No value
dtls.handshake Handshake Protocol
No value
Handshake protocol message
dtls.handshake.cert_type Certificate type
Unsigned 8-bit integer
Certificate type
dtls.handshake.cert_types Certificate types
No value
List of certificate types
dtls.handshake.cert_types_count Certificate types count
Unsigned 8-bit integer
Count of certificate types
dtls.handshake.certificate Certificate
Byte array
Certificate
dtls.handshake.certificate_length Certificate Length
Unsigned 24-bit integer
Length of certificate
dtls.handshake.certificates Certificates
No value
List of certificates
dtls.handshake.certificates_length Certificates Length
Unsigned 24-bit integer
Length of certificates field
dtls.handshake.cipher_suites_length Cipher Suites Length
Unsigned 16-bit integer
Length of cipher suites field
dtls.handshake.ciphersuite Cipher Suite
Unsigned 16-bit integer
Cipher suite
dtls.handshake.ciphersuites Cipher Suites
No value
List of cipher suites supported by client
dtls.handshake.comp_method Compression Method
Unsigned 8-bit integer
Compression Method
dtls.handshake.comp_methods Compression Methods
No value
List of compression methods supported by client
dtls.handshake.comp_methods_length Compression Methods Length
Unsigned 8-bit integer
Length of compression methods field
dtls.handshake.cookie Cookie
No value
Cookie
dtls.handshake.cookie_length Cookie Length
Unsigned 8-bit integer
Length of the cookie field
dtls.handshake.dname Distinguished Name
Byte array
Distinguished name of a CA that server trusts
dtls.handshake.dname_len Distinguished Name Length
Unsigned 16-bit integer
Length of distinguished name
dtls.handshake.dnames Distinguished Names
No value
List of CAs that server trusts
dtls.handshake.dnames_len Distinguished Names Length
Unsigned 16-bit integer
Length of list of CAs that server trusts
dtls.handshake.extension.data Data
Byte array
Hello Extension data
dtls.handshake.extension.len Length
Unsigned 16-bit integer
Length of a hello extension
dtls.handshake.extension.type Type
Unsigned 16-bit integer
Hello extension type
dtls.handshake.extensions_length Extensions Length
Unsigned 16-bit integer
Length of hello extensions
dtls.handshake.fragment_length Fragment Length
Unsigned 24-bit integer
Fragment length of handshake message
dtls.handshake.fragment_offset Fragment Offset
Unsigned 24-bit integer
Fragment offset of handshake message
dtls.handshake.length Length
Unsigned 24-bit integer
Length of handshake message
dtls.handshake.md5_hash MD5 Hash
No value
Hash of messages, master_secret, etc.
dtls.handshake.message_seq Message Sequence
Unsigned 16-bit integer
Message sequence of handshake message
dtls.handshake.random Random.bytes
No value
Random challenge used to authenticate server
dtls.handshake.random_time Random.gmt_unix_time
Date/Time stamp
Unix time field of random structure
dtls.handshake.session_id Session ID
Byte array
Identifies the DTLS session, allowing later resumption
dtls.handshake.session_id_length Session ID Length
Unsigned 8-bit integer
Length of session ID field
dtls.handshake.sha_hash SHA-1 Hash
No value
Hash of messages, master_secret, etc.
dtls.handshake.type Handshake Type
Unsigned 8-bit integer
Type of handshake message
dtls.handshake.verify_data Verify Data
No value
Opaque verification data
dtls.handshake.version Version
Unsigned 16-bit integer
Maximum version supported by client
dtls.reassembled.in Reassembled in
Frame number
dtls.record Record Layer
No value
Record layer
dtls.record.content_type Content Type
Unsigned 8-bit integer
Content type
dtls.record.epoch Epoch
Unsigned 16-bit integer
Epoch
dtls.record.length Length
Unsigned 16-bit integer
Length of DTLS record data
dtls.record.sequence_number Sequence Number
Double-precision floating point
Sequence Number
dtls.record.version Version
Unsigned 16-bit integer
Record layer version.
daytime.string Daytime
String
String containing time and date
dtpt.blob.cbSize cbSize
Unsigned 32-bit integer
cbSize field in BLOB
dtpt.blob.data Data
Byte array
Blob Data Block
dtpt.blob.data_length Length
Unsigned 32-bit integer
Length of the Blob Data Block
dtpt.blob.pBlobData pBlobData
Unsigned 32-bit integer
pBlobData field in BLOB
dtpt.blob_size Blob Size
Unsigned 32-bit integer
Size of the binary BLOB
dtpt.buffer_size Buffer Size
Unsigned 32-bit integer
Buffer Size
dtpt.comment Comment
String
Comment
dtpt.context Context
String
Context
dtpt.cs_addr.local Local Address
Unsigned 32-bit integer
Local Address
dtpt.cs_addr.local_length Local Address Length
Unsigned 32-bit integer
Local Address Pointer
dtpt.cs_addr.local_pointer Local Address Pointer
Unsigned 32-bit integer
Local Address Pointer
dtpt.cs_addr.remote Remote Address
Unsigned 32-bit integer
Remote Address
dtpt.cs_addr.remote_length Remote Address Length
Unsigned 32-bit integer
Remote Address Pointer
dtpt.cs_addr.remote_pointer Remote Address Pointer
Unsigned 32-bit integer
Remote Address Pointer
dtpt.cs_addrs.length1 Length of CS Addresses Part 1
Unsigned 32-bit integer
Length of CS Addresses Part 1
dtpt.cs_addrs.number Number of CS Addresses
Unsigned 32-bit integer
Number of CS Addresses
dtpt.cs_addrs.protocol Protocol
Unsigned 32-bit integer
Protocol
dtpt.cs_addrs.socket_type Socket Type
Unsigned 32-bit integer
Socket Type
dtpt.data_size Data Size
Unsigned 32-bit integer
Data Size
dtpt.error Last Error
Unsigned 32-bit integer
Last Error
dtpt.flags ControlFlags
Unsigned 32-bit integer
ControlFlags as documented for WSALookupServiceBegin
dtpt.flags.containers CONTAINERS
Boolean
CONTAINERS
dtpt.flags.deep DEEP
Boolean
DEEP
dtpt.flags.flushcache FLUSHCACHE
Boolean
FLUSHCACHE
dtpt.flags.flushprevious FLUSHPREVIOUS
Boolean
FLUSHPREVIOUS
dtpt.flags.nearest NEAREST
Boolean
NEAREST
dtpt.flags.nocontainers NOCONTAINERS
Boolean
NOCONTAINERS
dtpt.flags.res_service RES_SERVICE
Boolean
RES_SERVICE
dtpt.flags.return_addr RETURN_ADDR
Boolean
RETURN_ADDR
dtpt.flags.return_aliases RETURN_ALIASES
Boolean
RETURN_ALIASES
dtpt.flags.return_blob RETURN_BLOB
Boolean
RETURN_BLOB
dtpt.flags.return_comment RETURN_COMMENT
Boolean
RETURN_COMMENT
dtpt.flags.return_name RETURN_NAME
Boolean
RETURN_NAME
dtpt.flags.return_query_string RETURN_QUERY_STRING
Boolean
RETURN_QUERY_STRING
dtpt.flags.return_type RETURN_TYPE
Boolean
RETURN_TYPE
dtpt.flags.return_version RETURN_VERSION
Boolean
RETURN_VERSION
dtpt.guid.data Data
GUID Data
dtpt.guid.length Length
Unsigned 32-bit integer
GUID Length
dtpt.handle Handle
Unsigned 64-bit integer
Lookup handle
dtpt.lpszComment lpszComment
Unsigned 32-bit integer
lpszComment field in WSAQUERYSET
dtpt.message_type Message Type
Unsigned 8-bit integer
Packet Message Type
dtpt.ns_provider_id NS Provider ID
NS Provider ID
dtpt.payload_size Payload Size
Unsigned 32-bit integer
Payload Size of the following packet containing a serialized WSAQUERYSET
dtpt.protocol.family Family
Unsigned 32-bit integer
Protocol Family
dtpt.protocol.protocol Protocol
Unsigned 32-bit integer
Protocol Protocol
dtpt.protocols.length Length of Protocols
Unsigned 32-bit integer
Length of Protocols
dtpt.protocols.number Number of Protocols
Unsigned 32-bit integer
Number of Protocols
dtpt.query_string Query String
String
Query String
dtpt.queryset.dwNameSpace dwNameSpace
Unsigned 32-bit integer
dwNameSpace field in WSAQUERYSE
dtpt.queryset.dwNumberOfCsAddrs dwNumberOfCsAddrs
Unsigned 32-bit integer
dwNumberOfCsAddrs field in WSAQUERYSET
dtpt.queryset.dwNumberOfProtocols dwNumberOfProtocols
Unsigned 32-bit integer
dwNumberOfProtocols field in WSAQUERYSET
dtpt.queryset.dwOutputFlags dwOutputFlags
Unsigned 32-bit integer
dwOutputFlags field in WSAQUERYSET
dtpt.queryset.dwSize dwSize
Unsigned 32-bit integer
dwSize field in WSAQUERYSET
dtpt.queryset.lpBlob lpBlob
Unsigned 32-bit integer
lpBlob field in WSAQUERYSET
dtpt.queryset.lpNSProviderId lpNSProviderId
Unsigned 32-bit integer
lpNSProviderId field in WSAQUERYSET
dtpt.queryset.lpServiceClassId lpServiceClassId
Unsigned 32-bit integer
lpServiceClassId in the WSAQUERYSET
dtpt.queryset.lpVersion lpVersion
Unsigned 32-bit integer
lpVersion in WSAQUERYSET
dtpt.queryset.lpafpProtocols lpafpProtocols
Unsigned 32-bit integer
lpafpProtocols field in WSAQUERYSET
dtpt.queryset.lpcsaBuffer lpcsaBuffer
Unsigned 32-bit integer
lpcsaBuffer field in WSAQUERYSET
dtpt.queryset.lpszContext lpszContext
Unsigned 32-bit integer
lpszContext field in WSAQUERYSET
dtpt.queryset.lpszQueryString lpszQueryString
Unsigned 32-bit integer
lpszQueryString field in WSAQUERYSET
dtpt.queryset.lpszServiceInstanceName lpszServiceInstanceName
Unsigned 32-bit integer
lpszServiceInstanceName field in WSAQUERYSET
dtpt.queryset_size QuerySet Size
Unsigned 32-bit integer
Size of the binary WSAQUERYSET
dtpt.service_class_id Service Class ID
Service Class ID
dtpt.service_instance_name Service Instance Name
String
Service Instance Name
dtpt.sockaddr.address Address
IPv4 address
Socket Address Address
dtpt.sockaddr.family Family
Unsigned 16-bit integer
Socket Address Family
dtpt.sockaddr.length Length
Unsigned 16-bit integer
Socket Address Length
dtpt.sockaddr.port Port
Unsigned 16-bit integer
Socket Address Port
dtpt.version Version
Unsigned 8-bit integer
Protocol Version
dtpt.wstring.data Data
String
String Data
dtpt.wstring.length Length
Unsigned 32-bit integer
String Length
diameter.3GPP-IMEISV 3GPP-IMEISV
Byte array
vendor=10415 code=20
diameter.3GPP-IMSI 3GPP-IMSI
String
vendor=10415 code=1
diameter.3GPP-MSTimeZone 3GPP-MSTimeZone
Byte array
vendor=10415 code=23
diameter.3GPP-RAT-Type 3GPP-RAT-Type
Byte array
vendor=10415 code=21
diameter.3GPP-SGSN-IPv6-Address 3GPP-SGSN-IPv6-Address
Byte array
vendor=10415 code=15
diameter.3GPP-SGSNAddress 3GPP-SGSNAddress
Byte array
vendor=10415 code=6
diameter.3GPP-User-Location-Info 3GPP-User-Location-Info
Byte array
vendor=10415 code=22
diameter.AF-Application-Identifier AF-Application-Identifier
Byte array
vendor=10415 code=504
diameter.AF-Charging-Identifier AF-Charging-Identifier
Byte array
vendor=10415 code=505
diameter.ARAP-Challenge-Response ARAP-Challenge-Response
Byte array
code=84
diameter.ARAP-Features ARAP-Features
Byte array
code=71
diameter.ARAP-Password ARAP-Password
Byte array
code=70
diameter.ARAP-Security ARAP-Security
Signed 32-bit integer
code=73
diameter.ARAP-Security-Data ARAP-Security-Data
Byte array
code=74
diameter.ARAP-Zone-Access ARAP-Zone-Access
Signed 32-bit integer
code=72
diameter.Abort-Cause Abort-Cause
Unsigned 32-bit integer
vendor=10415 code=500
diameter.Acc-Service-Type Acc-Service-Type
Unsigned 32-bit integer
vendor=193 code=261
diameter.Access-Network-Charging-Address Access-Network-Charging-Address
Byte array
vendor=10415 code=501
diameter.Access-Network-Charging-Address.addr_family Access-Network-Charging-Address Address Family
Unsigned 16-bit integer
diameter.Access-Network-Charging-Identifier Access-Network-Charging-Identifier
Byte array
vendor=10415 code=502
diameter.Access-Network-Charging-Identifier-Value Access-Network-Charging-Identifier-Value
Byte array
vendor=10415 code=503
diameter.Access-Network-Information Access-Network-Information
Byte array
vendor=10415 code=1263
diameter.Access-Network-Type Access-Network-Type
Byte array
vendor=13019 code=306
diameter.Accounting-Auth-Method Accounting-Auth-Method
Unsigned 32-bit integer
code=406
diameter.Accounting-Input-Octets Accounting-Input-Octets
Unsigned 64-bit integer
code=363
diameter.Accounting-Input-Packets Accounting-Input-Packets
Unsigned 64-bit integer
code=365
diameter.Accounting-Multi-Session-Id Accounting-Multi-Session-Id
Byte array
code=50
diameter.Accounting-Output-Octets Accounting-Output-Octets
Unsigned 64-bit integer
code=364
diameter.Accounting-Output-Packets Accounting-Output-Packets
Unsigned 64-bit integer
code=366
diameter.Accounting-Realtime-Required Accounting-Realtime-Required
Unsigned 32-bit integer
code=483
diameter.Accounting-Record-Number Accounting-Record-Number
Unsigned 32-bit integer
code=485
diameter.Accounting-Record-Type Accounting-Record-Type
Unsigned 32-bit integer
code=480
diameter.Accounting-Session-Id Accounting-Session-Id
Unsigned 32-bit integer
code=44
diameter.Accounting-Sub-Session-Id Accounting-Sub-Session-Id
Unsigned 64-bit integer
code=287
diameter.Acct-Application-Id Acct-Application-Id
Signed 32-bit integer
code=259
diameter.Acct-Authentic Acct-Authentic
Unsigned 32-bit integer
code=45
diameter.Acct-Delay-Time Acct-Delay-Time
Signed 32-bit integer
code=41
diameter.Acct-Input-Gigawords Acct-Input-Gigawords
Signed 32-bit integer
code=52
diameter.Acct-Input-Octets Acct-Input-Octets
Signed 32-bit integer
code=42
diameter.Acct-Input-Packets Acct-Input-Packets
Signed 32-bit integer
code=47
diameter.Acct-Interim-Interval Acct-Interim-Interval
Signed 32-bit integer
code=85
diameter.Acct-Link-Count Acct-Link-Count
Signed 32-bit integer
code=51
diameter.Acct-Output-Gigawords Acct-Output-Gigawords
Signed 32-bit integer
code=53
diameter.Acct-Output-Octets Acct-Output-Octets
Signed 32-bit integer
code=43
diameter.Acct-Output-Packets Acct-Output-Packets
Signed 32-bit integer
code=48
diameter.Acct-Session-Time Acct-Session-Time
Signed 32-bit integer
code=46
diameter.Acct-Status-Type Acct-Status-Type
Unsigned 32-bit integer
code=40
diameter.Acct-Terminate-Cause Acct-Terminate-Cause
Unsigned 32-bit integer
code=49
diameter.Acct-Tunnel-Client-Endpoint Acct-Tunnel-Client-Endpoint
Byte array
code=66
diameter.Acct-Tunnel-Connection-ID Acct-Tunnel-Connection-ID
Byte array
code=68
diameter.Adaptations Adaptations
Unsigned 32-bit integer
vendor=10415 code=1217
diameter.Additional-MBMS-Trace-Info Additional-MBMS-Trace-Info
Byte array
vendor=10415 code=910
diameter.Additional-Type-Information Additional-Type-Information
String
vendor=10415 code=1205
diameter.Address-Data Address-Data
String
vendor=10415 code=897
diameter.Address-Domain Address-Domain
Byte array
vendor=10415 code=898
diameter.Address-Realm Address-Realm
Byte array
vendor=13019 code=301
diameter.Address-Type Address-Type
Unsigned 32-bit integer
vendor=10415 code=899
diameter.Aggregation-Network-Type Aggregation-Network-Type
Unsigned 32-bit integer
vendor=13019 code=307
diameter.Alternate-Peer Alternate-Peer
String
code=275
diameter.Alternative-APN Alternative-APN
String
vendor=10415 code=905
diameter.Applic-ID Applic-ID
String
vendor=10415 code=1218
diameter.Application-Class-ID Application-Class-ID
String
vendor=13019 code=312
diameter.Application-Server Application-Server
String
vendor=10415 code=836
diameter.Application-Server-Information Application-Server-Information
Byte array
vendor=10415 code=850
diameter.Application-provided-Called-Party-Address Application-provided-Called-Party-Address
String
vendor=10415 code=837
diameter.Associated-Identities Associated-Identities
Byte array
vendor=10415 code=632
diameter.Auth-Application-Id Auth-Application-Id
Signed 32-bit integer
code=258
diameter.Auth-Grace-Period Auth-Grace-Period
Unsigned 32-bit integer
code=276
diameter.Auth-Request-Type Auth-Request-Type
Unsigned 32-bit integer
code=274
diameter.Auth-Session-State Auth-Session-State
Unsigned 32-bit integer
code=277
diameter.Authorised-QoS Authorised-QoS
String
vendor=10415 code=849
diameter.Authorization-Lifetime Authorization-Lifetime
Signed 32-bit integer
code=291
diameter.Authorization-Token Authorization-Token
Byte array
vendor=10415 code=506
diameter.Aux-Applic-Info Aux-Applic-Info
String
vendor=10415 code=1219
diameter.Base-Time-Interval Base-Time-Interval
Unsigned 32-bit integer
vendor=10415 code=1265
diameter.Bearer-Service Bearer-Service
Byte array
vendor=10415 code=854
diameter.Bearer-Usage Bearer-Usage
Unsigned 32-bit integer
vendor=10415 code=1000
diameter.Billing-Information Billing-Information
String
vendor=10415 code=1115
diameter.Binding-Input-List Binding-Input-List
Byte array
vendor=13019 code=451
diameter.Binding-Output-List Binding-Output-List
Byte array
vendor=13019 code=452
diameter.Binding-information Binding-information
Byte array
vendor=13019 code=450
diameter.BootstrapInfoCreationTime BootstrapInfoCreationTime
Unsigned 32-bit integer
vendor=10415 code=408
diameter.CC-Correlation-Id CC-Correlation-Id
Byte array
code=411
diameter.CC-Input-Octets CC-Input-Octets
Unsigned 64-bit integer
code=412
diameter.CC-Money CC-Money
Byte array
code=413
diameter.CC-Output-Octets CC-Output-Octets
Unsigned 64-bit integer
code=414
diameter.CC-Request-Number CC-Request-Number
Unsigned 32-bit integer
code=415
diameter.CC-Request-Type CC-Request-Type
Unsigned 32-bit integer
code=416
diameter.CC-Service-Specific-Units CC-Service-Specific-Units
Unsigned 64-bit integer
code=417
diameter.CC-Session-Failover CC-Session-Failover
Unsigned 32-bit integer
code=418
diameter.CC-Sub-Session-Id CC-Sub-Session-Id
Unsigned 64-bit integer
code=419
diameter.CC-Time CC-Time
Unsigned 32-bit integer
code=420
diameter.CC-Total-Octets CC-Total-Octets
Unsigned 64-bit integer
code=421
diameter.CC-Unit-Type CC-Unit-Type
Unsigned 32-bit integer
code=454
diameter.CHAP-Algorithm CHAP-Algorithm
Unsigned 32-bit integer
code=403
diameter.CHAP-Auth CHAP-Auth
Byte array
code=402
diameter.CHAP-Challenge CHAP-Challenge
Byte array
code=60
diameter.CHAP-Ident CHAP-Ident
Byte array
code=404
diameter.CHAP-Password CHAP-Password
Byte array
code=3
diameter.Callback-Id Callback-Id
Byte array
code=20
diameter.Callback-Number Callback-Number
Byte array
code=19
diameter.Called-Asserted-Identity Called-Asserted-Identity
String
vendor=10415 code=1250
diameter.Called-Party-Address Called-Party-Address
String
vendor=10415 code=832
diameter.Called-Station-Id Called-Station-Id
Byte array
code=30
diameter.Calling-Party-Address Calling-Party-Address
String
vendor=10415 code=831
diameter.Calling-Station-Id Calling-Station-Id
Byte array
code=31
diameter.Cause Cause
Byte array
vendor=10415 code=860
diameter.Cause-Code Cause-Code
Unsigned 32-bit integer
vendor=10415 code=861
diameter.Charging-Information Charging-Information
Byte array
vendor=10415 code=618
diameter.Charging-Rule-Base-Name Charging-Rule-Base-Name
String
vendor=10415 code=1004
diameter.Charging-Rule-Definition Charging-Rule-Definition
Byte array
vendor=10415 code=1003
diameter.Charging-Rule-Install Charging-Rule-Install
Byte array
vendor=10415 code=1001
diameter.Charging-Rule-Name Charging-Rule-Name
Byte array
vendor=10415 code=1005
diameter.Charging-Rule-Remove Charging-Rule-Remove
Byte array
vendor=10415 code=1002
diameter.Check-Balance-Result Check-Balance-Result
Unsigned 32-bit integer
code=422
diameter.Class Class
Byte array
code=25
diameter.Class-Identifier Class-Identifier
Unsigned 32-bit integer
vendor=10415 code=1214
diameter.Confidentiality-Key Confidentiality-Key
Byte array
vendor=10415 code=27
diameter.Configuration-Token Configuration-Token
Byte array
code=78
diameter.Connect-Info Connect-Info
Byte array
code=77
diameter.Content-Class Content-Class
Unsigned 32-bit integer
vendor=10415 code=1220
diameter.Content-Disposition Content-Disposition
String
vendor=10415 code=828
diameter.Content-Length Content-Length
Unsigned 32-bit integer
vendor=10415 code=827
diameter.Content-Size Content-Size
Unsigned 32-bit integer
vendor=10415 code=1206
diameter.Content-Type Content-Type
String
vendor=10415 code=826
diameter.Cost-Information Cost-Information
Byte array
code=423
diameter.Cost-Unit Cost-Unit
String
code=424
diameter.Credit-Control Credit-Control
Unsigned 32-bit integer
code=426
diameter.Credit-Control-Failure-Handling Credit-Control-Failure-Handling
Unsigned 32-bit integer
code=427
diameter.Currency-Code Currency-Code
Unsigned 32-bit integer
code=425
diameter.Current-Location Current-Location
Unsigned 32-bit integer
vendor=10415 code=707
diameter.DRM-Content DRM-Content
Unsigned 32-bit integer
code=1221
diameter.Data-Reference Data-Reference
Unsigned 32-bit integer
vendor=10415 code=703
diameter.Deferred-Location-Even-Type Deferred-Location-Even-Type
String
vendor=10415 code=1230
diameter.Delivery-Report Delivery-Report
Unsigned 32-bit integer
vendor=10415 code=1111
diameter.Delivery-Report-Requested Delivery-Report-Requested
Unsigned 32-bit integer
vendor=10415 code=1216
diameter.Deregistration-Reason Deregistration-Reason
Byte array
vendor=10415 code=16
diameter.Destination-Host Destination-Host
String
code=293
diameter.Destination-Realm Destination-Realm
String
code=283
diameter.Direct-Debiting-Failure-Handling Direct-Debiting-Failure-Handling
Unsigned 32-bit integer
code=428
diameter.Disconnect-Cause Disconnect-Cause
Unsigned 32-bit integer
code=273
diameter.Domain-Name Domain-Name
String
vendor=10415 code=1200
diameter.E2E-Sequence E2E-Sequence
Byte array
code=300
diameter.EAP-Message EAP-Message
Byte array
code=79
diameter.ETSI-Digest-Algorithm ETSI-Digest-Algorithm
String
vendor=13019 code=509
diameter.ETSI-Digest-Auth-Param ETSI-Digest-Auth-Param
String
vendor=13019 code=512
diameter.ETSI-Digest-CNonce ETSI-Digest-CNonce
String
vendor=13019 code=516
diameter.ETSI-Digest-Domain ETSI-Digest-Domain
String
vendor=13019 code=506
diameter.ETSI-Digest-Entity-Body-Hash ETSI-Digest-Entity-Body-Hash
String
vendor=13019 code=519
diameter.ETSI-Digest-HA1 ETSI-Digest-HA1
String
vendor=13019 code=511
diameter.ETSI-Digest-Method ETSI-Digest-Method
String
vendor=13019 code=518
diameter.ETSI-Digest-Nextnonce ETSI-Digest-Nextnonce
String
vendor=13019 code=520
diameter.ETSI-Digest-Nonce ETSI-Digest-Nonce
String
vendor=13019 code=505
diameter.ETSI-Digest-Nonce-Count ETSI-Digest-Nonce-Count
String
vendor=13019 code=517
diameter.ETSI-Digest-Opaque ETSI-Digest-Opaque
String
vendor=13019 code=507
diameter.ETSI-Digest-QoP ETSI-Digest-QoP
String
vendor=13019 code=510
diameter.ETSI-Digest-Realm ETSI-Digest-Realm
String
vendor=13019 code=504
diameter.ETSI-Digest-Response ETSI-Digest-Response
String
vendor=13019 code=515
diameter.ETSI-Digest-Response-Auth ETSI-Digest-Response-Auth
String
vendor=13019 code=521
diameter.ETSI-Digest-Stale ETSI-Digest-Stale
String
vendor=13019 code=508
diameter.ETSI-Digest-URI ETSI-Digest-URI
String
vendor=13019 code=514
diameter.ETSI-Digest-Username ETSI-Digest-Username
String
vendor=13019 code=513
diameter.ETSI-SIP-Authenticate ETSI-SIP-Authenticate
Byte array
vendor=13019 code=501
diameter.ETSI-SIP-Authentication-Info ETSI-SIP-Authentication-Info
Byte array
vendor=13019 code=503
diameter.ETSI-SIP-Authorization ETSI-SIP-Authorization
Byte array
vendor=13019 code=502
diameter.Error-Message Error-Message
String
code=281
diameter.Error-Reporting-Host Error-Reporting-Host
String
code=294
diameter.Event Event
String
vendor=10415 code=825
diameter.Event-Timestamp Event-Timestamp
Unsigned 32-bit integer
code=55
diameter.Event-Trigger Event-Trigger
Unsigned 32-bit integer
vendor=10415 code=1006
diameter.Event-Type Event-Type
Byte array
vendor=10415 code=823
diameter.Experimental-Result Experimental-Result
Byte array
code=297
diameter.Experimental-Result-Code Experimental-Result-Code
Unsigned 32-bit integer
code=298
diameter.Expires Expires
Unsigned 32-bit integer
vendor=10415 code=888
diameter.Exponent Exponent
Signed 32-bit integer
code=429
diameter.Failed-AVP Failed-AVP
Byte array
code=279
diameter.Feature-List Feature-List
Unsigned 32-bit integer
vendor=10415 code=630
diameter.Feature-List-ID Feature-List-ID
Unsigned 32-bit integer
vendor=10415 code=629
diameter.File-Repair-Supported File-Repair-Supported
Unsigned 32-bit integer
vendor=10415 code=1224
diameter.Filter-Id Filter-Id
Byte array
code=11
diameter.Final-Unit-Action Final-Unit-Action
Unsigned 32-bit integer
code=449
diameter.Final-Unit-Indication Final-Unit-Indication
Byte array
code=430
diameter.Firmware-Revision Firmware-Revision
Unsigned 32-bit integer
code=267
diameter.Flow-Description Flow-Description
String
vendor=10415 code=507
diameter.Flow-Grouping Flow-Grouping
Byte array
vendor=10415 code=508
diameter.Flow-Number Flow-Number
Unsigned 32-bit integer
vendor=10415 code=509
diameter.Flow-Status Flow-Status
Unsigned 32-bit integer
vendor=10415 code=511
diameter.Flow-Usage Flow-Usage
Unsigned 32-bit integer
vendor=10415 code=512
diameter.Flows Flows
Byte array
vendor=10415 code=510
diameter.Framed-AppleTalk-Link Framed-AppleTalk-Link
Signed 32-bit integer
code=37
diameter.Framed-AppleTalk-Network Framed-AppleTalk-Network
Signed 32-bit integer
code=38
diameter.Framed-AppleTalk-Zone Framed-AppleTalk-Zone
Byte array
code=39
diameter.Framed-Compression Framed-Compression
Unsigned 32-bit integer
code=13
diameter.Framed-IP-Address Framed-IP-Address
Byte array
code=8
diameter.Framed-IP-Address.addr_family Framed-IP-Address Address Family
Unsigned 16-bit integer
diameter.Framed-IP-Netmask Framed-IP-Netmask
Byte array
code=9
diameter.Framed-IP-Netmask.addr_family Framed-IP-Netmask Address Family
Unsigned 16-bit integer
diameter.Framed-IPX-Network Framed-IPX-Network
Signed 32-bit integer
code=23
diameter.Framed-IPv6-Prefix Framed-IPv6-Prefix
Byte array
code=97
diameter.Framed-Interface-Id Framed-Interface-Id
Unsigned 64-bit integer
code=96
diameter.Framed-MTU Framed-MTU
Signed 32-bit integer
code=12
diameter.Framed-Protocol Framed-Protocol
Unsigned 32-bit integer
code=7
diameter.Framed-Route Framed-Route
Byte array
code=22
diameter.Framed-Routing Framed-Routing
Unsigned 32-bit integer
code=10
diameter.G-S-U-Pool-Identifier G-S-U-Pool-Identifier
Unsigned 32-bit integer
code=453
diameter.G-S-U-Pool-Reference G-S-U-Pool-Reference
Byte array
code=457
diameter.GAA-Service-Identifier GAA-Service-Identifier
Byte array
vendor=10415 code=403
diameter.GBA-Type GBA-Type
Unsigned 32-bit integer
vendor=10415 code=410
diameter.GBA-UserSecSettings GBA-UserSecSettings
Byte array
vendor=10415 code=400
diameter.GBA_U-Awareness-Indicator GBA_U-Awareness-Indicator
Unsigned 32-bit integer
vendor=10415 code=407
diameter.GGSN-Address GGSN-Address
String
vendor=10415 code=847
diameter.GPRS-Charging-ID GPRS-Charging-ID
String
vendor=10415 code=846
diameter.GUSS-Timestamp GUSS-Timestamp
Unsigned 32-bit integer
vendor=10415 code=409
diameter.Globally-Unique-Address Globally-Unique-Address
Byte array
vendor=13019 code=300
diameter.Granted-Service-Unit Granted-Service-Unit
Byte array
code=431
diameter.Host-IP-Address Host-IP-Address
Byte array
code=257
diameter.Host-IP-Address.addr_family Host-IP-Address Address Family
Unsigned 16-bit integer
diameter.IMS-Charging-Identifier IMS-Charging-Identifier
String
vendor=10415 code=841
diameter.IMS-Information IMS-Information
Byte array
vendor=10415 code=876
diameter.IP-Connectivity-Status IP-Connectivity-Status
Unsigned 32-bit integer
vendor=13019 code=305
diameter.Identity-Set Identity-Set
Unsigned 32-bit integer
vendor=10415 code=708
diameter.Idle-Timeout Idle-Timeout
Signed 32-bit integer
code=28
diameter.Inband-Security-Id Inband-Security-Id
Unsigned 32-bit integer
code=299
diameter.Incoming-Trunk-Group-ID Incoming-Trunk-Group-ID
String
vendor=10415 code=852
diameter.Initial-Gate-Setting Initial-Gate-Setting
Byte array
vendor=13019 code=303
diameter.Initial-Recipient-Address Initial-Recipient-Address
Byte array
vendor=10415 code=1105
diameter.Integrity-Key Integrity-Key
Byte array
vendor=10415 code=28
diameter.Inter-Operator-Identifier Inter-Operator-Identifier
Byte array
vendor=10415 code=838
diameter.Key-ExpiryTime Key-ExpiryTime
Unsigned 32-bit integer
vendor=10415 code=404
diameter.LCS-Client-Dialed-By-MS LCS-Client-Dialed-By-MS
String
vendor=10415 code=1233
diameter.LCS-Client-External-ID LCS-Client-External-ID
String
vendor=10415 code=1234
diameter.LCS-Client-ID LCS-Client-ID
Byte array
vendor=10415 code=1232
diameter.LCS-Client-Name LCS-Client-Name
String
vendor=10415 code=1231
diameter.LCS-Client-Type LCS-Client-Type
Unsigned 32-bit integer
vendor=10415 code=1241
diameter.LCS-Data-Coding-Scheme LCS-Data-Coding-Scheme
String
vendor=10415 code=1236
diameter.LCS-Format-Indicator LCS-Format-Indicator
Unsigned 32-bit integer
vendor=10415 code=1237
diameter.LCS-Information LCS-Information
Byte array
vendor=10415 code=878
diameter.LCS-Name-String LCS-Name-String
String
vendor=10415 code=1238
diameter.LCS-Requestor-ID LCS-Requestor-ID
Byte array
vendor=10415 code=1239
diameter.LCS-Requestor-ID-String LCS-Requestor-ID-String
String
vendor=10415 code=1240
diameter.Line-Identifier Line-Identifier
Byte array
vendor=13019 code=500
diameter.Location-Estimate Location-Estimate
String
vendor=10415 code=1242
diameter.Location-Estimate-Type Location-Estimate-Type
Unsigned 32-bit integer
vendor=10415 code=1243
diameter.Location-Information Location-Information
Byte array
vendor=13019 code=350
diameter.Location-Type Location-Type
Byte array
vendor=10415 code=1244
diameter.Logical-Access-Id Logical-Access-Id
Byte array
vendor=13019 code=302
diameter.Login-IP-Host Login-IP-Host
Byte array
code=14
diameter.Login-IP-Host.addr_family Login-IP-Host Address Family
Unsigned 16-bit integer
diameter.Login-LAT-Group Login-LAT-Group
Byte array
code=36
diameter.Login-LAT-Node Login-LAT-Node
Byte array
code=35
diameter.Login-LAT-Port Login-LAT-Port
Byte array
code=63
diameter.Login-LAT-Service Login-LAT-Service
Byte array
code=34
diameter.Login-Service Login-Service
Unsigned 32-bit integer
code=15
diameter.Login-TCP-Port Login-TCP-Port
Signed 32-bit integer
code=16
diameter.MBMS-2G-3G-Indicator MBMS-2G-3G-Indicator
Unsigned 32-bit integer
vendor=10415 code=907
diameter.MBMS-BMSC-SSM-IP-Address MBMS-BMSC-SSM-IP-Address
Byte array
vendor=10415 code=918
diameter.MBMS-BMSC-SSM-IPv6-Address MBMS-BMSC-SSM-IPv6-Address
Byte array
vendor=10415 code=919
diameter.MBMS-Counting-Information MBMS-Counting-Information
Unsigned 32-bit integer
vendor=10415 code=914
diameter.MBMS-GGSN-Address MBMS-GGSN-Address
Byte array
vendor=10415 code=916
diameter.MBMS-GGSN-IPv6-Address MBMS-GGSN-IPv6-Address
Byte array
vendor=10415 code=917
diameter.MBMS-Information MBMS-Information
String
vendor=10415 code=880
diameter.MBMS-Required-QoS MBMS-Required-QoS
String
vendor=10415 code=913
diameter.MBMS-Service-Area MBMS-Service-Area
Byte array
vendor=10415 code=903
diameter.MBMS-Service-Type MBMS-Service-Type
Unsigned 32-bit integer
vendor=10415 code=906
diameter.MBMS-Session-Duration MBMS-Session-Duration
Byte array
vendor=10415 code=904
diameter.MBMS-Session-Identity-Repetition-Number MBMS-Session-Identity-Repetition-Number
Unsigned 32-bit integer
vendor=10415 code=912
diameter.MBMS-StartStop-Indication MBMS-StartStop-Indication
Unsigned 32-bit integer
vendor=10415 code=902
diameter.MBMS-Time-To-Data-Transfer MBMS-Time-To-Data-Transfer
Byte array
vendor=10415 code=911
diameter.MBMS-User-Data-Mode-Indication MBMS-User-Data-Mode-Indication
Unsigned 32-bit integer
vendor=10415 code=915
diameter.MBMS-User-Service-Type MBMS-User-Service-Type
Unsigned 32-bit integer
vendor=10415 code=1225
diameter.ME-Key-Material ME-Key-Material
Byte array
vendor=10415 code=405
diameter.MIP-Algorithm-Type MIP-Algorithm-Type
Unsigned 32-bit integer
code=345
diameter.MIP-Auth-Input-Data-Length MIP-Auth-Input-Data-Length
Unsigned 32-bit integer
code=338
diameter.MIP-Authenticator-Length MIP-Authenticator-Length
Unsigned 32-bit integer
code=339
diameter.MIP-Authenticator-Offset MIP-Authenticator-Offset
Unsigned 32-bit integer
code=340
diameter.MIP-FA-Challenge MIP-FA-Challenge
Byte array
code=344
diameter.MIP-Feature-Vector MIP-Feature-Vector
Unsigned 32-bit integer
code=337
diameter.MIP-Filter-Rule MIP-Filter-Rule
String
code=347
diameter.MIP-Foreign-Agent-Host MIP-Foreign-Agent-Host
String
code=330
diameter.MIP-Home-Agent-Address MIP-Home-Agent-Address
Byte array
code=334
diameter.MIP-Home-Agent-Address.addr_family MIP-Home-Agent-Address Address Family
Unsigned 16-bit integer
diameter.MIP-MN-AAA-Auth MIP-MN-AAA-Auth
Byte array
code=322
diameter.MIP-MN-AAA-SPI MIP-MN-AAA-SPI
Unsigned 32-bit integer
code=341
diameter.MIP-Mobile-Node-Address MIP-Mobile-Node-Address
Byte array
code=333
diameter.MIP-Mobile-Node-Address.addr_family MIP-Mobile-Node-Address Address Family
Unsigned 16-bit integer
diameter.MIP-Previous-FA-Addr MIP-Previous-FA-Addr
Byte array
code=336
diameter.MIP-Previous-FA-Addr.addr_family MIP-Previous-FA-Addr Address Family
Unsigned 16-bit integer
diameter.MIP-Previous-FA-Host MIP-Previous-FA-Host
String
code=335
diameter.MIP-Reg-Reply MIP-Reg-Reply
Byte array
code=321
diameter.MIP-Replay-Mode MIP-Replay-Mode
Unsigned 32-bit integer
code=346
diameter.MM-Content-Type MM-Content-Type
Byte array
vendor=10415 code=1203
diameter.MMBox-Storage-Requested MMBox-Storage-Requested
Unsigned 32-bit integer
vendor=10415 code=1248
diameter.MMS-Information MMS-Information
String
vendor=10415 code=877
diameter.MSISDN MSISDN
Byte array
vendor=10415 code=701
diameter.Mandatory-Capability Mandatory-Capability
Unsigned 32-bit integer
vendor=10415 code=5
diameter.Max-Requested-Bandwidth-DL Max-Requested-Bandwidth-DL
Unsigned 32-bit integer
vendor=10415 code=515
diameter.Max-Requested-Bandwidth-UL Max-Requested-Bandwidth-UL
Unsigned 32-bit integer
vendor=10415 code=516
diameter.Maximum-Allowed-Bandwidth-DL Maximum-Allowed-Bandwidth-DL
Unsigned 32-bit integer
vendor=13019 code=309
diameter.Maximum-Allowed-Bandwidth-UL Maximum-Allowed-Bandwidth-UL
Unsigned 32-bit integer
vendor=13019 code=308
diameter.Media-Component-Description Media-Component-Description
Byte array
vendor=10415 code=517
diameter.Media-Component-Number Media-Component-Number
Unsigned 32-bit integer
vendor=10415 code=518
diameter.Media-Initiator-Flag Media-Initiator-Flag
Unsigned 32-bit integer
vendor=10415 code=882
diameter.Media-Sub-Component Media-Sub-Component
Byte array
vendor=10415 code=519
diameter.Media-Type Media-Type
Unsigned 32-bit integer
vendor=10415 code=520
diameter.Message-Body Message-Body
Byte array
vendor=10415 code=889
diameter.Message-Class Message-Class
Byte array
vendor=10415 code=1213
diameter.Message-ID Message-ID
String
vendor=10415 code=1210
diameter.Message-Size Message-Size
Unsigned 32-bit integer
vendor=10415 code=1212
diameter.Message-Type Message-Type
Unsigned 32-bit integer
vendor=10415 code=1211
diameter.Metering-Method Metering-Method
Unsigned 32-bit integer
vendor=10415 code=1007
diameter.Multi-Round-Time-Out Multi-Round-Time-Out
Unsigned 32-bit integer
code=272
diameter.Multiple-Services-Credit-Control Multiple-Services-Credit-Control
Byte array
code=456
diameter.Multiple-Services-Indicator Multiple-Services-Indicator
Unsigned 32-bit integer
code=455
diameter.NAF-Hostname NAF-Hostname
Byte array
vendor=10415 code=402
diameter.NAS-Filter-Rule NAS-Filter-Rule
String
code=400
diameter.NAS-IP-Address NAS-IP-Address
Byte array
code=4
diameter.NAS-Identifier NAS-Identifier
Byte array
code=32
diameter.NAS-Port NAS-Port
Signed 32-bit integer
code=5
diameter.NAS-Port-Type NAS-Port-Type
Unsigned 32-bit integer
code=61
diameter.Node-Functionality Node-Functionality
Unsigned 32-bit integer
vendor=10415 code=862
diameter.Number-Of-Participants Number-Of-Participants
Signed 32-bit integer
vendor=10415 code=885
diameter.Number-Of-Received-Talk-Bursts Number-Of-Received-Talk-Bursts
Unsigned 32-bit integer
vendor=10415 code=1258
diameter.Number-Of-Talk-Burst Number-Of-Talk-Burst
Unsigned 32-bit integer
vendor=10415 code=1249
diameter.OctetString OctetString
String
code=405
diameter.Offline Offline
Unsigned 32-bit integer
vendor=10415 code=1008
diameter.Online Online
Unsigned 32-bit integer
code=1009
diameter.Optional-Capability Optional-Capability
Unsigned 32-bit integer
vendor=10415 code=6
diameter.Origin-AAA-Protocol Origin-AAA-Protocol
Unsigned 32-bit integer
code=408
diameter.Origin-Host Origin-Host
String
code=264
diameter.Origin-Realm Origin-Realm
String
code=296
diameter.Origin-State-Id Origin-State-Id
Unsigned 32-bit integer
code=278
diameter.Originating-IOI Originating-IOI
String
vendor=10415 code=839
diameter.Originating-Interface Originating-Interface
Unsigned 32-bit integer
vendor=10415 code=1110
diameter.Originating-Request Originating-Request
Unsigned 32-bit integer
vendor=10415 code=633
diameter.Originator Originator
Unsigned 32-bit integer
vendor=10415 code=864
diameter.Outgoing-Trunk-Group-ID Outgoing-Trunk-Group-ID
String
vendor=10415 code=853
diameter.PDG-Address PDG-Address
Byte array
vendor=10415 code=895
diameter.PDG-Address.addr_family PDG-Address Address Family
Unsigned 16-bit integer
diameter.PDG-Charging-Id PDG-Charging-Id
Unsigned 32-bit integer
vendor=10415 code=896
diameter.PDP-Address PDP-Address
Byte array
vendor=10415 code=1227
diameter.PDP-Address.addr_family PDP-Address Address Family
Unsigned 16-bit integer
diameter.PDP-Context-Type PDP-Context-Type
Unsigned 32-bit integer
vendor=10415 code=1247
diameter.PDP-Session-operation PDP-Session-operation
Unsigned 32-bit integer
vendor=10415 code=1015
diameter.PS-Append-Free-Format-Data PS-Append-Free-Format-Data
Unsigned 32-bit integer
vendor=10415 code=867
diameter.PS-Free-Format-Data PS-Free-Format-Data
Byte array
vendor=10415 code=866
diameter.PS-Furnish-Charging-Information PS-Furnish-Charging-Information
Byte array
vendor=10415 code=865
diameter.PS-Information PS-Information
Byte array
vendor=10415 code=874
diameter.Participants-Involved Participants-Involved
String
vendor=10415 code=887
diameter.Password-Retry Password-Retry
Signed 32-bit integer
code=75
diameter.Physical-Access-ID Physical-Access-ID
String
vendor=13019 code=313
diameter.Ping-Timestamp Ping-Timestamp
Byte array
vendor=42 code=3
diameter.Ping-Timestamp-Secs Ping-Timestamp-Secs
Unsigned 32-bit integer
vendor=42 code=1
diameter.Ping-Timestamp-Usecs Ping-Timestamp-Usecs
Unsigned 32-bit integer
vendor=42 code=2
diameter.PoC-Change-Conditions PoC-Change-Conditions
Unsigned 32-bit integer
vendor=10415 code=1261
diameter.PoC-Change-Time PoC-Change-Time
Unsigned 32-bit integer
vendor=10415 code=1262
diameter.PoC-Controlling-Address PoC-Controlling-Address
String
vendor=10415 code=858
diameter.PoC-Group-Name PoC-Group-Name
String
vendor=10415 code=859
diameter.PoC-Information PoC-Information
Byte array
vendor=10415 code=879
diameter.PoC-Server-Role PoC-Server-Role
Unsigned 32-bit integer
vendor=10415 code=883
diameter.PoC-Session-Id PoC-Session-Id
String
vendor=10415 code=1229
diameter.Port-Limit Port-Limit
Signed 32-bit integer
code=62
diameter.Port-Number Port-Number
Unsigned 32-bit integer
vendor=13019 code=455
diameter.Positioning-Data Positioning-Data
String
vendor=10415 code=1245
diameter.Precedence Precedence
Unsigned 32-bit integer
vendor=10415 code=1010
diameter.Primary-CCF-Address Primary-CCF-Address
String
vendor=5535 code=1011
diameter.Primary-Charging-Collection-Function-Name Primary-Charging-Collection-Function-Name
String
vendor=10415 code=621
diameter.Primary-Event-Charging-Function-Name Primary-Event-Charging-Function-Name
String
vendor=10415 code=619
diameter.Primary-OCS-Address Primary-OCS-Address
String
vendor=5535 code=1012
diameter.Priority Priority
Unsigned 32-bit integer
vendor=10415 code=1209
diameter.Product-Name Product-Name
String
code=269
diameter.Prompt Prompt
Signed 32-bit integer
code=76
diameter.Proxy-Host Proxy-Host
String
code=280
diameter.Proxy-Info Proxy-Info
Byte array
code=284
diameter.Proxy-State Proxy-State
Byte array
code=33
diameter.Public-Identity Public-Identity
String
vendor=10415 code=2
diameter.QoS-Filter-Rule QoS-Filter-Rule
String
code=407
diameter.QoS-Profile QoS-Profile
Byte array
vendor=13019 code=304
diameter.Quota-Consumption-Time Quota-Consumption-Time
Unsigned 32-bit integer
vendor=10415 code=881
diameter.Quota-Holding-Time Quota-Holding-Time
Unsigned 32-bit integer
vendor=10415 code=871
diameter.RACS-Contact-Point RACS-Contact-Point
String
vendor=13019 code=351
diameter.RAI RAI
String
vendor=10415 code=909
diameter.RR-Bandwidth RR-Bandwidth
Unsigned 32-bit integer
vendor=10415 code=521
diameter.RS-Bandwidth RS-Bandwidth
Unsigned 32-bit integer
vendor=10415 code=522
diameter.Rating-Group Rating-Group
Unsigned 32-bit integer
code=432
diameter.Re-Auth-Request-Type Re-Auth-Request-Type
Unsigned 32-bit integer
code=285
diameter.Read-Reply Read-Reply
Unsigned 32-bit integer
vendor=10415 code=1112
diameter.Read-Reply-Report-Requested Read-Reply-Report-Requested
Unsigned 32-bit integer
vendor=10415 code=1222
diameter.Reason-Code Reason-Code
Unsigned 32-bit integer
vendor=10415 code=17
diameter.Reason-Info Reason-Info
String
vendor=10415 code=18
diameter.Received-Talk-Burst-Time Received-Talk-Burst-Time
Unsigned 32-bit integer
vendor=10415 code=1260
diameter.Received-Talk-Burst-Volume Received-Talk-Burst-Volume
Unsigned 32-bit integer
vendor=10415 code=1259
diameter.Recipient-Address Recipient-Address
String
vendor=10415 code=1108
diameter.Redirect-Address-Type Redirect-Address-Type
Unsigned 32-bit integer
code=433
diameter.Redirect-Host Redirect-Host
String
code=292
diameter.Redirect-Host-Usage Redirect-Host-Usage
Unsigned 32-bit integer
code=261
diameter.Redirect-Max-Cache-Time Redirect-Max-Cache-Time
Unsigned 32-bit integer
code=262
diameter.Redirect-Server Redirect-Server
Byte array
code=434
diameter.Redirect-Server-Address Redirect-Server-Address
String
code=435
diameter.Reply-Applic-ID Reply-Applic-ID
String
vendor=10415 code=1223
diameter.Reply-Message Reply-Message
Byte array
code=18
diameter.Reporting-Level Reporting-Level
Unsigned 32-bit integer
vendor=10415 code=1011
diameter.Requested-Action Requested-Action
Unsigned 32-bit integer
code=436
diameter.Requested-Domain Requested-Domain
Unsigned 32-bit integer
vendor=10415 code=706
diameter.Requested-Information Requested-Information
Unsigned 32-bit integer
vendor=13019 code=353
diameter.Requested-Party-Address Requested-Party-Address
String
vendor=10415 code=1251
diameter.Requested-Service-Unit Requested-Service-Unit
Byte array
code=437
diameter.Required-MBMSBearer-Capabilities Required-MBMSBearer-Capabilities
String
vendor=10415 code=901
diameter.Reservation-Class Reservation-Class
Unsigned 32-bit integer
vendor=13019 code=456
diameter.Reservation-priority Reservation-priority
Unsigned 32-bit integer
vendor=13019 code=458
diameter.Restricted-Filter-Rule Restricted-Filter-Rule
String
code=438
diameter.Result-Code Result-Code
Unsigned 32-bit integer
code=268
diameter.Result-Recipient-Address Result-Recipient-Address
Byte array
vendor=10415 code=1106
diameter.Role-Of-Node Role-Of-Node
Unsigned 32-bit integer
vendor=10415 code=829
diameter.Route-Record Route-Record
String
code=282
diameter.Routeing-Address Routeing-Address
String
vendor=10415 code=1109
diameter.Routeing-Address-Resolution Routeing-Address-Resolution
Unsigned 32-bit integer
vendor=10415 code=1119
diameter.SDP-Media-Description SDP-Media-Description
String
vendor=10415 code=845
diameter.SDP-Media-Name SDP-Media-Name
String
vendor=10415 code=844
diameter.SDP-Media-components SDP-Media-components
Byte array
vendor=10415 code=843
diameter.SDP-Session-Description SDP-Session-Description
String
vendor=10415 code=842
diameter.SGSN-Address SGSN-Address
Byte array
vendor=10415 code=1228
diameter.SGSN-Address.addr_family SGSN-Address Address Family
Unsigned 16-bit integer
diameter.SIP-Accounting-Information SIP-Accounting-Information
Byte array
code=368
diameter.SIP-Accounting-Server-URI SIP-Accounting-Server-URI
String
vendor=10415 code=369
diameter.SIP-Auth-Data-Item SIP-Auth-Data-Item
Byte array
vendor=10415 code=13
diameter.SIP-Authenticate SIP-Authenticate
Byte array
vendor=10415 code=10
diameter.SIP-Authentication-Context SIP-Authentication-Context
Byte array
vendor=10415 code=12
diameter.SIP-Authentication-Info SIP-Authentication-Info
Byte array
code=381
diameter.SIP-Authentication-Scheme SIP-Authentication-Scheme
String
vendor=10415 code=9
diameter.SIP-Authorization SIP-Authorization
Byte array
vendor=10415 code=11
diameter.SIP-Credit-Control-Server-URI SIP-Credit-Control-Server-URI
String
vendor=10415 code=370
diameter.SIP-Deregistration-Reason SIP-Deregistration-Reason
Byte array
code=383
diameter.SIP-Forking-Indication SIP-Forking-Indication
Unsigned 32-bit integer
vendor=10415 code=523
diameter.SIP-Item-Number SIP-Item-Number
Unsigned 32-bit integer
vendor=10415 code=14
diameter.SIP-Mandatory-Capability SIP-Mandatory-Capability
Unsigned 32-bit integer
code=373
diameter.SIP-Method SIP-Method
String
vendor=10415 code=824
diameter.SIP-Number-Auth-Items SIP-Number-Auth-Items
Unsigned 32-bit integer
vendor=10415 code=8
diameter.SIP-Optional-Capability SIP-Optional-Capability
Unsigned 32-bit integer
code=374
diameter.SIP-Reason-Code SIP-Reason-Code
Unsigned 32-bit integer
code=384
diameter.SIP-Reason-Info SIP-Reason-Info
String
vendor=10415 code=385
diameter.SIP-Request-Timestamp SIP-Request-Timestamp
Unsigned 32-bit integer
vendor=10415 code=834
diameter.SIP-Response-Timestamp SIP-Response-Timestamp
Unsigned 32-bit integer
vendor=10415 code=835
diameter.SIP-Server-Assignment-Type SIP-Server-Assignment-Type
Unsigned 32-bit integer
code=375
diameter.SIP-Server-Capabilities SIP-Server-Capabilities
Byte array
code=372
diameter.SIP-Server-URI SIP-Server-URI
String
vendor=10415 code=371
diameter.SIP-Supported-User-Data-Type SIP-Supported-User-Data-Type
String
vendor=10415 code=388
diameter.SIP-User-Authorization-Type SIP-User-Authorization-Type
Unsigned 32-bit integer
code=387
diameter.SIP-User-Data SIP-User-Data
Byte array
code=389
diameter.SIP-User-Data-Already-Available SIP-User-Data-Already-Available
Unsigned 32-bit integer
code=392
diameter.SIP-User-Data-Contents SIP-User-Data-Contents
Byte array
vendor=10415 code=391
diameter.SIP-User-Data-Type SIP-User-Data-Type
String
vendor=10415 code=390
diameter.SIP-Visited-Network-Id SIP-Visited-Network-Id
String
vendor=10415 code=386
diameter.Secondary-CCF-Address Secondary-CCF-Address
String
vendor=5535 code=1015
diameter.Secondary-Charging-Collection-Function-Name Secondary-Charging-Collection-Function-Name
String
vendor=10415 code=622
diameter.Secondary-Event-Charging-Function-Name Secondary-Event-Charging-Function-Name
String
vendor=10415 code=620
diameter.Secondary-OCS-Address Secondary-OCS-Address
String
vendor=5535 code=1016
diameter.Sender-Address Sender-Address
String
vendor=10415 code=1104
diameter.Sender-Visibility Sender-Visibility
Unsigned 32-bit integer
vendor=10415 code=1113
diameter.Sequence-Number Sequence-Number
Unsigned 32-bit integer
vendor=10415 code=1107
diameter.Served-Party-IP-Address Served-Party-IP-Address
Byte array
vendor=10415 code=848
diameter.Served-Party-IP-Address.addr_family Served-Party-IP-Address Address Family
Unsigned 16-bit integer
diameter.Served-User-Identity Served-User-Identity
Byte array
vendor=10415 code=1100
diameter.Server-Assignment-Type Server-Assignment-Type
Unsigned 32-bit integer
vendor=10415 code=15
diameter.Server-Capabilities Server-Capabilities
Byte array
vendor=10415 code=4
diameter.Server-Name Server-Name
String
vendor=10415 code=3
diameter.Service-Class Service-Class
String
vendor=13019 code=459
diameter.Service-Context-Id Service-Context-Id
String
code=461
diameter.Service-ID Service-ID
String
vendor=10415 code=855
diameter.Service-Identifier Service-Identifier
Unsigned 32-bit integer
code=439
diameter.Service-Indication Service-Indication
Byte array
vendor=10415 code=704
diameter.Service-Information Service-Information
Byte array
vendor=10415 code=873
diameter.Service-Key Service-Key
String
vendor=10415 code=1114
diameter.Service-Parameter-Info Service-Parameter-Info
Byte array
code=440
diameter.Service-Parameter-Type Service-Parameter-Type
Unsigned 32-bit integer
code=441
diameter.Service-Parameter-Value Service-Parameter-Value
Byte array
code=442
diameter.Service-Specific-Data Service-Specific-Data
String
vendor=10415 code=863
diameter.Service-Type Service-Type
Unsigned 32-bit integer
code=6
diameter.Session-Binding Session-Binding
Unsigned 32-bit integer
code=270
diameter.Session-Bundle-Id Session-Bundle-Id
Unsigned 32-bit integer
vendor=13019 code=400
diameter.Session-Id Session-Id
String
code=263
diameter.Session-Server-Failover Session-Server-Failover
Unsigned 32-bit integer
code=271
diameter.Session-Timeout Session-Timeout
Unsigned 32-bit integer
code=27
diameter.Signature Signature
Byte array
code=80
diameter.Specific-Action Specific-Action
Unsigned 32-bit integer
vendor=10415 code=513
diameter.State State
Byte array
code=24
diameter.Status Status
Byte array
vendor=10415 code=1116
diameter.Status-Code Status-Code
String
vendor=10415 code=1117
diameter.Status-Text Status-Text
String
vendor=10415 code=1118
diameter.Submission-Time Submission-Time
Unsigned 32-bit integer
vendor=10415 code=1202
diameter.Subs-Req-Type Subs-Req-Type
Unsigned 32-bit integer
vendor=10415 code=705
diameter.Subscription-Id Subscription-Id
Byte array
code=443
diameter.Subscription-Id-Data Subscription-Id-Data
String
code=444
diameter.Subscription-Id-Type Subscription-Id-Type
Unsigned 32-bit integer
code=450
diameter.Supported-Applications Supported-Applications
Byte array
vendor=10415 code=631
diameter.Supported-Features Supported-Features
Byte array
vendor=10415 code=628
diameter.Supported-Vendor-Id Supported-Vendor-Id
Unsigned 32-bit integer
code=265
diameter.TFT-Filter TFT-Filter
String
code=1012
diameter.TFT-Packet-Filter-Information TFT-Packet-Filter-Information
Byte array
vendor=10415 code=1013
diameter.TMGI TMGI
Byte array
vendor=10415 code=900
diameter.Talk-Burst-Exchange Talk-Burst-Exchange
Byte array
vendor=10415 code=1255
diameter.Talk-Burst-Time Talk-Burst-Time
Unsigned 32-bit integer
vendor=10415 code=1257
diameter.Talk-Burst-Volume Talk-Burst-Volume
Unsigned 32-bit integer
vendor=10415 code=1256
diameter.Tariff-Change-Usage Tariff-Change-Usage
Unsigned 32-bit integer
code=452
diameter.Tariff-Time-Change Tariff-Time-Change
Unsigned 32-bit integer
code=451
diameter.Terminal-Type Terminal-Type
Byte array
vendor=13019 code=352
diameter.Terminating-IOI Terminating-IOI
String
vendor=10415 code=840
diameter.Termination-Action Termination-Action
Unsigned 32-bit integer
code=29
diameter.Termination-Cause Termination-Cause
Unsigned 32-bit integer
code=295
diameter.Time-Quota-Threshold Time-Quota-Threshold
Unsigned 32-bit integer
vendor=10415 code=868
diameter.Time-Stamps Time-Stamps
Byte array
vendor=10415 code=833
diameter.ToS-Traffic-Class ToS-Traffic-Class
Byte array
vendor=10415 code=1014
diameter.Token-Text Token-Text
String
code=1215
diameter.Transaction-Identifier Transaction-Identifier
Byte array
vendor=10415 code=401
diameter.Transport-Class Transport-Class
Unsigned 32-bit integer
vendor=13019 code=311
diameter.Trigger Trigger
Byte array
vendor=10415 code=1264
diameter.Trigger-Event Trigger-Event
Unsigned 32-bit integer
vendor=10415 code=1103
diameter.Trigger-Type Trigger-Type
Unsigned 32-bit integer
vendor=10415 code=870
diameter.Trunk-Group-ID Trunk-Group-ID
Byte array
vendor=10415 code=851
diameter.Tunnel-Medium-Type Tunnel-Medium-Type
Unsigned 32-bit integer
code=65
diameter.Tunnel-Password Tunnel-Password
Byte array
code=69
diameter.Tunnel-Server-Endpoint Tunnel-Server-Endpoint
Byte array
code=67
diameter.Tunnel-Type Tunnel-Type
Unsigned 32-bit integer
code=64
diameter.Tunneling Tunneling
Byte array
code=401
diameter.Type-Number Type-Number
Unsigned 32-bit integer
vendor=10415 code=1204
diameter.UICC-Key-Material UICC-Key-Material
Byte array
vendor=10415 code=406
diameter.Unit-Quota-Threshold Unit-Quota-Threshold
Unsigned 32-bit integer
vendor=10415 code=1226
diameter.Unit-Value Unit-Value
Byte array
code=445
diameter.Used-Service-Unit Used-Service-Unit
Byte array
code=446
diameter.User-Authorization-Type User-Authorization-Type
Unsigned 32-bit integer
vendor=10415 code=24
diameter.User-Data User-Data
Byte array
vendor=10415 code=7
diameter.User-Data-Already-Available User-Data-Already-Available
Unsigned 32-bit integer
vendor=10415 code=26
diameter.User-Data-Request-Type User-Data-Request-Type
Unsigned 32-bit integer
vendor=10415 code=25
diameter.User-Equipment-Info User-Equipment-Info
Byte array
code=458
diameter.User-Equipment-Info-Type User-Equipment-Info-Type
Unsigned 32-bit integer
code=459
diameter.User-Equipment-Info-Value User-Equipment-Info-Value
Byte array
code=460
diameter.User-Identity User-Identity
Byte array
vendor=10415 code=700
diameter.User-Name User-Name
String
code=1
diameter.User-Password User-Password
Byte array
code=2
diameter.User-Session-Id User-Session-Id
String
vendor=10415 code=830
diameter.V4-Transport-Address V4-Transport-Address
Byte array
vendor=13019 code=454
diameter.V6-Transport-address V6-Transport-address
Byte array
vendor=13019 code=453
diameter.VAS-ID VAS-ID
String
vendor=10415 code=1102
diameter.VASP-ID VASP-ID
String
vendor=10415 code=1101
diameter.Validity-Time Validity-Time
Unsigned 32-bit integer
code=448
diameter.Value-Digits Value-Digits
Signed 64-bit integer
code=447
diameter.Vendor-Id Vendor-Id
Unsigned 32-bit integer
code=266
diameter.Vendor-Specific Vendor-Specific
Unsigned 32-bit integer
code=26
diameter.Vendor-Specific-Application-Id Vendor-Specific-Application-Id
Byte array
code=260
diameter.Visited-Network-Identifier Visited-Network-Identifier
Byte array
vendor=10415 code=1
diameter.Volume-Quota-Threshold Volume-Quota-Threshold
Unsigned 32-bit integer
vendor=10415 code=869
diameter.WAG-Address WAG-Address
Byte array
vendor=10415 code=890
diameter.WAG-Address.addr_family WAG-Address Address Family
Unsigned 16-bit integer
diameter.WAG-PLMN-Id WAG-PLMN-Id
Byte array
code=891
diameter.WLAN-Information WLAN-Information
String
vendor=10415 code=875
diameter.WLAN-Radio-Container WLAN-Radio-Container
Byte array
vendor=10415 code=892
diameter.WLAN-Session-Id WLAN-Session-Id
String
vendor=10415 code=1246
diameter.WLAN-Technology WLAN-Technology
Unsigned 32-bit integer
vendor=10415 code=893
diameter.WLAN-UE-Local-IPAddress WLAN-UE-Local-IPAddress
Byte array
vendor=10415 code=894
diameter.WLAN-UE-Local-IPAddress.addr_family WLAN-UE-Local-IPAddress Address Family
Unsigned 16-bit integer
diameter.Wildcarded-PSI Wildcarded-PSI
String
vendor=10415 code=634
diameter.applicationId ApplicationId
Unsigned 32-bit integer
diameter.avp AVP
Byte array
diameter.avp.code AVP Code
Unsigned 32-bit integer
diameter.avp.flags AVP Flags
Unsigned 8-bit integer
diameter.avp.flags.protected Protected
Boolean
diameter.avp.flags.reserved3 Reserved
Boolean
diameter.avp.flags.reserved4 Reserved
Boolean
diameter.avp.flags.reserved5 Reserved
Boolean
diameter.avp.flags.reserved6 Reserved
Boolean
diameter.avp.flags.reserved7 Reserved
Boolean
diameter.avp.invalid-data Data
Byte array
diameter.avp.len AVP Length
Unsigned 24-bit integer
diameter.avp.unknown Value
Byte array
diameter.avp.vendorId AVP Vendor Id
Unsigned 32-bit integer
diameter.cmd.code Command Code
Unsigned 32-bit integer
diameter.endtoendid End-to-End Identifier
Unsigned 32-bit integer
diameter.flags Flags
Unsigned 8-bit integer
diameter.flags.T T(Potentially re-transmitted message)
Boolean
diameter.flags.error Error
Boolean
diameter.flags.mandatory Mandatory
Boolean
diameter.flags.proxyable Proxyable
Boolean
diameter.flags.request Request
Boolean
diameter.flags.reserved4 Reserved
Boolean
diameter.flags.reserved5 Reserved
Boolean
diameter.flags.reserved6 Reserved
Boolean
diameter.flags.reserved7 Reserved
Boolean
diameter.flags.vendorspecific Vendor-Specific
Boolean
diameter.hopbyhopid Hop-by-Hop Identifier
Unsigned 32-bit integer
diameter.length Length
Unsigned 24-bit integer
diameter.vendorId VendorId
Unsigned 32-bit integer
diameter.version Version
Unsigned 8-bit integer
daap.name Name
String
Tag Name
daap.size Size
Unsigned 32-bit integer
Tag Size
dpnss.a_b_party_addr A/B party Address
String
A/B party Address
dpnss.call_idx Call Index
String
Call Index
dpnss.cc_msg_type Call Control Message Type
Unsigned 8-bit integer
Call Control Message Type
dpnss.clearing_cause Clearing Cause
Unsigned 8-bit integer
Clearing Cause
dpnss.dest_addr Destination Address
String
Destination Address
dpnss.e2e_msg_type END-TO-END Message Type
Unsigned 8-bit integer
END-TO-END Message Type
dpnss.ext_bit Extension bit
Boolean
Extension bit
dpnss.ext_bit_notall Extension bit
Boolean
Extension bit
dpnss.lbl_msg_type LINK-BY-LINK Message Type
Unsigned 8-bit integer
LINK-BY-LINK Message Type
dpnss.maint_act Maintenance action
Unsigned 8-bit integer
Maintenance action
dpnss.man_code Manufacturer Code
Unsigned 8-bit integer
Manufacturer Code
dpnss.msg_grp_id Message Group Identifier
Unsigned 8-bit integer
Message Group Identifier
dpnss.rejection_cause Rejection Cause
Unsigned 8-bit integer
Rejection Cause
dpnss.sic_details_data2 Data Rates
Unsigned 8-bit integer
Type of Data (011) : Data Rates
dpnss.sic_details_for_data1 Data Rates
Unsigned 8-bit integer
Type of Data (010) : Data Rates
dpnss.sic_details_for_speech Details for Speech
Unsigned 8-bit integer
Details for Speech
dpnss.sic_oct2_async_data Data Format
Unsigned 8-bit integer
Data Format
dpnss.sic_oct2_async_flow_ctrl Flow Control
Boolean
Flow Control
dpnss.sic_oct2_data_type Data Type
Unsigned 8-bit integer
Data Type
dpnss.sic_oct2_duplex Data Type
Boolean
Data Type
dpnss.sic_oct2_sync_byte_timing Byte Timing
Boolean
Byte Timing
dpnss.sic_oct2_sync_data_format Network Independent Clock
Boolean
Network Independent Clock
dpnss.sic_type Type of data
Unsigned 8-bit integer
Type of data
dpnss.subcode Subcode
Unsigned 8-bit integer
Subcode
dmp.ack Acknowledgement
No value
Acknowledgement
dmp.ack_diagnostic Ack Diagnostic
Unsigned 8-bit integer
Diagnostic
dmp.ack_reason Ack Reason
Unsigned 8-bit integer
Reason
dmp.ack_rec_list Recipient List
No value
Recipient List
dmp.acp127recip ACP127 Recipient
String
ACP 127 Recipient
dmp.acp127recip_len ACP127 Recipient
Unsigned 8-bit integer
ACP 127 Recipient Length
dmp.action Action
Boolean
Action
dmp.addr_encoding Address Encoding
Boolean
Address Encoding
dmp.addr_ext Address Extended
Boolean
Address Extended
dmp.addr_form Address Form
Unsigned 8-bit integer
Address Form
dmp.addr_length Address Length
Unsigned 8-bit integer
Address Length
dmp.addr_length1 Address Length (bits 4-0)
Unsigned 8-bit integer
Address Length (bits 4-0)
dmp.addr_length2 Address Length (bits 9-5)
Unsigned 8-bit integer
Address Length (bits 9-5)
dmp.addr_type Address Type
Unsigned 8-bit integer
Address Type
dmp.addr_type_ext Address Type Extended
Unsigned 8-bit integer
Address Type Extended
dmp.addr_unknown Unknown encoded address
Byte array
Unknown encoded address
dmp.analysis.ack_first_sent_in Retransmission of Acknowledgement sent in
Frame number
This Acknowledgement was first sent in this frame
dmp.analysis.ack_in Acknowledgement in
Frame number
This packet has an Acknowledgement in this frame
dmp.analysis.ack_missing Acknowledgement missing
No value
The acknowledgement for this packet is missing
dmp.analysis.ack_time Acknowledgement Time
Time duration
The time between the Message and the Acknowledge
dmp.analysis.dup_ack_no Duplicate ACK #
Unsigned 32-bit integer
Duplicate Acknowledgement count
dmp.analysis.msg_first_sent_in Retransmission of Message sent in
Frame number
This Message was first sent in this frame
dmp.analysis.msg_in Message in
Frame number
This packet has a Message in this frame
dmp.analysis.msg_missing Message missing
No value
The Message for this packet is missing
dmp.analysis.notif_first_sent_in Retransmission of Notification sent in
Frame number
This Notification was first sent in this frame
dmp.analysis.notif_in Notification in
Frame number
This packet has a Notification in this frame
dmp.analysis.notif_time Notification Reply Time
Time duration
The time between the Message and the Notification
dmp.analysis.report_first_sent_in Retransmission of Report sent in
Frame number
This Report was first sent in this frame
dmp.analysis.report_in Report in
Frame number
This packet has a Report in this frame
dmp.analysis.report_time Report Reply Time
Time duration
The time between the Message and the Report
dmp.analysis.retrans_no Retransmission #
Unsigned 32-bit integer
Retransmission count
dmp.analysis.retrans_time Retransmission Time
Time duration
The time between the last Message and this Message
dmp.analysis.total_retrans_time Total Retransmission Time
Time duration
The time between the first Message and this Message
dmp.analysis.total_time Total Time
Time duration
The time between the first Message and the Acknowledge
dmp.asn1_per ASN.1 PER-encoded OR-name
Byte array
ASN.1 PER-encoded OR-name
dmp.auth_discarded Authorizing users discarded
Boolean
Authorizing users discarded
dmp.body Message Body
No value
Message Body
dmp.body.compression Compression
Unsigned 8-bit integer
Compression
dmp.body.data User data
No value
User data
dmp.body.eit EIT
Unsigned 8-bit integer
Encoded Information Type
dmp.body.id Structured Id
Unsigned 8-bit integer
Structured Body Id (1 byte)
dmp.body.plain Message Body
String
Message Body
dmp.body.structured Structured Body
Byte array
Structured Body
dmp.body.uncompressed Uncompressed User data
No value
Uncompressed User data
dmp.body_format Body format
Unsigned 8-bit integer
Body format
dmp.checksum Checksum
Unsigned 16-bit integer
Checksum
dmp.checksum_bad Bad
Boolean
True: checksum doesn't match packet content; False: matches content or not checked
dmp.checksum_good Good
Boolean
True: checksum matches packet content; False: doesn't match content or not checked
dmp.checksum_used Checksum
Boolean
Checksum Used
dmp.cont_id_discarded Content Identifier discarded
Boolean
Content identifier discarded
dmp.content_type Content Type
Unsigned 8-bit integer
Content Type
dmp.delivery_time Delivery Time
Unsigned 8-bit integer
Delivery Time
dmp.direct_addr Direct Address
Unsigned 8-bit integer
Direct Address
dmp.direct_addr1 Direct Address (bits 6-0)
Unsigned 8-bit integer
Direct Address (bits 6-0)
dmp.direct_addr2 Direct Address (bits 12-7)
Unsigned 8-bit integer
Direct Address (bits 12-7)
dmp.direct_addr3 Direct Address (bits 18-13)
Unsigned 8-bit integer
Direct Address (bits 18-13)
dmp.dl_expansion_prohib DL expansion prohibited
Boolean
DL expansion prohibited
dmp.dr Delivery Report
No value
Delivery Report
dmp.dtg DTG
Unsigned 8-bit integer
DTG
dmp.dtg.sign DTG in the
Boolean
Sign
dmp.dtg.val DTG Value
Unsigned 8-bit integer
DTG Value
dmp.envelope Envelope
No value
Envelope
dmp.envelope_flags Flags
Unsigned 8-bit integer
Envelope Flags
dmp.expiry_time Expiry Time
Unsigned 8-bit integer
Expiry Time
dmp.expiry_time_val Expiry Time Value
Unsigned 8-bit integer
Expiry Time Value
dmp.ext_rec_count Extended Recipient Count
Unsigned 16-bit integer
Extended Recipient Count
dmp.heading_flags Heading Flags
No value
Heading Flags
dmp.hop_count Hop Count
Unsigned 8-bit integer
Hop Count
dmp.id DMP Identifier
Unsigned 16-bit integer
DMP identifier
dmp.importance Importance
Unsigned 8-bit integer
Importance
dmp.info_present Info Present
Boolean
Info Present
dmp.message Message Content
No value
Message Content
dmp.mission_pol_id Mission Policy Identifier
Unsigned 8-bit integer
Mission Policy Identifier
dmp.msg_id Message Identifier
Unsigned 16-bit integer
Message identifier
dmp.msg_type Message type
Unsigned 8-bit integer
Message type
dmp.nat_pol_id National Policy Identifier
Unsigned 8-bit integer
National Policy Identifier
dmp.ndr Non-Delivery Report
No value
Non-Delivery Report
dmp.not_req Notification Request
Unsigned 8-bit integer
Notification Request
dmp.notif_discard_reason Discard Reason
Unsigned 8-bit integer
Discard Reason
dmp.notif_non_rec_reason Non-Receipt Reason
Unsigned 8-bit integer
Non-Receipt Reason
dmp.notif_on_type ON Type
Unsigned 8-bit integer
ON Type
dmp.notif_type Notification Type
Unsigned 8-bit integer
Notification Type
dmp.notification Notification Content
No value
Notification Content
dmp.nrn Non-Receipt Notification (NRN)
No value
Non-Receipt Notification (NRN)
dmp.on Other Notification (ON)
No value
Other Notification (ON)
dmp.or_name ASN.1 BER-encoded OR-name
No value
ASN.1 BER-encoded OR-name
dmp.originator Originator
No value
Originator
dmp.precedence Precedence
Unsigned 8-bit integer
Precedence
dmp.protocol_id Protocol Identifier
Unsigned 8-bit integer
Protocol Identifier
dmp.rec_count Recipient Count
Unsigned 8-bit integer
Recipient Count
dmp.rec_no Recipient Number
Unsigned 32-bit integer
Recipient Number Offset
dmp.rec_no_ext Recipient Number Extended
Boolean
Recipient Number Extended
dmp.rec_no_offset Recipient Number Offset
Unsigned 8-bit integer
Recipient Number Offset
dmp.rec_no_offset1 Recipient Number (bits 3-0)
Unsigned 8-bit integer
Recipient Number (bits 3-0) Offset
dmp.rec_no_offset2 Recipient Number (bits 9-4)
Unsigned 8-bit integer
Recipient Number (bits 9-4) Offset
dmp.rec_no_offset3 Recipient Number (bits 14-10)
Unsigned 8-bit integer
Recipient Number (bits 14-10) Offset
dmp.rec_present Recipient Present
Boolean
Recipient Present
dmp.receipt_time Receipt Time
Unsigned 8-bit integer
Receipt time
dmp.receipt_time_val Receipt Time Value
Unsigned 8-bit integer
Receipt Time Value
dmp.recip_reassign_prohib Recipient reassign prohibited
Boolean
Recipient Reassign prohibited
dmp.recipient Recipient Number
No value
Recipient
dmp.rep_rec Report Request
Unsigned 8-bit integer
Report Request
dmp.report Report Content
No value
Report Content
dmp.report_diagnostic Diagnostic (X.411)
Unsigned 8-bit integer
Diagnostic
dmp.report_reason Reason (X.411)
Unsigned 8-bit integer
Reason
dmp.report_type Report Type
Boolean
Report Type
dmp.reporting_name Reporting Name Number
No value
Reporting Name
dmp.reserved Reserved
Unsigned 8-bit integer
Reserved
dmp.rn Receipt Notification (RN)
No value
Receipt Notification (RN)
dmp.sec_cat Security Categories
Unsigned 8-bit integer
Security Categories
dmp.sec_cat.bit0 Bit 0
Boolean
Bit 0
dmp.sec_cat.bit1 Bit 1
Boolean
Bit 1
dmp.sec_cat.bit2 Bit 2
Boolean
Bit 2
dmp.sec_cat.bit3 Bit 3
Boolean
Bit 3
dmp.sec_cat.bit4 Bit 4
Boolean
Bit 4
dmp.sec_cat.bit5 Bit 5
Boolean
Bit 5
dmp.sec_cat.bit6 Bit 6
Boolean
Bit 6
dmp.sec_cat.bit7 Bit 7
Boolean
Bit 7
dmp.sec_cat.cl Clear
Boolean
Clear
dmp.sec_cat.cs Crypto Security
Boolean
Crypto Security
dmp.sec_cat.ex Exclusive
Boolean
Exclusive
dmp.sec_cat.ne National Eyes Only
Boolean
National Eyes Only
dmp.sec_class Security Classification
Unsigned 8-bit integer
Security Classification
dmp.sec_pol Security Policy
Unsigned 8-bit integer
Security Policy
dmp.sic SIC
String
SIC
dmp.sic_bitmap Length Bitmap (0 = 3 bytes, 1 = 4-8 bytes)
Unsigned 8-bit integer
SIC Length Bitmap
dmp.sic_bits Bit 7-4
Unsigned 8-bit integer
SIC Bit 7-4, Characters [A-Z0-9] only
dmp.sic_bits_any Bit 7-4
Unsigned 8-bit integer
SIC Bit 7-4, Any valid characters
dmp.sic_key SICs
No value
SIC Content
dmp.sic_key.chars Valid Characters
Boolean
SIC Valid Characters
dmp.sic_key.num Number of SICs
Unsigned 8-bit integer
Number of SICs
dmp.sic_key.type Type
Unsigned 8-bit integer
SIC Content Type
dmp.sic_key.values Content Byte
Unsigned 8-bit integer
SIC Content Byte
dmp.subj_id Subject Message Identifier
Unsigned 16-bit integer
Subject Message Identifier
dmp.subject Subject
String
Subject
dmp.subject_discarded Subject discarded
Boolean
Subject discarded
dmp.subm_time Submission Time
Unsigned 16-bit integer
Submission Time
dmp.subm_time_value Submission Time Value
Unsigned 16-bit integer
Submission Time Value
dmp.suppl_info Supplementary Information
String
Supplementary Information
dmp.suppl_info_len Supplementary Information
Unsigned 8-bit integer
Supplementary Information Length
dmp.time_diff Time Difference
Unsigned 8-bit integer
Time Difference
dmp.time_diff_present Time Diff
Boolean
Time Diff Present
dmp.time_diff_value Time Difference Value
Unsigned 8-bit integer
Time Difference Value
dmp.version Protocol Version
Unsigned 8-bit integer
Protocol Version
dplay.command DirectPlay command
Unsigned 16-bit integer
dplay.command_2 DirectPlay second command
Unsigned 16-bit integer
dplay.dialect.version DirectPlay dialect version
Unsigned 16-bit integer
dplay.dialect.version_2 DirectPlay second dialect version
Unsigned 16-bit integer
dplay.dplay_str DirectPlay action string
String
dplay.dplay_str_2 DirectPlay second action string
String
dplay.flags DirectPlay session desc flags
Unsigned 32-bit integer
dplay.flags.acq_voice acquire voice
Boolean
Acq Voice
dplay.flags.can_join can join
Boolean
Can Join
dplay.flags.ignored ignored
Boolean
Ignored
dplay.flags.migrate_host migrate host flag
Boolean
Migrate Host
dplay.flags.no_create_players no create players flag
Boolean
No Create Players
dplay.flags.no_player_updates no player updates
Boolean
No Player Updates
dplay.flags.no_sess_desc no session desc changes
Boolean
No Sess Desc Changes
dplay.flags.opt_latency optimize for latency
Boolean
Opt Latency
dplay.flags.order preserve order
Boolean
Order
dplay.flags.pass_req password required
Boolean
Pass Req
dplay.flags.priv_sess private session
Boolean
Priv Session
dplay.flags.reliable use reliable protocol
Boolean
Reliable
dplay.flags.route route via game host
Boolean
Route
dplay.flags.short_player_msg short player message
Boolean
Short Player Msg
dplay.flags.srv_p_only get server player only
Boolean
Svr Player Only
dplay.flags.unused unused
Boolean
Unused
dplay.flags.use_auth use authentication
Boolean
Use Auth
dplay.flags.use_ping use ping
Boolean
Use Ping
dplay.game.guid DirectPlay game GUID
dplay.instance.guid DirectPlay instance guid
dplay.message.guid Message GUID
dplay.multi.create_offset Offset to PackedPlayer struct
Unsigned 32-bit integer
dplay.multi.group_id Group ID
Byte array
dplay.multi.id_to ID to
Byte array
dplay.multi.password Password
String
dplay.multi.password_offset Offset to password
Unsigned 32-bit integer
dplay.multi.player_id Player ID
Byte array
dplay.ping.id_from ID From
Byte array
dplay.ping.tick_count Tick Count
Unsigned 32-bit integer
dplay.player_msg DirectPlay Player to Player message
Byte array
dplay.pp.dialect PackedPlayer dialect version
Unsigned 32-bit integer
dplay.pp.fixed_size PackedPlayer fixed size
Unsigned 32-bit integer
dplay.pp.flags PackedPlayer flags
Unsigned 32-bit integer
dplay.pp.flags.in_group in group
Boolean
dplay.pp.flags.nameserver is name server
Boolean
dplay.pp.flags.sending sending player on local machine
Boolean
dplay.pp.flags.sysplayer is system player
Boolean
dplay.pp.id PackedPlayer ID
Byte array
dplay.pp.long_name_len PackedPlayer long name length
Unsigned 32-bit integer
dplay.pp.parent_id PackedPlayer parent ID
Byte array
dplay.pp.player_count PackedPlayer player count
Unsigned 32-bit integer
dplay.pp.player_data PackedPlayer player data
Byte array
dplay.pp.player_data_size PackedPlayer player data size
Unsigned 32-bit integer
dplay.pp.player_id PackedPlayer player ID
Byte array
dplay.pp.short_name PackedPlayer short name
String
dplay.pp.short_name_len PackedPlayer short name length
Unsigned 32-bit integer
dplay.pp.size PackedPlayer size
Unsigned 32-bit integer
dplay.pp.sp_data PackedPlayer service provider data
Byte array
dplay.pp.sp_data_size PackedPlayer service provider data size
Unsigned 32-bit integer
dplay.pp.sysplayer_id PackedPlayer system player ID
Byte array
dplay.pp.unknown_1 PackedPlayer unknown 1
Byte array
dplay.saddr.af DirectPlay s_addr_in address family
Unsigned 16-bit integer
dplay.saddr.ip DirectPlay s_addr_in ip address
IPv4 address
dplay.saddr.padding DirectPlay s_addr_in null padding
Byte array
dplay.saddr.port DirectPlay s_addr_in port
Unsigned 16-bit integer
dplay.sd.capi SecDesc CAPI provider ptr
Byte array
dplay.sd.capi_type SecDesc CAPI provider type
Unsigned 32-bit integer
dplay.sd.enc_alg SecDesc encryption algorithm
Unsigned 32-bit integer
dplay.sd.flags SecDesc flags
Unsigned 32-bit integer
dplay.sd.size SecDesc struct size
Unsigned 32-bit integer
dplay.sd.sspi SecDesc SSPI provider ptr
Byte array
dplay.sess_desc.curr_players DirectPlay current players
Unsigned 32-bit integer
dplay.sess_desc.length DirectPlay session desc length
Unsigned 32-bit integer
dplay.sess_desc.max_players DirectPlay max players
Unsigned 32-bit integer
dplay.sess_desc.name_ptr Session description name pointer placeholder
Byte array
dplay.sess_desc.pw_ptr Session description password pointer placeholder
Byte array
dplay.sess_desc.res_1 Session description reserved 1
Byte array
dplay.sess_desc.res_2 Session description reserved 2
Byte array
dplay.sess_desc.user_1 Session description user defined 1
Byte array
dplay.sess_desc.user_2 Session description user defined 2
Byte array
dplay.sess_desc.user_3 Session description user defined 3
Byte array
dplay.sess_desc.user_4 Session description user defined 4
Byte array
dplay.size DirectPlay package size
Unsigned 32-bit integer
dplay.spp.dialect SuperPackedPlayer dialect version
Unsigned 32-bit integer
dplay.spp.flags SuperPackedPlayer flags
Unsigned 32-bit integer
dplay.spp.flags.in_group in group
Boolean
dplay.spp.flags.nameserver is name server
Boolean
dplay.spp.flags.sending sending player on local machine
Boolean
dplay.spp.flags.sysplayer is system player
Boolean
dplay.spp.id SuperPackedPlayer ID
Byte array
dplay.spp.parent_id SuperPackedPlayer parent ID
Byte array
dplay.spp.pd_length SuperPackedPlayer player data length
Unsigned 32-bit integer
dplay.spp.pim SuperPackedPlayer player info mask
Unsigned 32-bit integer
dplay.spp.pim.long_name SuperPackedPlayer have long name
Unsigned 32-bit integer
dplay.spp.pim.parent_id SuperPackedPlayer have parent ID
Unsigned 32-bit integer
dplay.spp.pim.pd_length SuperPackedPlayer player data length info
Unsigned 32-bit integer
dplay.spp.pim.player_count SuperPackedPlayer player count info
Unsigned 32-bit integer
dplay.spp.pim.short_name SuperPackedPlayer have short name
Unsigned 32-bit integer
dplay.spp.pim.shortcut_count SuperPackedPlayer shortcut count info
Unsigned 32-bit integer
dplay.spp.pim.sp_length SuperPackedPlayer service provider length info
Unsigned 32-bit integer
dplay.spp.player_count SuperPackedPlayer player count
Unsigned 32-bit integer
dplay.spp.player_data SuperPackedPlayer player data
Byte array
dplay.spp.player_id SuperPackedPlayer player ID
Byte array
dplay.spp.short_name SuperPackedPlayer short name
String
dplay.spp.shortcut_count SuperPackedPlayer shortcut count
Unsigned 32-bit integer
dplay.spp.shortcut_id SuperPackedPlayer shortcut ID
Byte array
dplay.spp.size SuperPackedPlayer size
Unsigned 32-bit integer
dplay.spp.sp_data SuperPackedPlayer service provider data
Byte array
dplay.spp.sp_data_length SuperPackedPlayer service provider data length
Unsigned 32-bit integer
dplay.spp.sysplayer_id SuperPackedPlayer system player ID
Byte array
dplay.token DirectPlay token
Unsigned 32-bit integer
dplay.type02.all Enumerate all sessions
Boolean
All
dplay.type02.flags Enum Session flags
Unsigned 32-bit integer
dplay.type02.game.guid DirectPlay game GUID
dplay.type02.joinable Enumerate joinable sessions
Boolean
Joinable
dplay.type02.password Session password
String
dplay.type02.password_offset Enum Sessions password offset
Unsigned 32-bit integer
dplay.type02.pw_req Enumerate sessions requiring a password
Boolean
Password
dplay.type_01.game_name Enum Session Reply game name
String
dplay.type_01.name_offs Enum Session Reply name offset
Unsigned 32-bit integer
dplay.type_05.flags Player ID request flags
Unsigned 32-bit integer
dplay.type_05.flags.local is local player
Boolean
dplay.type_05.flags.name_server is name server
Boolean
dplay.type_05.flags.secure is secure session
Boolean
dplay.type_05.flags.sys_player is system player
Boolean
dplay.type_05.flags.unknown unknown
Boolean
dplay.type_07.capi CAPI provider
String
dplay.type_07.capi_offset CAPI provider offset
Unsigned 32-bit integer
dplay.type_07.dpid DirectPlay ID
Byte array
dplay.type_07.hresult Request player HRESULT
Unsigned 32-bit integer
dplay.type_07.sspi SSPI provider
String
dplay.type_07.sspi_offset SSPI provider offset
Unsigned 32-bit integer
dplay.type_0f.data_offset Data Offset
Unsigned 32-bit integer
dplay.type_0f.id_to ID to
Byte array
dplay.type_0f.player_data Player Data
Byte array
dplay.type_0f.player_id Player ID
Byte array
dplay.type_13.create_offset Create Offset
Unsigned 32-bit integer
dplay.type_13.group_id Group ID
Byte array
dplay.type_13.id_to ID to
Byte array
dplay.type_13.password Password
String
dplay.type_13.password_offset Password Offset
Unsigned 32-bit integer
dplay.type_13.player_id Player ID
Byte array
dplay.type_13.tick_count Tick count? Looks like an ID
Byte array
dplay.type_15.data_size Data Size
Unsigned 32-bit integer
dplay.type_15.message.size Message size
Unsigned 32-bit integer
dplay.type_15.offset Offset
Unsigned 32-bit integer
dplay.type_15.packet_idx Packet Index
Unsigned 32-bit integer
dplay.type_15.packet_offset Packet offset
Unsigned 32-bit integer
dplay.type_15.total_packets Total Packets
Unsigned 32-bit integer
dplay.type_1a.id_to ID From
Byte array
dplay.type_1a.password Password
String
dplay.type_1a.password_offset Password Offset
Unsigned 32-bit integer
dplay.type_1a.sess_name_ofs Session Name Offset
Unsigned 32-bit integer
dplay.type_1a.session_name Session Name
String
dplay.type_29.desc_offset SuperEnumPlayers Reply description offset
Unsigned 32-bit integer
dplay.type_29.game_name SuperEnumPlayers Reply game name
String
dplay.type_29.group_count SuperEnumPlayers Reply group count
Unsigned 32-bit integer
dplay.type_29.id ID of the forwarded player
Byte array
dplay.type_29.name_offset SuperEnumPlayers Reply name offset
Unsigned 32-bit integer
dplay.type_29.packed_offset SuperEnumPlayers Reply packed offset
Unsigned 32-bit integer
dplay.type_29.pass_offset SuperEnumPlayers Reply password offset
Unsigned 32-bit integer
dplay.type_29.password SuperEnumPlayers Reply Password
String
dplay.type_29.player_count SuperEnumPlayers Reply player count
Unsigned 32-bit integer
dplay.type_29.shortcut_count SuperEnumPlayers Reply shortcut count
Unsigned 32-bit integer
dvmrp.afi Address Family
Unsigned 8-bit integer
DVMRP Address Family Indicator
dvmrp.cap.genid Genid
Boolean
Genid capability
dvmrp.cap.leaf Leaf
Boolean
Leaf
dvmrp.cap.mtrace Mtrace
Boolean
Mtrace capability
dvmrp.cap.netmask Netmask
Boolean
Netmask capability
dvmrp.cap.prune Prune
Boolean
Prune capability
dvmrp.cap.snmp SNMP
Boolean
SNMP capability
dvmrp.capabilities Capabilities
No value
DVMRP V3 Capabilities
dvmrp.checksum Checksum
Unsigned 16-bit integer
DVMRP Checksum
dvmrp.checksum_bad Bad Checksum
Boolean
Bad DVMRP Checksum
dvmrp.command Command
Unsigned 8-bit integer
DVMRP V1 Command
dvmrp.commands Commands
No value
DVMRP V1 Commands
dvmrp.count Count
Unsigned 8-bit integer
Count
dvmrp.daddr Dest Addr
IPv4 address
DVMRP Destination Address
dvmrp.dest_unreach Destination Unreachable
Boolean
Destination Unreachable
dvmrp.flag.disabled Disabled
Boolean
Administrative status down
dvmrp.flag.down Down
Boolean
Operational status down
dvmrp.flag.leaf Leaf
Boolean
No downstream neighbors on interface
dvmrp.flag.querier Querier
Boolean
Querier for interface
dvmrp.flag.srcroute Source Route
Boolean
Tunnel uses IP source routing
dvmrp.flag.tunnel Tunnel
Boolean
Neighbor reached via tunnel
dvmrp.flags Flags
No value
DVMRP Interface Flags
dvmrp.genid Generation ID
Unsigned 32-bit integer
DVMRP Generation ID
dvmrp.hold Hold Time
Unsigned 32-bit integer
DVMRP Hold Time in seconds
dvmrp.infinity Infinity
Unsigned 8-bit integer
DVMRP Infinity
dvmrp.lifetime Prune lifetime
Unsigned 32-bit integer
DVMRP Prune Lifetime
dvmrp.local Local Addr
IPv4 address
DVMRP Local Address
dvmrp.maddr Multicast Addr
IPv4 address
DVMRP Multicast Address
dvmrp.maj_ver Major Version
Unsigned 8-bit integer
DVMRP Major Version
dvmrp.metric Metric
Unsigned 8-bit integer
DVMRP Metric
dvmrp.min_ver Minor Version
Unsigned 8-bit integer
DVMRP Minor Version
dvmrp.ncount Neighbor Count
Unsigned 8-bit integer
DVMRP Neighbor Count
dvmrp.neighbor Neighbor Addr
IPv4 address
DVMRP Neighbor Address
dvmrp.netmask Netmask
IPv4 address
DVMRP Netmask
dvmrp.route Route
No value
DVMRP V3 Route Report
dvmrp.saddr Source Addr
IPv4 address
DVMRP Source Address
dvmrp.split_horiz Split Horizon
Boolean
Split Horizon concealed route
dvmrp.threshold Threshold
Unsigned 8-bit integer
DVMRP Interface Threshold
dvmrp.type Type
Unsigned 8-bit integer
DVMRP Packet Type
dvmrp.v1.code Code
Unsigned 8-bit integer
DVMRP Packet Code
dvmrp.v3.code Code
Unsigned 8-bit integer
DVMRP Packet Code
dvmrp.version DVMRP Version
Unsigned 8-bit integer
DVMRP Version
distcc.argc ARGC
Unsigned 32-bit integer
Number of arguments
distcc.argv ARGV
String
ARGV argument
distcc.doti_source Source
String
DOTI Preprocessed Source File (.i)
distcc.doto_object Object
Byte array
DOTO Compiled object file (.o)
distcc.serr SERR
String
STDERR output
distcc.sout SOUT
String
STDOUT output
distcc.status Status
Unsigned 32-bit integer
Unix wait status for command completion
distcc.version DISTCC Version
Unsigned 32-bit integer
DISTCC Version
dcc.adminop Admin Op
Unsigned 8-bit integer
Admin Op
dcc.adminval Admin Value
Unsigned 32-bit integer
Admin Value
dcc.brand Server Brand
String
Server Brand
dcc.checksum.length Length
Unsigned 8-bit integer
Checksum Length
dcc.checksum.sum Sum
Byte array
Checksum
dcc.checksum.type Type
Unsigned 8-bit integer
Checksum Type
dcc.clientid Client ID
Unsigned 32-bit integer
Client ID
dcc.date Date
Date/Time stamp
Date
dcc.floodop Flood Control Operation
Unsigned 32-bit integer
Flood Control Operation
dcc.len Packet Length
Unsigned 16-bit integer
Packet Length
dcc.max_pkt_vers Maximum Packet Version
Unsigned 8-bit integer
Maximum Packet Version
dcc.op Operation Type
Unsigned 8-bit integer
Operation Type
dcc.opnums.host Host
Unsigned 32-bit integer
Host
dcc.opnums.pid Process ID
Unsigned 32-bit integer
Process ID
dcc.opnums.report Report
Unsigned 32-bit integer
Report
dcc.opnums.retrans Retransmission
Unsigned 32-bit integer
Retransmission
dcc.pkt_vers Packet Version
Unsigned 16-bit integer
Packet Version
dcc.qdelay_ms Client Delay
Unsigned 16-bit integer
Client Delay
dcc.signature Signature
Byte array
Signature
dcc.target Target
Unsigned 32-bit integer
Target
dcc.trace Trace Bits
Unsigned 32-bit integer
Trace Bits
dcc.trace.admin Admin Requests
Boolean
Admin Requests
dcc.trace.anon Anonymous Requests
Boolean
Anonymous Requests
dcc.trace.client Authenticated Client Requests
Boolean
Authenticated Client Requests
dcc.trace.flood Input/Output Flooding
Boolean
Input/Output Flooding
dcc.trace.query Queries and Reports
Boolean
Queries and Reports
dcc.trace.ridc RID Cache Messages
Boolean
RID Cache Messages
dcc.trace.rlim Rate-Limited Requests
Boolean
Rate-Limited Requests
dlm.rl.lvb Lock Value Block
Byte array
dlm.rl.name Name of Resource
Byte array
dlm.rl.name_contents Contents actually occupying `name' field
String
dlm.rl.name_padding Padding
Byte array
dlm3.h.cmd Command
Unsigned 8-bit integer
dlm3.h.length Length
Unsigned 16-bit integer
dlm3.h.lockspac Lockspace Global ID
Unsigned 32-bit integer
dlm3.h.major_version Major Version
Unsigned 16-bit integer
dlm3.h.minor_version Minor Version
Unsigned 16-bit integer
dlm3.h.nodeid Sender Node ID
Unsigned 32-bit integer
dlm3.h.pad Padding
Unsigned 8-bit integer
dlm3.h.version Version
Unsigned 32-bit integer
dlm3.m.asts Asynchronous Traps
Unsigned 32-bit integer
dlm3.m.asts.bast Blocking
Boolean
dlm3.m.asts.comp Completion
Boolean
dlm3.m.bastmode Mode requested by another node
Signed 32-bit integer
dlm3.m.exflags External Flags
Unsigned 32-bit integer
dlm3.m.exflags.altcw Try to grant the lock in `concurrent read' mode
Boolean
dlm3.m.exflags.altpr Try to grant the lock in `protected read' mode
Boolean
dlm3.m.exflags.cancel Cancel
Boolean
dlm3.m.exflags.convdeadlk Forced down to NL to resolve a conversion deadlock
Boolean
dlm3.m.exflags.convert Convert
Boolean
dlm3.m.exflags.expedite Grant a NL lock immediately
Boolean
dlm3.m.exflags.forceunlock Force unlock
Boolean
dlm3.m.exflags.headque Add a lock to the head of the queue
Boolean
dlm3.m.exflags.ivvalblk Invalidate the lock value block
Boolean
dlm3.m.exflags.nodlckblk Nodlckblk
Boolean
dlm3.m.exflags.nodlckwt Don't cancel the lock if it gets into conversion deadlock
Boolean
dlm3.m.exflags.noorder Disregard the standard grant order rules
Boolean
dlm3.m.exflags.noqueue Don't queue
Boolean
dlm3.m.exflags.noqueuebast Send blocking ASTs even for NOQUEUE operations
Boolean
dlm3.m.exflags.orphan Orphan
Boolean
dlm3.m.exflags.persistent Persistent
Boolean
dlm3.m.exflags.quecvt Force a conversion request to be queued
Boolean
dlm3.m.exflags.timeout Timeout
Boolean
dlm3.m.exflags.valblk Return the contents of the lock value block
Boolean
dlm3.m.extra Extra Message
Byte array
dlm3.m.flags Internal Flags
Unsigned 32-bit integer
dlm3.m.flags.orphan Orphaned lock
Boolean
dlm3.m.flags.user User space lock realted
Boolean
dlm3.m.grmode Granted Mode
Signed 32-bit integer
dlm3.m.hash Hash value
Unsigned 32-bit integer
dlm3.m.lkid Lock ID on Sender
Unsigned 32-bit integer
dlm3.m.lvbseq Lock Value Block Sequence Number
Unsigned 32-bit integer
dlm3.m.nodeid Receiver Node ID
Unsigned 32-bit integer
dlm3.m.parent_lkid Parent Lock ID on Sender
Unsigned 32-bit integer
dlm3.m.parent_remid Parent Lock ID on Receiver
Unsigned 32-bit integer
dlm3.m.pid Process ID of Lock Owner
Unsigned 32-bit integer
dlm3.m.remid Lock ID on Receiver
Unsigned 32-bit integer
dlm3.m.result Message Result(errno)
Signed 32-bit integer
dlm3.m.rqmode Request Mode
Signed 32-bit integer
dlm3.m.sbflags Status Block Flags
Unsigned 32-bit integer
dlm3.m.sbflags.altmode Try to Grant in Alternative Mode
Boolean
dlm3.m.sbflags.demoted Demoted for deadlock resolution
Boolean
dlm3.m.sbflags.valnotvalid Lock Value Block Is Invalid
Boolean
dlm3.m.status Status
Signed 32-bit integer
dlm3.m.type Message Type
Unsigned 32-bit integer
dlm3.rc.buf Recovery Buffer
Byte array
dlm3.rc.id Recovery Command ID
Unsigned 64-bit integer
dlm3.rc.result Recovery Command Result
Signed 32-bit integer
dlm3.rc.seq Recovery Command Sequence Number of Sender
Unsigned 64-bit integer
dlm3.rc.seq_reply Recovery Command Sequence Number of Receiver
Unsigned 64-bit integer
dlm3.rc.type Recovery Command Type
Unsigned 32-bit integer
dlm3.rf.lsflags External Flags
Unsigned 32-bit integer
dlm3.rf.lsflags.altcw Try to grant the lock in `concurrent read' mode
Boolean
dlm3.rf.lsflags.altpr Try to grant the lock in `protected read' mode
Boolean
dlm3.rf.lsflags.cancel Cancel
Boolean
dlm3.rf.lsflags.convdeadlk Forced down to NL to resolve a conversion deadlock
Boolean
dlm3.rf.lsflags.convert Convert
Boolean
dlm3.rf.lsflags.expedite Grant a NL lock immediately
Boolean
dlm3.rf.lsflags.forceunlock Force unlock
Boolean
dlm3.rf.lsflags.headque Add a lock to the head of the queue
Boolean
dlm3.rf.lsflags.ivvalblk Invalidate the lock value block
Boolean
dlm3.rf.lsflags.nodlckblk Nodlckblk
Boolean
dlm3.rf.lsflags.nodlckwt Don't cancel the lock if it gets into conversion deadlock
Boolean
dlm3.rf.lsflags.noorder Disregard the standard grant order rules
Boolean
dlm3.rf.lsflags.noqueue Don't queue
Boolean
dlm3.rf.lsflags.noqueuebast Send blocking ASTs even for NOQUEUE operations
Boolean
dlm3.rf.lsflags.orphan Orphan
Boolean
dlm3.rf.lsflags.persistent Persistent
Boolean
dlm3.rf.lsflags.quecvt Force a conversion request to be queued
Boolean
dlm3.rf.lsflags.timeout Timeout
Boolean
dlm3.rf.lsflags.unused Unsed area
Unsigned 64-bit integer
dlm3.rf.lsflags.valblk Return the contents of the lock value block
Boolean
dlm3.rf.lvblen Lock Value Block Length
Unsigned 32-bit integer
dlm3.rl.asts Asynchronous Traps
Unsigned 8-bit integer
dlm3.rl.asts.bast Blocking
Boolean
dlm3.rl.asts.comp Completion
Boolean
dlm3.rl.exflags External Flags
Unsigned 32-bit integer
dlm3.rl.exflags.altcw Try to grant the lock in `concurrent read' mode
Boolean
dlm3.rl.exflags.altpr Try to grant the lock in `protected read' mode
Boolean
dlm3.rl.exflags.cancel Cancel
Boolean
dlm3.rl.exflags.convdeadlk Forced down to NL to resolve a conversion deadlock
Boolean
dlm3.rl.exflags.convert Convert
Boolean
dlm3.rl.exflags.expedite Grant a NL lock immediately
Boolean
dlm3.rl.exflags.forceunlock Force unlock
Boolean
dlm3.rl.exflags.headque Add a lock to the head of the queue
Boolean
dlm3.rl.exflags.ivvalblk Invalidate the lock value block
Boolean
dlm3.rl.exflags.nodlckblk Nodlckblk
Boolean
dlm3.rl.exflags.nodlckwt Don't cancel the lock if it gets into conversion deadlock
Boolean
dlm3.rl.exflags.noorder Disregard the standard grant order rules
Boolean
dlm3.rl.exflags.noqueue Don't queue
Boolean
dlm3.rl.exflags.noqueuebast Send blocking ASTs even for NOQUEUE operations
Boolean
dlm3.rl.exflags.orphan Orphan
Boolean
dlm3.rl.exflags.persistent Persistent
Boolean
dlm3.rl.exflags.quecvt Force a conversion request to be queued
Boolean
dlm3.rl.exflags.timeout Timeout
Boolean
dlm3.rl.exflags.valblk Return the contents of the lock value block
Boolean
dlm3.rl.flags Internal Flags
Unsigned 32-bit integer
dlm3.rl.flags.orphan Orphaned lock
Boolean
dlm3.rl.flags.user User space lock realted
Boolean
dlm3.rl.grmode Granted Mode
Signed 8-bit integer
dlm3.rl.lkid Lock ID on Sender
Unsigned 32-bit integer
dlm3.rl.lvbseq Lock Value Block Sequence Number
Unsigned 32-bit integer
dlm3.rl.namelen Length of `name' field
Unsigned 16-bit integer
dlm3.rl.ownpid Process ID of Lock Owner
Unsigned 32-bit integer
dlm3.rl.parent_lkid Parent Lock ID on Sender
Unsigned 32-bit integer
dlm3.rl.parent_remid Parent Lock ID on Receiver
Unsigned 32-bit integer
dlm3.rl.remid Lock ID on Receiver
Unsigned 32-bit integer
dlm3.rl.result Result of Recovering master copy
Signed 32-bit integer
dlm3.rl.rqmode Request Mode
Signed 8-bit integer
dlm3.rl.status Status
Signed 8-bit integer
dlm3.rl.wait_type Message Type the waiter wainting for
Unsigned 16-bit integer
dnp3.al.2bit Value (two bit)
Unsigned 8-bit integer
Digital Value (2 bit)
dnp3.al.aiq.b0 Online
Boolean
dnp3.al.aiq.b1 Restart
Boolean
dnp3.al.aiq.b2 Comm Fail
Boolean
dnp3.al.aiq.b3 Remote Force
Boolean
dnp3.al.aiq.b4 Local Force
Boolean
dnp3.al.aiq.b5 Over-Range
Boolean
dnp3.al.aiq.b6 Reference Check
Boolean
dnp3.al.aiq.b7 Reserved
Boolean
dnp3.al.ana Value (16 bit)
Unsigned 16-bit integer
Analog Value (16 bit)
dnp3.al.anaout Output Value (16 bit)
Unsigned 16-bit integer
Output Value (16 bit)
dnp3.al.aoq.b0 Online
Boolean
dnp3.al.aoq.b1 Restart
Boolean
dnp3.al.aoq.b2 Comm Fail
Boolean
dnp3.al.aoq.b3 Remote Force
Boolean
dnp3.al.aoq.b4 Local Force
Boolean
dnp3.al.aoq.b5 Reserved
Boolean
dnp3.al.aoq.b6 Reserved
Boolean
dnp3.al.aoq.b7 Reserved
Boolean
dnp3.al.biq.b0 Online
Boolean
dnp3.al.biq.b1 Restart
Boolean
dnp3.al.biq.b2 Comm Fail
Boolean
dnp3.al.biq.b3 Remote Force
Boolean
dnp3.al.biq.b4 Local Force
Boolean
dnp3.al.biq.b5 Chatter Filter
Boolean
dnp3.al.biq.b6 Reserved
Boolean
dnp3.al.biq.b7 Point Value
Boolean
dnp3.al.bit Value (bit)
Boolean
Digital Value (1 bit)
dnp3.al.boq.b0 Online
Boolean
dnp3.al.boq.b1 Restart
Boolean
dnp3.al.boq.b2 Comm Fail
Boolean
dnp3.al.boq.b3 Remote Force
Boolean
dnp3.al.boq.b4 Local Force
Boolean
dnp3.al.boq.b5 Reserved
Boolean
dnp3.al.boq.b6 Reserved
Boolean
dnp3.al.boq.b7 Point Value
Boolean
dnp3.al.cnt Counter (16 bit)
Unsigned 16-bit integer
Counter Value (16 bit)
dnp3.al.con Confirm
Boolean
dnp3.al.ctl Application Control
Unsigned 8-bit integer
Application Layer Control Byte
dnp3.al.ctrlstatus Control Status
Unsigned 8-bit integer
Control Status
dnp3.al.ctrq.b0 Online
Boolean
dnp3.al.ctrq.b1 Restart
Boolean
dnp3.al.ctrq.b2 Comm Fail
Boolean
dnp3.al.ctrq.b3 Remote Force
Boolean
dnp3.al.ctrq.b4 Local Force
Boolean
dnp3.al.ctrq.b5 Roll-Over
Boolean
dnp3.al.ctrq.b6 Discontinuity
Boolean
dnp3.al.ctrq.b7 Reserved
Boolean
dnp3.al.fin Final
Boolean
dnp3.al.fir First
Boolean
dnp3.al.fragment DNP 3.0 AL Fragment
Frame number
DNP 3.0 Application Layer Fragment
dnp3.al.fragment.error Defragmentation error
Frame number
Defragmentation error due to illegal fragments
dnp3.al.fragment.multipletails Multiple tail fragments found
Boolean
Several tails were found when defragmenting the packet
dnp3.al.fragment.overlap Fragment overlap
Boolean
Fragment overlaps with other fragments
dnp3.al.fragment.overlap.conflict Conflicting data in fragment overlap
Boolean
Overlapping fragments contained conflicting data
dnp3.al.fragment.reassembled_in Reassembled PDU In Frame
Frame number
This PDU is reassembled in this frame
dnp3.al.fragment.toolongfragment Fragment too long
Boolean
Fragment contained data past end of packet
dnp3.al.fragments DNP 3.0 AL Fragments
No value
DNP 3.0 Application Layer Fragments
dnp3.al.func Application Layer Function Code
Unsigned 8-bit integer
Application Function Code
dnp3.al.iin Application Layer IIN bits
Unsigned 16-bit integer
Application Layer IIN
dnp3.al.iin.bmsg Broadcast Msg Rx
Boolean
dnp3.al.iin.cc Configuration Corrupt
Boolean
dnp3.al.iin.cls1d Class 1 Data Available
Boolean
dnp3.al.iin.cls2d Class 2 Data Available
Boolean
dnp3.al.iin.cls3d Class 3 Data Available
Boolean
dnp3.al.iin.dol Digital Outputs in Local
Boolean
dnp3.al.iin.dt Device Trouble
Boolean
dnp3.al.iin.ebo Event Buffer Overflow
Boolean
dnp3.al.iin.oae Operation Already Executing
Boolean
dnp3.al.iin.obju Requested Objects Unknown
Boolean
dnp3.al.iin.pioor Parameters Invalid or Out of Range
Boolean
dnp3.al.iin.rst Device Restart
Boolean
dnp3.al.iin.tsr Time Sync Required
Boolean
dnp3.al.index Index (8 bit)
Unsigned 8-bit integer
Object Index
dnp3.al.obj Object
Unsigned 16-bit integer
Application Layer Object
dnp3.al.objq.code Qualifier Code
Unsigned 8-bit integer
Object Qualifier Code
dnp3.al.objq.index Index Prefix
Unsigned 8-bit integer
Object Index Prefixing
dnp3.al.ptnum Object Point Number
Unsigned 16-bit integer
Object Point Number
dnp3.al.range.abs Address (8 bit)
Unsigned 8-bit integer
Object Absolute Address
dnp3.al.range.quantity Quantity (8 bit)
Unsigned 8-bit integer
Object Quantity
dnp3.al.range.start Start (8 bit)
Unsigned 8-bit integer
Object Start Index
dnp3.al.range.stop Stop (8 bit)
Unsigned 8-bit integer
Object Stop Index
dnp3.al.reltimestamp Relative Timestamp
Time duration
Object Relative Timestamp
dnp3.al.seq Sequence
Unsigned 8-bit integer
Frame Sequence Number
dnp3.al.timestamp Timestamp
Date/Time stamp
Object Timestamp
dnp3.ctl Control
Unsigned 8-bit integer
Frame Control Byte
dnp3.ctl.dfc Data Flow Control
Boolean
dnp3.ctl.dir Direction
Boolean
dnp3.ctl.fcb Frame Count Bit
Boolean
dnp3.ctl.fcv Frame Count Valid
Boolean
dnp3.ctl.prifunc Control Function Code
Unsigned 8-bit integer
Frame Control Function Code
dnp3.ctl.prm Primary
Boolean
dnp3.ctl.secfunc Control Function Code
Unsigned 8-bit integer
Frame Control Function Code
dnp3.dst Destination
Unsigned 16-bit integer
Destination Address
dnp3.hdr.CRC CRC
Unsigned 16-bit integer
dnp3.hdr.CRC_bad Bad CRC
Boolean
dnp3.len Length
Unsigned 8-bit integer
Frame Data Length
dnp3.src Source
Unsigned 16-bit integer
Source Address
dnp3.start Start Bytes
Unsigned 16-bit integer
Start Bytes
dnp3.tr.ctl Transport Control
Unsigned 8-bit integer
Tranport Layer Control Byte
dnp3.tr.fin Final
Boolean
dnp3.tr.fir First
Boolean
dnp3.tr.seq Sequence
Unsigned 8-bit integer
Frame Sequence Number
dns.count.add_rr Additional RRs
Unsigned 16-bit integer
Number of additional records in packet
dns.count.answers Answer RRs
Unsigned 16-bit integer
Number of answers in packet
dns.count.auth_rr Authority RRs
Unsigned 16-bit integer
Number of authoritative records in packet
dns.count.prerequisites Prerequisites
Unsigned 16-bit integer
Number of prerequisites in packet
dns.count.queries Questions
Unsigned 16-bit integer
Number of queries in packet
dns.count.updates Updates
Unsigned 16-bit integer
Number of updates records in packet
dns.count.zones Zones
Unsigned 16-bit integer
Number of zones in packet
dns.flags Flags
Unsigned 16-bit integer
dns.flags.authenticated Answer authenticated
Boolean
Was the reply data authenticated by the server?
dns.flags.authoritative Authoritative
Boolean
Is the server is an authority for the domain?
dns.flags.checkdisable Non-authenticated data OK
Boolean
Is non-authenticated data acceptable?
dns.flags.opcode Opcode
Unsigned 16-bit integer
Operation code
dns.flags.rcode Reply code
Unsigned 16-bit integer
Reply code
dns.flags.recavail Recursion available
Boolean
Can the server do recursive queries?
dns.flags.recdesired Recursion desired
Boolean
Do query recursively?
dns.flags.response Response
Boolean
Is the message a response?
dns.flags.truncated Truncated
Boolean
Is the message truncated?
dns.flags.z Z
Boolean
Z flag
dns.id Transaction ID
Unsigned 16-bit integer
Identification of transaction
dns.length Length
Unsigned 16-bit integer
Length of DNS-over-TCP request or response
dns.qry.class Class
Unsigned 16-bit integer
Query Class
dns.qry.name Name
String
Query Name
dns.qry.qu "QU" question
Boolean
QU flag
dns.qry.type Type
Unsigned 16-bit integer
Query Type
dns.resp.cache_flush Cache flush
Boolean
Cache flush flag
dns.resp.class Class
Unsigned 16-bit integer
Response Class
dns.resp.len Data length
Unsigned 32-bit integer
Response Length
dns.resp.name Name
String
Response Name
dns.resp.ttl Time to live
Unsigned 32-bit integer
Response TTL
dns.resp.type Type
Unsigned 16-bit integer
Response Type
dns.response_in Response In
Frame number
The response to this DNS query is in this frame
dns.response_to Request In
Frame number
This is a response to the DNS query in this frame
dns.time Time
Time duration
The time between the Query and the Response
dns.tsig.algorithm_name Algorithm Name
String
Name of algorithm used for the MAC
dns.tsig.error Error
Unsigned 16-bit integer
Expanded RCODE for TSIG
dns.tsig.fudge Fudge
Unsigned 16-bit integer
Number of bytes for the MAC
dns.tsig.mac MAC
No value
MAC
dns.tsig.mac_size MAC Size
Unsigned 16-bit integer
Number of bytes for the MAC
dns.tsig.original_id Original Id
Unsigned 16-bit integer
Original Id
dns.tsig.other_data Other Data
Byte array
Other Data
dns.tsig.other_len Other Len
Unsigned 16-bit integer
Number of bytes for Other Data
dc.contributor contributor
String
dc.coverage coverage
String
dc.creator creator
String
dc.date date
String
dc.dc dc
String
dc.description description
String
dc.format format
String
dc.identifier identifier
String
dc.language language
String
dc.publisher publisher
String
dc.relation relation
String
dc.rights rights
String
dc.source source
String
dc.subject subject
String
dc.title title
String
dc.type type
String
ddtp.encrypt Encryption
Unsigned 32-bit integer
Encryption type
ddtp.hostid Hostid
Unsigned 32-bit integer
Host ID
ddtp.ipaddr IP address
IPv4 address
IP address
ddtp.msgtype Message type
Unsigned 32-bit integer
Message Type
ddtp.opcode Opcode
Unsigned 32-bit integer
Update query opcode
ddtp.status Status
Unsigned 32-bit integer
Update reply status
ddtp.version Version
Unsigned 32-bit integer
Version
dtp.neighbor Neighbor
6-byte Hardware (MAC) Address
MAC Address of neighbor
dtp.tlv_len Length
Unsigned 16-bit integer
dtp.tlv_type Type
Unsigned 16-bit integer
dtp.version Version
Unsigned 8-bit integer
efs.EFS_CERTIFICATE_BLOB.cbData Cbdata
Unsigned 32-bit integer
efs.EFS_CERTIFICATE_BLOB.dwCertEncodingType Dwcertencodingtype
Unsigned 32-bit integer
efs.EFS_CERTIFICATE_BLOB.pbData Pbdata
Unsigned 8-bit integer
efs.EFS_HASH_BLOB.cbData Cbdata
Unsigned 32-bit integer
efs.EFS_HASH_BLOB.pbData Pbdata
Unsigned 8-bit integer
efs.ENCRYPTION_CERTIFICATE.TotalLength Totallength
Unsigned 32-bit integer
efs.ENCRYPTION_CERTIFICATE.pCertBlob Pcertblob
No value
efs.ENCRYPTION_CERTIFICATE.pUserSid Pusersid
No value
efs.ENCRYPTION_CERTIFICATE_HASH.cbTotalLength Cbtotallength
Unsigned 32-bit integer
efs.ENCRYPTION_CERTIFICATE_HASH.lpDisplayInformation Lpdisplayinformation
String
efs.ENCRYPTION_CERTIFICATE_HASH.pHash Phash
No value
efs.ENCRYPTION_CERTIFICATE_HASH.pUserSid Pusersid
No value
efs.ENCRYPTION_CERTIFICATE_HASH_LIST.nCert_Hash Ncert Hash
Unsigned 32-bit integer
efs.ENCRYPTION_CERTIFICATE_HASH_LIST.pUsers Pusers
No value
efs.EfsRpcAddUsersToFile.FileName Filename
String
efs.EfsRpcCloseRaw.pvContext Pvcontext
Byte array
efs.EfsRpcDecryptFileSrv.FileName Filename
String
efs.EfsRpcDecryptFileSrv.Reserved Reserved
Unsigned 32-bit integer
efs.EfsRpcEncryptFileSrv.Filename Filename
String
efs.EfsRpcOpenFileRaw.FileName Filename
String
efs.EfsRpcOpenFileRaw.Flags Flags
Unsigned 32-bit integer
efs.EfsRpcOpenFileRaw.pvContext Pvcontext
Byte array
efs.EfsRpcQueryRecoveryAgents.FileName Filename
String
efs.EfsRpcQueryRecoveryAgents.pRecoveryAgents Precoveryagents
No value
efs.EfsRpcQueryUsersOnFile.FileName Filename
String
efs.EfsRpcQueryUsersOnFile.pUsers Pusers
No value
efs.EfsRpcReadFileRaw.pvContext Pvcontext
Byte array
efs.EfsRpcRemoveUsersFromFile.FileName Filename
String
efs.EfsRpcSetFileEncryptionKey.pEncryptionCertificate Pencryptioncertificate
No value
efs.EfsRpcWriteFileRaw.pvContext Pvcontext
Byte array
efs.opnum Operation
Unsigned 16-bit integer
efs.werror Windows Error
Unsigned 32-bit integer
linx.ackno ACK Number
Unsigned 32-bit integer
ACK Number
linx.ackreq ACK-request
Unsigned 32-bit integer
ACK-request
linx.bundle Bundle
Unsigned 32-bit integer
Bundle
linx.cmd Command
Unsigned 32-bit integer
Command
linx.connection Connection
Unsigned 32-bit integer
Connection
linx.destmaddr_ether Destination
6-byte Hardware (MAC) Address
Destination Media Address (ethernet)
linx.dstaddr Receiver Address
Unsigned 32-bit integer
Receiver Address
linx.dstaddr32 Receiver Address
Unsigned 32-bit integer
Receiver Address
linx.feat_neg_str Feature Negotiation String
String
Feature Negotiation String
linx.fragno Fragment Number
Unsigned 32-bit integer
Fragment Number
linx.fragno2 Fragment Number
Unsigned 32-bit integer
Fragment Number
linx.morefr2 More Fragments
Unsigned 32-bit integer
More Fragments
linx.morefra More Fragments
Unsigned 32-bit integer
More fragments follow
linx.nack_count Count
Unsigned 32-bit integer
Count
linx.nack_reserv Reserved
Unsigned 32-bit integer
Nack Hdr Reserved
linx.nack_seqno Sequence Number
Unsigned 32-bit integer
Sequence Number
linx.nexthdr Next Header
Unsigned 32-bit integer
Next Header
linx.pcksize Package Size
Unsigned 32-bit integer
Package Size
linx.publcid Publish Conn ID
Unsigned 32-bit integer
Publish Conn ID
linx.reserved1 Reserved
Unsigned 32-bit integer
Main Hdr Reserved
linx.reserved3 Reserved
Unsigned 32-bit integer
Conn Hdr Reserved
linx.reserved5 Reserved
Unsigned 32-bit integer
Udata Hdr Reserved
linx.reserved6 Reserved
Unsigned 32-bit integer
Frag Hdr Reserved
linx.reserved7 Reserved
Unsigned 32-bit integer
ACK Hdr Reserved
linx.rlnh_feat_neg_str RLNH Feature Negotiation String
String
RLNH Feature Negotiation String
linx.rlnh_linkaddr RLNH linkaddr
Unsigned 32-bit integer
RLNH linkaddress
linx.rlnh_msg_reserved RLNH msg reserved
Unsigned 32-bit integer
RLNH message reserved
linx.rlnh_msg_type RLNH msg type
Unsigned 32-bit integer
RLNH message type
linx.rlnh_msg_type8 RLNH msg type
Unsigned 32-bit integer
RLNH message type
linx.rlnh_name RLNH name
String
RLNH name
linx.rlnh_peer_linkaddr RLNH peer linkaddr
Unsigned 32-bit integer
RLNH peer linkaddress
linx.rlnh_src_linkaddr RLNH src linkaddr
Unsigned 32-bit integer
RLNH source linkaddress
linx.rlnh_status RLNH reply
Unsigned 32-bit integer
RLNH reply
linx.rlnh_version RLNH version
Unsigned 32-bit integer
RLNH version
linx.seqno Seqence Number
Unsigned 32-bit integer
Sequence Number
linx.signo Signal Number
Unsigned 32-bit integer
Signal Number
linx.size Size
Unsigned 32-bit integer
Size
linx.srcaddr Sender Address
Unsigned 32-bit integer
Sender Address
linx.srcaddr32 Sender Address
Unsigned 32-bit integer
Sender Address
linx.srcmaddr_ether Source
6-byte Hardware (MAC) Address
Source Media Address (ethernet)
linx.version Version
Unsigned 32-bit integer
LINX Version
linx.winsize WinSize
Unsigned 32-bit integer
Window Size
enttec.dmx_data.data DMX Data
No value
DMX Data
enttec.dmx_data.data_filter DMX Data
Byte array
DMX Data
enttec.dmx_data.dmx_data DMX Data
No value
DMX Data
enttec.dmx_data.size Data Size
Unsigned 16-bit integer
Data Size
enttec.dmx_data.start_code Start Code
Unsigned 8-bit integer
Start Code
enttec.dmx_data.type Data Type
Unsigned 8-bit integer
Data Type
enttec.dmx_data.universe Universe
Unsigned 8-bit integer
Universe
enttec.head Head
Unsigned 32-bit integer
Head
enttec.poll.reply_type Reply Type
Unsigned 8-bit integer
Reply Type
enttec.poll_reply.mac MAC
6-byte Hardware (MAC) Address
MAC
enttec.poll_reply.name Name
String
Name
enttec.poll_reply.node_type Node Type
Unsigned 16-bit integer
Node Type
enttec.poll_reply.option_field Option Field
Unsigned 8-bit integer
Option Field
enttec.poll_reply.switch_settings Switch settings
Unsigned 8-bit integer
Switch settings
enttec.poll_reply.tos TOS
Unsigned 8-bit integer
TOS
enttec.poll_reply.ttl TTL
Unsigned 8-bit integer
TTL
enttec.poll_reply.version Version
Unsigned 8-bit integer
Version
epmd.creation Creation
Unsigned 16-bit integer
Creation
epmd.dist_high Dist High
Unsigned 16-bit integer
Dist High
epmd.dist_low Dist Low
Unsigned 16-bit integer
Dist Low
epmd.edata Edata
Byte array
Extra Data
epmd.elen Elen
Unsigned 16-bit integer
Extra Length
epmd.len Length
Unsigned 16-bit integer
Message Length
epmd.name Name
String
Name
epmd.name_len Name Length
Unsigned 16-bit integer
Name Length
epmd.names Names
Byte array
List of names
epmd.result Result
Unsigned 8-bit integer
Result
epmd.tcp_port TCP Port
Unsigned 16-bit integer
TCP Port
epmd.type Type
Unsigned 8-bit integer
Message Type
erspan.direction Direction
Unsigned 16-bit integer
erspan.priority Priority
Unsigned 16-bit integer
erspan.spanid SpanID
Unsigned 16-bit integer
erspan.unknown1 Unknown1
Unsigned 16-bit integer
erspan.unknown2 Unknown2
Unsigned 16-bit integer
erspan.unknown3 Unknown3
Unsigned 16-bit integer
erspan.unknown4 Unknown4
Byte array
erspan.vlan Vlan
Unsigned 16-bit integer
epl_v1.ainv.channel Channel
Unsigned 8-bit integer
epl_v1.asnd.channel Channel
Unsigned 8-bit integer
epl_v1.asnd.data Data
Byte array
epl_v1.asnd.device.variant Device Variant
Unsigned 32-bit integer
epl_v1.asnd.firmware.version Firmware Version
Unsigned 32-bit integer
epl_v1.asnd.hardware.revision Hardware Revision
Unsigned 32-bit integer
epl_v1.asnd.node_id NodeID
Unsigned 32-bit integer
epl_v1.asnd.poll.in.size Poll IN Size
Unsigned 32-bit integer
epl_v1.asnd.poll.out.size Poll OUT Size
Unsigned 32-bit integer
epl_v1.asnd.size Size
Unsigned 16-bit integer
epl_v1.dest Destination
Unsigned 8-bit integer
epl_v1.eoc.netcommand Net Command
Unsigned 16-bit integer
epl_v1.preq.data OUT Data
Byte array
epl_v1.preq.ms MS (Multiplexed Slot)
Unsigned 8-bit integer
epl_v1.preq.pollsize Poll Size OUT
Unsigned 16-bit integer
epl_v1.preq.rd RD (Ready)
Unsigned 8-bit integer
epl_v1.pres.data IN Data
Byte array
epl_v1.pres.er ER (Error)
Unsigned 8-bit integer
epl_v1.pres.ex EX (Exception)
Unsigned 8-bit integer
epl_v1.pres.ms MS (Multiplexed)
Unsigned 8-bit integer
epl_v1.pres.pollsize Poll Size IN
Unsigned 16-bit integer
epl_v1.pres.rd RD (Ready)
Unsigned 8-bit integer
epl_v1.pres.rs RS (Request to Send)
Unsigned 8-bit integer
epl_v1.pres.wa WA (Warning)
Unsigned 8-bit integer
epl_v1.service Service
Unsigned 8-bit integer
epl_v1.soa.netcommand.parameter Net Command Parameter
Byte array
epl_v1.soc.cycletime Cycle Time
Unsigned 32-bit integer
epl_v1.soc.ms MS (Multiplexed Slot)
Unsigned 8-bit integer
epl_v1.soc.netcommand Net Command
Unsigned 16-bit integer
epl_v1.soc.netcommand.parameter Net Command Parameter
Byte array
epl_v1.soc.nettime Net Time
Unsigned 32-bit integer
epl_v1.soc.ps PS (Prescaled Slot)
Unsigned 8-bit integer
epl_v1.src Source
Unsigned 8-bit integer
epl.asnd.data Data
Byte array
epl.asnd.ires.appswdate applicationSwDate
Unsigned 32-bit integer
epl.asnd.ires.appswtime applicationSwTime
Unsigned 32-bit integer
epl.asnd.ires.confdate VerifyConfigurationDate
Unsigned 32-bit integer
epl.asnd.ires.conftime VerifyConfigurationTime
Unsigned 32-bit integer
epl.asnd.ires.devicetype DeviceType
String
epl.asnd.ires.ec EC (Exception Clear)
Boolean
epl.asnd.ires.en EN (Exception New)
Boolean
epl.asnd.ires.eplver EPLVersion
String
epl.asnd.ires.features FeatureFlags
Unsigned 32-bit integer
epl.asnd.ires.features.bit0 Isochronous
Boolean
epl.asnd.ires.features.bit1 SDO by UDP/IP
Boolean
epl.asnd.ires.features.bit2 SDO by ASnd
Boolean
epl.asnd.ires.features.bit3 SDO by PDO
Boolean
epl.asnd.ires.features.bit4 NMT Info Services
Boolean
epl.asnd.ires.features.bit5 Ext. NMT State Commands
Boolean
epl.asnd.ires.features.bit6 Dynamic PDO Mapping
Boolean
epl.asnd.ires.features.bit7 NMT Service by UDP/IP
Boolean
epl.asnd.ires.features.bit8 Configuration Manager
Boolean
epl.asnd.ires.features.bit9 Multiplexed Access
Boolean
epl.asnd.ires.features.bitA NodeID setup by SW
Boolean
epl.asnd.ires.features.bitB MN Basic Ethernet Mode
Boolean
epl.asnd.ires.features.bitC Routing Type 1 Support
Boolean
epl.asnd.ires.features.bitD Routing Type 2 Support
Boolean
epl.asnd.ires.gateway DefaultGateway
IPv4 address
epl.asnd.ires.hostname HostName
String
epl.asnd.ires.ip IPAddress
IPv4 address
epl.asnd.ires.mtu MTU
Unsigned 16-bit integer
epl.asnd.ires.pollinsize PollInSize
Unsigned 16-bit integer
epl.asnd.ires.polloutsizes PollOutSize
Unsigned 16-bit integer
epl.asnd.ires.pr PR (Priority)
Unsigned 8-bit integer
epl.asnd.ires.productcode ProductCode
Unsigned 32-bit integer
epl.asnd.ires.profile Profile
Unsigned 16-bit integer
epl.asnd.ires.resptime ResponseTime
Unsigned 32-bit integer
epl.asnd.ires.revisionno RevisionNumber
Unsigned 32-bit integer
epl.asnd.ires.rs RS (RequestToSend)
Unsigned 8-bit integer
epl.asnd.ires.serialno SerialNumber
Unsigned 32-bit integer
epl.asnd.ires.state NMTStatus
Unsigned 8-bit integer
epl.asnd.ires.subnet SubnetMask
IPv4 address
epl.asnd.ires.vendorext1 VendorSpecificExtension1
Unsigned 64-bit integer
epl.asnd.ires.vendorext2 VendorSpecificExtension2
Byte array
epl.asnd.ires.vendorid VendorId
Unsigned 32-bit integer
epl.asnd.nmtcommand.cdat NMTCommandData
Byte array
epl.asnd.nmtcommand.cid NMTCommandId
Unsigned 8-bit integer
epl.asnd.nmtcommand.nmtflusharpentry.nid NodeID
Unsigned 8-bit integer
epl.asnd.nmtcommand.nmtnethostnameset.hn HostName
Byte array
epl.asnd.nmtcommand.nmtpublishtime.dt DateTime
Byte array
epl.asnd.nmtrequest.rcd NMTRequestedCommandData
Byte array
epl.asnd.nmtrequest.rcid NMTRequestedCommandID
Unsigned 8-bit integer
epl.asnd.nmtrequest.rct NMTRequestedCommandTarget
Unsigned 8-bit integer
epl.asnd.res.seb.bit0 Generic error
Unsigned 8-bit integer
epl.asnd.res.seb.bit1 Current
Unsigned 8-bit integer
epl.asnd.res.seb.bit2 Voltage
Unsigned 8-bit integer
epl.asnd.res.seb.bit3 Temperature
Unsigned 8-bit integer
epl.asnd.res.seb.bit4 Communication error
Unsigned 8-bit integer
epl.asnd.res.seb.bit5 Device profile specific
Unsigned 8-bit integer
epl.asnd.res.seb.bit7 Manufacturer specific
Unsigned 8-bit integer
epl.asnd.res.seb.devicespecific_err Device profile specific
Byte array
epl.asnd.sdo.cmd.abort SDO Abort
Unsigned 8-bit integer
epl.asnd.sdo.cmd.abort.code SDO Transfer Abort
Unsigned 8-bit integer
epl.asnd.sdo.cmd.command.id SDO Command ID
Unsigned 8-bit integer
epl.asnd.sdo.cmd.data.size SDO Data size
Unsigned 8-bit integer
epl.asnd.sdo.cmd.read.by.index.data Payload
Byte array
epl.asnd.sdo.cmd.read.by.index.index SDO Read by Index, Index
Unsigned 16-bit integer
epl.asnd.sdo.cmd.read.by.index.subindex SDO Read by Index, SubIndex
Unsigned 8-bit integer
epl.asnd.sdo.cmd.response SDO Response
Unsigned 8-bit integer
epl.asnd.sdo.cmd.segment.size SDO Segment size
Unsigned 8-bit integer
epl.asnd.sdo.cmd.segmentation SDO Segmentation
Unsigned 8-bit integer
epl.asnd.sdo.cmd.transaction.id SDO Transaction ID
Unsigned 8-bit integer
epl.asnd.sdo.cmd.write.by.index.data Payload
Byte array
epl.asnd.sdo.cmd.write.by.index.index SDO Write by Index, Index
Unsigned 16-bit integer
epl.asnd.sdo.cmd.write.by.index.subindex SDO Write by Index, SubIndex
Unsigned 8-bit integer
epl.asnd.sdo.seq.receive.con ReceiveCon
Unsigned 8-bit integer
epl.asnd.sdo.seq.receive.sequence.number ReceiveSequenceNumber
Unsigned 8-bit integer
epl.asnd.sdo.seq.send.con SendCon
Unsigned 8-bit integer
epl.asnd.sdo.seq.send.sequence.number SendSequenceNumber
Unsigned 8-bit integer
epl.asnd.sres.ec EC (Exception Clear)
Boolean
epl.asnd.sres.el ErrorsCodeList
Byte array
epl.asnd.sres.el.entry Entry
Byte array
epl.asnd.sres.el.entry.add Additional Information
Unsigned 64-bit integer
epl.asnd.sres.el.entry.code Error Code
Unsigned 16-bit integer
epl.asnd.sres.el.entry.time Time Stamp
Unsigned 64-bit integer
epl.asnd.sres.el.entry.type Entry Type
Unsigned 16-bit integer
epl.asnd.sres.el.entry.type.bit14 Bit14
Unsigned 16-bit integer
epl.asnd.sres.el.entry.type.bit15 Bit15
Unsigned 16-bit integer
epl.asnd.sres.el.entry.type.mode Mode
Unsigned 16-bit integer
epl.asnd.sres.el.entry.type.profile Profile
Unsigned 16-bit integer
epl.asnd.sres.en EN (Exception New)
Boolean
epl.asnd.sres.pr PR (Priority)
Unsigned 8-bit integer
epl.asnd.sres.rs RS (RequestToSend)
Unsigned 8-bit integer
epl.asnd.sres.seb StaticErrorBitField
Byte array
epl.asnd.sres.stat NMTStatus
Unsigned 8-bit integer
epl.asnd.svid ServiceID
Unsigned 8-bit integer
epl.dest Destination
Unsigned 8-bit integer
epl.mtyp MessageType
Unsigned 8-bit integer
epl.preq.ea EA (Exception Acknowledge)
Boolean
epl.preq.ms MS (Multiplexed Slot)
Boolean
epl.preq.pdov PDOVersion
String
epl.preq.pl Payload
Byte array
epl.preq.rd RD (Ready)
Boolean
epl.preq.size Size
Unsigned 16-bit integer
epl.pres.en EN (Exception New)
Boolean
epl.pres.ms MS (Multiplexed Slot)
Boolean
epl.pres.pdov PDOVersion
String
epl.pres.pl Payload
Byte array
epl.pres.pr PR (Priority)
Unsigned 8-bit integer
epl.pres.rd RD (Ready)
Boolean
epl.pres.rs RS (RequestToSend)
Unsigned 8-bit integer
epl.pres.size Size
Unsigned 16-bit integer
epl.pres.stat NMTStatus
Unsigned 8-bit integer
epl.soa.ea EA (Exception Acknowledge)
Boolean
epl.soa.eplv EPLVersion
String
epl.soa.er ER (Exception Reset)
Boolean
epl.soa.stat NMTStatus
Unsigned 8-bit integer
epl.soa.svid RequestedServiceID
Unsigned 8-bit integer
epl.soa.svtg RequestedServiceTarget
Unsigned 8-bit integer
epl.soc.mc MC (Multiplexed Cycle Completed)
Boolean
epl.soc.nettime NetTime
Date/Time stamp
epl.soc.ps PS (Prescaled Slot)
Boolean
epl.soc.relativetime RelativeTime
Unsigned 64-bit integer
epl.src Source
Unsigned 8-bit integer
dcp-etsi.sync sync
String
AF or PF
x2ap.Bearers_Admitted_Item Bearers-Admitted-Item
No value
x2ap.Bearers_Admitted_Item
x2ap.Bearers_Admitted_List Bearers-Admitted-List
Unsigned 32-bit integer
x2ap.Bearers_Admitted_List
x2ap.Bearers_Admitted_List_item Item
No value
x2ap.ProtocolIE_Single_Container
x2ap.Bearers_NotAdmitted_Item Bearers-NotAdmitted-Item
No value
x2ap.Bearers_NotAdmitted_Item
x2ap.Bearers_NotAdmitted_List Bearers-NotAdmitted-List
Unsigned 32-bit integer
x2ap.Bearers_NotAdmitted_List
x2ap.Bearers_NotAdmitted_List_item Item
No value
x2ap.ProtocolIE_Single_Container
x2ap.Bearers_SubjectToStatusTransfer_Item Bearers-SubjectToStatusTransfer-Item
No value
x2ap.Bearers_SubjectToStatusTransfer_Item
x2ap.Bearers_SubjectToStatusTransfer_List Bearers-SubjectToStatusTransfer-List
Unsigned 32-bit integer
x2ap.Bearers_SubjectToStatusTransfer_List
x2ap.Bearers_SubjectToStatusTransfer_List_item Item
No value
x2ap.ProtocolIE_Single_Container
x2ap.Bearers_ToBeSetup_Item Bearers-ToBeSetup-Item
No value
x2ap.Bearers_ToBeSetup_Item
x2ap.Bearers_ToBeSetup_List_item Item
No value
x2ap.ProtocolIE_Single_Container
x2ap.BroadcastPLMNs_Item_item Item
Byte array
x2ap.PLMN_Identity
x2ap.CGI CGI
No value
x2ap.CGI
x2ap.Cause Cause
Unsigned 32-bit integer
x2ap.Cause
x2ap.CellInformation_Item CellInformation-Item
No value
x2ap.CellInformation_Item
x2ap.CellInformation_List CellInformation-List
Unsigned 32-bit integer
x2ap.CellInformation_List
x2ap.CellInformation_List_item Item
No value
x2ap.ProtocolIE_Single_Container
x2ap.CriticalityDiagnostics CriticalityDiagnostics
No value
x2ap.CriticalityDiagnostics
x2ap.CriticalityDiagnostics_IE_List_item Item
No value
x2ap.CriticalityDiagnostics_IE_List_item
x2ap.ENB_ID ENB-ID
Unsigned 32-bit integer
x2ap.ENB_ID
x2ap.EPLMNs_item Item
Byte array
x2ap.PLMN_Identity
x2ap.ErrorIndication ErrorIndication
No value
x2ap.ErrorIndication
x2ap.ForbiddenLACs_item Item
Byte array
x2ap.LAC
x2ap.ForbiddenLAs_item Item
No value
x2ap.ForbiddenLAs_Item
x2ap.ForbiddenTAIs_item Item
Byte array
x2ap.TAI
x2ap.ForbiddenTAs_item Item
No value
x2ap.ForbiddenTAs_Item
x2ap.HandoverCancel HandoverCancel
No value
x2ap.HandoverCancel
x2ap.HandoverPreparationFailure HandoverPreparationFailure
No value
x2ap.HandoverPreparationFailure
x2ap.HandoverRequest HandoverRequest
No value
x2ap.HandoverRequest
x2ap.HandoverRequestAcknowledge HandoverRequestAcknowledge
No value
x2ap.HandoverRequestAcknowledge
x2ap.InterfacesToTrace_Item InterfacesToTrace-Item
No value
x2ap.InterfacesToTrace_Item
x2ap.InterfacesToTrace_item Item
No value
x2ap.ProtocolIE_Single_Container
x2ap.LoadInformation LoadInformation
No value
x2ap.LoadInformation
x2ap.PDCP_SNofULSDUsNotToBeRetransmitted_List_item Item
Signed 32-bit integer
x2ap.PDCP_SN
x2ap.PrivateIE_Container_item Item
No value
x2ap.PrivateIE_Field
x2ap.ProtocolExtensionContainer_item Item
No value
x2ap.ProtocolExtensionField
x2ap.ProtocolIE_Container_item Item
No value
x2ap.ProtocolIE_Field
x2ap.ReleaseResource ReleaseResource
No value
x2ap.ReleaseResource
x2ap.ResetResponse ResetResponse
No value
x2ap.ResetResponse
x2ap.SNStatusTransfer SNStatusTransfer
No value
x2ap.SNStatusTransfer
x2ap.ServedCells ServedCells
Unsigned 32-bit integer
x2ap.ServedCells
x2ap.ServedCells_item Item
No value
x2ap.ServedCell_Information
x2ap.TargeteNBtoSource_eNBTransparentContainer TargeteNBtoSource-eNBTransparentContainer
Byte array
x2ap.TargeteNBtoSource_eNBTransparentContainer
x2ap.TimeToWait TimeToWait
Byte array
x2ap.TimeToWait
x2ap.TraceActivation TraceActivation
No value
x2ap.TraceActivation
x2ap.UE_ContextInformation UE-ContextInformation
No value
x2ap.UE_ContextInformation
x2ap.UE_HistoryInformation UE-HistoryInformation
Unsigned 32-bit integer
x2ap.UE_HistoryInformation
x2ap.UE_HistoryInformation_item Item
No value
x2ap.LastVisitedCell_Item
x2ap.UE_X2AP_ID UE-X2AP-ID
Unsigned 32-bit integer
x2ap.UE_X2AP_ID
x2ap.X2AP_PDU X2AP-PDU
Unsigned 32-bit integer
x2ap.X2AP_PDU
x2ap.X2SetupFailure X2SetupFailure
No value
x2ap.X2SetupFailure
x2ap.X2SetupRequest X2SetupRequest
No value
x2ap.X2SetupRequest
x2ap.X2SetupResponse X2SetupResponse
No value
x2ap.X2SetupResponse
x2ap.aggregateMaximumBitRate aggregateMaximumBitRate
No value
x2ap.AggregateMaximumBitRate
x2ap.aggregateMaximumBitRateDownlink aggregateMaximumBitRateDownlink
Unsigned 32-bit integer
x2ap.SAE_Bearer_BitRate
x2ap.aggregateMaximumBitRateUplink aggregateMaximumBitRateUplink
Unsigned 32-bit integer
x2ap.SAE_Bearer_BitRate
x2ap.allocationAndRetentionPriority allocationAndRetentionPriority
Byte array
x2ap.OCTET_STRING
x2ap.bearer_ID bearer-ID
Byte array
x2ap.Bearer_ID
x2ap.bearers_ToBeSetup_List bearers-ToBeSetup-List
Unsigned 32-bit integer
x2ap.Bearers_ToBeSetup_List
x2ap.broadcastPLMNs broadcastPLMNs
Unsigned 32-bit integer
x2ap.BroadcastPLMNs_Item
x2ap.cI cI
Byte array
x2ap.CI
x2ap.cause cause
Unsigned 32-bit integer
x2ap.Cause
x2ap.cellId cellId
Byte array
x2ap.CellId
x2ap.cellType cellType
Unsigned 32-bit integer
x2ap.CellType
x2ap.criticality criticality
Unsigned 32-bit integer
x2ap.Criticality
x2ap.dL_Forwarding dL-Forwarding
Unsigned 32-bit integer
x2ap.DL_Forwarding
x2ap.dL_GTP_TunnelEndpoint dL-GTP-TunnelEndpoint
No value
x2ap.GTPtunnelEndpoint
x2ap.dL_PDCP_SN_NextToAssign dL-PDCP-SN-NextToAssign
Signed 32-bit integer
x2ap.PDCP_SN
x2ap.equivalentPLMNs equivalentPLMNs
Unsigned 32-bit integer
x2ap.EPLMNs
x2ap.extensionValue extensionValue
No value
x2ap.T_extensionValue
x2ap.forbiddenInterRATs forbiddenInterRATs
Unsigned 32-bit integer
x2ap.ForbiddenInterRATs
x2ap.forbiddenLACs forbiddenLACs
Unsigned 32-bit integer
x2ap.ForbiddenLACs
x2ap.forbiddenLAs forbiddenLAs
Unsigned 32-bit integer
x2ap.ForbiddenLAs
x2ap.forbiddenTAIs forbiddenTAIs
Unsigned 32-bit integer
x2ap.ForbiddenTAIs
x2ap.forbiddenTAs forbiddenTAs
Unsigned 32-bit integer
x2ap.ForbiddenTAs
x2ap.frequency frequency
Byte array
x2ap.Frequency
x2ap.gTP_TEID gTP-TEID
Byte array
x2ap.GTP_TEI
x2ap.global global
x2ap.OBJECT_IDENTIFIER
x2ap.global_Cell_ID global-Cell-ID
No value
x2ap.CGI
x2ap.handoverRestrictionList handoverRestrictionList
No value
x2ap.HandoverRestrictionList
x2ap.iECriticality iECriticality
Unsigned 32-bit integer
x2ap.Criticality
x2ap.iE_Extensions iE-Extensions
Unsigned 32-bit integer
x2ap.ProtocolExtensionContainer
x2ap.iE_ID iE-ID
Unsigned 32-bit integer
x2ap.ProtocolIE_ID
x2ap.iEsCriticalityDiagnostics iEsCriticalityDiagnostics
Unsigned 32-bit integer
x2ap.CriticalityDiagnostics_IE_List
x2ap.id id
Unsigned 32-bit integer
x2ap.ProtocolIE_ID
x2ap.initiatingMessage initiatingMessage
No value
x2ap.InitiatingMessage
x2ap.interfacesToTrace interfacesToTrace
Unsigned 32-bit integer
x2ap.InterfacesToTrace
x2ap.interferenceOverloadIndication interferenceOverloadIndication
Byte array
x2ap.InterferenceOverloadIndication
x2ap.lAC lAC
Byte array
x2ap.LAC
x2ap.label label
Unsigned 32-bit integer
x2ap.INTEGER_1_256
x2ap.local local
Unsigned 32-bit integer
x2ap.INTEGER_0_maxPrivateIEs
x2ap.mME_UE_S1AP_ID mME-UE-S1AP-ID
Unsigned 32-bit integer
x2ap.UE_S1AP_ID
x2ap.misc misc
Unsigned 32-bit integer
x2ap.CauseMisc
x2ap.pDCP_SNofULSDUsNotToBeRetransmitted_List pDCP-SNofULSDUsNotToBeRetransmitted-List
Unsigned 32-bit integer
x2ap.PDCP_SNofULSDUsNotToBeRetransmitted_List
x2ap.pLMN_Identity pLMN-Identity
Byte array
x2ap.PLMN_Identity
x2ap.phyCID phyCID
Byte array
x2ap.PhyCID
x2ap.privateIEs privateIEs
Unsigned 32-bit integer
x2ap.PrivateIE_Container
x2ap.procedureCode procedureCode
Unsigned 32-bit integer
x2ap.ProcedureCode
x2ap.procedureCriticality procedureCriticality
Unsigned 32-bit integer
x2ap.Criticality
x2ap.protocol protocol
Unsigned 32-bit integer
x2ap.CauseProtocol
x2ap.protocolIEs protocolIEs
Unsigned 32-bit integer
x2ap.ProtocolIE_Container
x2ap.rB_type rB-type
Signed 32-bit integer
x2ap.RB_type
x2ap.rRC_Context rRC-Context
Byte array
x2ap.RRC_Context
x2ap.radioNetwork radioNetwork
Unsigned 32-bit integer
x2ap.CauseRadioNetwork
x2ap.sAE_BearerLevel_QoS_Parameters sAE-BearerLevel-QoS-Parameters
No value
x2ap.SAE_BearerLevel_QoS_Parameters
x2ap.sAE_BearerType sAE-BearerType
Unsigned 32-bit integer
x2ap.SAE_BearerType
x2ap.sAE_Bearer_GuaranteedBitrateDL sAE-Bearer-GuaranteedBitrateDL
Unsigned 32-bit integer
x2ap.SAE_Bearer_BitRate
x2ap.sAE_Bearer_GuaranteedBitrateUL sAE-Bearer-GuaranteedBitrateUL
Unsigned 32-bit integer
x2ap.SAE_Bearer_BitRate
x2ap.sAE_Bearer_ID sAE-Bearer-ID
Byte array
x2ap.Bearer_ID
x2ap.sAE_Bearer_MaximumBitrateDL sAE-Bearer-MaximumBitrateDL
Unsigned 32-bit integer
x2ap.SAE_Bearer_BitRate
x2ap.sAE_Bearer_MaximumBitrateUL sAE-Bearer-MaximumBitrateUL
Unsigned 32-bit integer
x2ap.SAE_Bearer_BitRate
x2ap.sAE_GBR_bearer sAE-GBR-bearer
No value
x2ap.SAE_GBR_Bearer
x2ap.sAE_non_GBR_Bearer_Type sAE-non-GBR-Bearer-Type
Unsigned 32-bit integer
x2ap.T_sAE_non_GBR_Bearer_Type
x2ap.sAE_non_GBR_bearer sAE-non-GBR-bearer
No value
x2ap.SAE_Non_GBR_Bearer
x2ap.servingPLMN servingPLMN
Byte array
x2ap.PLMN_Identity
x2ap.successfulOutcome successfulOutcome
No value
x2ap.SuccessfulOutcome
x2ap.tAI tAI
Byte array
x2ap.TAI
x2ap.time_UE_StayedInCell time-UE-StayedInCell
Signed 32-bit integer
x2ap.Time_UE_StayedInCell
x2ap.traceDepth traceDepth
Unsigned 32-bit integer
x2ap.TraceDepth
x2ap.traceInterface traceInterface
Unsigned 32-bit integer
x2ap.TraceInterface
x2ap.traceReference traceReference
Byte array
x2ap.TraceReference
x2ap.transport transport
Unsigned 32-bit integer
x2ap.CauseTransport
x2ap.transportLayerAddress transportLayerAddress
Byte array
x2ap.TransportLayerAddress
x2ap.triggeringMessage triggeringMessage
Unsigned 32-bit integer
x2ap.TriggeringMessage
x2ap.typeOfError typeOfError
Unsigned 32-bit integer
x2ap.TypeOfError
x2ap.uL_GTP_TunnelEndpoint uL-GTP-TunnelEndpoint
No value
x2ap.GTPtunnelEndpoint
x2ap.uL_GTPtunnelEndpoint uL-GTPtunnelEndpoint
No value
x2ap.GTPtunnelEndpoint
x2ap.uL_PDCP_SN_NextInSequenceExpected uL-PDCP-SN-NextInSequenceExpected
Signed 32-bit integer
x2ap.PDCP_SN
x2ap.unsuccessfulOutcome unsuccessfulOutcome
No value
x2ap.UnsuccessfulOutcome
x2ap.value value
No value
x2ap.ProtocolIE_Field_value
echo.data Echo data
Byte array
Echo data
echo.request Echo request
Boolean
Echo data
echo.response Echo response
Boolean
Echo data
esp.iv ESP IV
Byte array
IP Encapsulating Security Payload
esp.pad_len ESP Pad Length
Unsigned 8-bit integer
IP Encapsulating Security Payload Pad Length
esp.protocol ESP Next Header
Unsigned 8-bit integer
IP Encapsulating Security Payload Next Header
esp.sequence ESP Sequence
Unsigned 32-bit integer
IP Encapsulating Security Payload Sequence Number
esp.spi ESP SPI
Unsigned 32-bit integer
IP Encapsulating Security Payload Security Parameters Index
enrp.cause_code Cause code
Unsigned 16-bit integer
enrp.cause_info Cause info
Byte array
enrp.cause_length Cause length
Unsigned 16-bit integer
enrp.cause_padding Padding
Byte array
enrp.cookie Cookie
Byte array
enrp.ipv4_address IP Version 4 address
IPv4 address
enrp.ipv6_address IP Version 6 address
IPv6 address
enrp.m_bit M bit
Boolean
enrp.message_flags Flags
Unsigned 8-bit integer
enrp.message_length Length
Unsigned 16-bit integer
enrp.message_type Type
Unsigned 8-bit integer
enrp.message_value Value
Byte array
enrp.parameter_length Parameter length
Unsigned 16-bit integer
enrp.parameter_padding Padding
Byte array
enrp.parameter_type Parameter Type
Unsigned 16-bit integer
enrp.parameter_value Parameter value
Byte array
enrp.pe_checksum PE checksum
Unsigned 16-bit integer
enrp.pe_identifier PE identifier
Unsigned 32-bit integer
enrp.pool_element_home_enrp_server_identifier Home ENRP server identifier
Unsigned 32-bit integer
enrp.pool_element_pe_identifier PE identifier
Unsigned 32-bit integer
enrp.pool_element_registration_life Registration life
Signed 32-bit integer
enrp.pool_handle_pool_handle Pool handle
Byte array
enrp.r_bit R bit
Boolean
enrp.receiver_servers_id Receiver server's ID
Unsigned 32-bit integer
enrp.reserved Reserved
Unsigned 16-bit integer
enrp.sctp_transport_port Port
Unsigned 16-bit integer
enrp.sender_servers_id Sender server's ID
Unsigned 32-bit integer
enrp.server_information_server_identifier Server identifier
Unsigned 32-bit integer
enrp.target_servers_id Target server's ID
Unsigned 32-bit integer
enrp.tcp_transport_port Port
Unsigned 16-bit integer
enrp.transport_use Transport use
Unsigned 16-bit integer
enrp.udp_transport_port Port
Unsigned 16-bit integer
enrp.udp_transport_reserved Reserved
Unsigned 16-bit integer
enrp.update_action Update action
Unsigned 16-bit integer
enrp.w_bit W bit
Boolean
eigrp.as Autonomous System
Unsigned 16-bit integer
Autonomous System number
eigrp.opcode Opcode
Unsigned 8-bit integer
Opcode number
eigrp.tlv Entry
Unsigned 16-bit integer
Type/Length/Value
ecat_mailbox.address Address
Unsigned 16-bit integer
ecat_mailbox.coe CoE
Byte array
ecat_mailbox.coe.dsoldata Data
Byte array
ecat_mailbox.coe.number Number
Unsigned 16-bit integer
ecat_mailbox.coe.sdoccsds Download Segment
Unsigned 8-bit integer
ecat_mailbox.coe.sdoccsds.lastseg Last Segment
Boolean
ecat_mailbox.coe.sdoccsds.size Size
Unsigned 8-bit integer
ecat_mailbox.coe.sdoccsds.toggle Toggle Bit
Boolean
ecat_mailbox.coe.sdoccsid Initiate Download
Unsigned 8-bit integer
ecat_mailbox.coe.sdoccsid.complete Access
Boolean
ecat_mailbox.coe.sdoccsid.expedited Expedited
Boolean
ecat_mailbox.coe.sdoccsid.size0 Bytes
Boolean
ecat_mailbox.coe.sdoccsid.size1 Bytes
Boolean
ecat_mailbox.coe.sdoccsid.sizeind Size Ind.
Boolean
ecat_mailbox.coe.sdoccsiu Init Upload
Unsigned 8-bit integer
ecat_mailbox.coe.sdoccsiu_complete Toggle Bit
Boolean
ecat_mailbox.coe.sdoccsus Upload Segment
Unsigned 8-bit integer
ecat_mailbox.coe.sdoccsus_toggle Toggle Bit
Boolean
ecat_mailbox.coe.sdodata Data
Unsigned 32-bit integer
ecat_mailbox.coe.sdoerror SDO Error
Unsigned 32-bit integer
ecat_mailbox.coe.sdoidx Index
Unsigned 16-bit integer
ecat_mailbox.coe.sdoinfobitlen Info Bit Len
Unsigned 16-bit integer
ecat_mailbox.coe.sdoinfodatatype Info Data Type
Unsigned 16-bit integer
ecat_mailbox.coe.sdoinfodefaultvalue Info Default Val
No value
ecat_mailbox.coe.sdoinfoerrorcode Info Error Code
Unsigned 32-bit integer
ecat_mailbox.coe.sdoinfofrag Info Frag Left
Unsigned 16-bit integer
ecat_mailbox.coe.sdoinfoindex Info Obj Index
Unsigned 16-bit integer
ecat_mailbox.coe.sdoinfolist Info List
No value
ecat_mailbox.coe.sdoinfolisttype Info List Type
Unsigned 16-bit integer
ecat_mailbox.coe.sdoinfomaxsub Info Max SubIdx
Unsigned 8-bit integer
ecat_mailbox.coe.sdoinfomaxvalue Info Max Val
No value
ecat_mailbox.coe.sdoinfominvalue Info Min Val
No value
ecat_mailbox.coe.sdoinfoname Info Name
String
ecat_mailbox.coe.sdoinfoobjaccess Info Obj Access
Unsigned 16-bit integer
ecat_mailbox.coe.sdoinfoobjcode Info Obj Code
Unsigned 8-bit integer
ecat_mailbox.coe.sdoinfoopcode Info OpCode
Unsigned 8-bit integer
ecat_mailbox.coe.sdoinfosubindex Info Obj SubIdx
Unsigned 8-bit integer
ecat_mailbox.coe.sdoinfounittype Info Data Type
Unsigned 16-bit integer
ecat_mailbox.coe.sdoinfovalueinfo Info Obj SubIdx
Unsigned 8-bit integer
ecat_mailbox.coe.sdolength Length
Unsigned 32-bit integer
ecat_mailbox.coe.sdoreq SDO Req
Unsigned 8-bit integer
ecat_mailbox.coe.sdores SDO Res
Unsigned 8-bit integer
ecat_mailbox.coe.sdoscsds Download Segment Response
Unsigned 8-bit integer
ecat_mailbox.coe.sdoscsds_toggle Toggle Bit
Boolean
ecat_mailbox.coe.sdoscsiu Initiate Upload Response
Unsigned 8-bit integer
ecat_mailbox.coe.sdoscsiu_complete Access
Boolean
ecat_mailbox.coe.sdoscsiu_expedited Expedited
Boolean
ecat_mailbox.coe.sdoscsiu_size0 Bytes
Boolean
ecat_mailbox.coe.sdoscsiu_size1 Bytes
Boolean
ecat_mailbox.coe.sdoscsiu_sizeind Size Ind.
Boolean
ecat_mailbox.coe.sdoscsus Upload Segment
Unsigned 8-bit integer
ecat_mailbox.coe.sdoscsus_bytes Bytes
Unsigned 8-bit integer
ecat_mailbox.coe.sdoscsus_lastseg Last Segment
Boolean
ecat_mailbox.coe.sdoscsus_toggle Toggle Bit
Boolean
ecat_mailbox.coe.sdosub SubIndex
Unsigned 8-bit integer
ecat_mailbox.coe.type Type
Unsigned 16-bit integer
ecat_mailbox.data MB Data
No value
ecat_mailbox.eoe EoE Fragment
Byte array
ecat_mailbox.eoe.fraghead Eoe Frag Header
Byte array
ecat_mailbox.eoe.fragment EoE Frag Data
Byte array
ecat_mailbox.eoe.fragno EoE
Unsigned 32-bit integer
ecat_mailbox.eoe.frame EoE
Unsigned 32-bit integer
ecat_mailbox.eoe.init Init
No value
ecat_mailbox.eoe.init.append_timestamp AppendTimeStamp
Boolean
ecat_mailbox.eoe.init.contains_defaultgateway DefaultGateway
Boolean
ecat_mailbox.eoe.init.contains_dnsname DnsName
Boolean
ecat_mailbox.eoe.init.contains_dnsserver DnsServer
Boolean
ecat_mailbox.eoe.init.contains_ipaddr IpAddr
Boolean
ecat_mailbox.eoe.init.contains_macaddr MacAddr
Boolean
ecat_mailbox.eoe.init.contains_subnetmask SubnetMask
Boolean
ecat_mailbox.eoe.init.defaultgateway Default Gateway
IPv4 address
ecat_mailbox.eoe.init.dnsname Dns Name
String
ecat_mailbox.eoe.init.dnsserver Dns Server
IPv4 address
ecat_mailbox.eoe.init.ipaddr Ip Addr
IPv4 address
ecat_mailbox.eoe.init.macaddr Mac Addr
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.init.subnetmask Subnet Mask
IPv4 address
ecat_mailbox.eoe.last Last Fragment
Unsigned 32-bit integer
ecat_mailbox.eoe.macfilter Mac Filter
Byte array
ecat_mailbox.eoe.macfilter.filter Filter
Byte array
ecat_mailbox.eoe.macfilter.filter0 Filter 0
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter1 Filter 1
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter10 Filter 10
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter11 Filter 11
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter12 Filter 12
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter13 Filter 13
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter14 Filter 14
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter15 Filter 15
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter2 Filter 2
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter3 Filter 3
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter4 Filter 4
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter5 Filter 5
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter6 Filter 6
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter7 Filter 7
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter8 Filter 8
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filter9 Filter 9
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filtermask Filter Mask
Byte array
ecat_mailbox.eoe.macfilter.filtermask0 Mask 0
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filtermask1 Mask 1
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filtermask2 Mask 2
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.filtermask3 Mask 3
6-byte Hardware (MAC) Address
ecat_mailbox.eoe.macfilter.macfiltercount Mac Filter Count
Unsigned 8-bit integer
ecat_mailbox.eoe.macfilter.maskcount Mac Filter Mask Count
Unsigned 8-bit integer
ecat_mailbox.eoe.macfilter.nobroadcasts No Broadcasts
Boolean
ecat_mailbox.eoe.offset EoE
Unsigned 32-bit integer
ecat_mailbox.eoe.timestamp Time Stamp
Unsigned 32-bit integer
ecat_mailbox.eoe.timestampapp Last Fragment
Unsigned 32-bit integer
ecat_mailbox.eoe.timestampreq Last Fragment
Unsigned 32-bit integer
ecat_mailbox.eoe.type EoE
Unsigned 32-bit integer
ecat_mailbox.foe Foe
Byte array
ecat_mailbox.foe.efw Firmware
Byte array
ecat_mailbox.foe.efw.addresshw AddressHW
Unsigned 16-bit integer
ecat_mailbox.foe.efw.addresslw AddressLW
Unsigned 16-bit integer
ecat_mailbox.foe.efw.cmd Cmd
Unsigned 16-bit integer
ecat_mailbox.foe.efw.data Data
Byte array
ecat_mailbox.foe.efw.size Size
Unsigned 16-bit integer
ecat_mailbox.foe_busydata Foe Data
Byte array
ecat_mailbox.foe_busydone Foe BusyDone
Unsigned 16-bit integer
ecat_mailbox.foe_busyentire Foe BusyEntire
Unsigned 16-bit integer
ecat_mailbox.foe_errcode Foe ErrorCode
Unsigned 32-bit integer
ecat_mailbox.foe_errtext Foe ErrorString
String
ecat_mailbox.foe_filelength Foe FileLength
Unsigned 32-bit integer
ecat_mailbox.foe_filename Foe FileName
String
ecat_mailbox.foe_opmode Foe OpMode
Unsigned 8-bit integer
Op modes
ecat_mailbox.foe_packetno Foe PacketNo
Unsigned 16-bit integer
ecat_mailbox.length Length
Unsigned 16-bit integer
ecat_mailbox.soe Soe
Byte array
ecat_mailbox.soe_data SoE Data
Byte array
ecat_mailbox.soe_error SoE Error
Unsigned 16-bit integer
ecat_mailbox.soe_frag SoE FragLeft
Unsigned 16-bit integer
ecat_mailbox.soe_header Soe Header
Unsigned 16-bit integer
ecat_mailbox.soe_header_attribute Attribute
Boolean
ecat_mailbox.soe_header_datastate Datastate
Boolean
ecat_mailbox.soe_header_driveno Drive No
Unsigned 16-bit integer
ecat_mailbox.soe_header_error Error
Boolean
ecat_mailbox.soe_header_incomplete More Follows...
Boolean
ecat_mailbox.soe_header_max Max
Boolean
ecat_mailbox.soe_header_min Min
Boolean
ecat_mailbox.soe_header_name Name
Boolean
ecat_mailbox.soe_header_reserved Reserved
Boolean
ecat_mailbox.soe_header_unit Unit
Boolean
ecat_mailbox.soe_header_value Value
Boolean
ecat_mailbox.soe_idn SoE IDN
Unsigned 16-bit integer
ecat_mailbox.soe_opcode SoE OpCode
Unsigned 16-bit integer
ecat.ado Offset Addr
Unsigned 16-bit integer
ecat.adp Slave Addr
Unsigned 16-bit integer
ecat.cmd Command
Unsigned 8-bit integer
ecat.cnt Working Cnt
Unsigned 16-bit integer
The working counter is increased once for each addressed device if at least one byte/bit of the data was successfully read and/or written by that device, it is increased once for every operation made by that device - read/write/read and write
ecat.data Data
Byte array
ecat.dc.dif.ba DC B-A
Unsigned 32-bit integer
ecat.dc.dif.bd DC B-D
Unsigned 32-bit integer
ecat.dc.dif.ca DC C-A
Unsigned 32-bit integer
ecat.dc.dif.cb DC C-B
Unsigned 32-bit integer
ecat.dc.dif.cd DC C-D
Unsigned 32-bit integer
ecat.dc.dif.da DC D-A
Unsigned 32-bit integer
ecat.fmmu FMMU
Byte array
ecat.fmmu.active FMMU Active
Unsigned 8-bit integer
ecat.fmmu.active0 Active
Boolean
ecat.fmmu.lendbit Log EndBit
Unsigned 8-bit integer
ecat.fmmu.llen Log Length
Unsigned 16-bit integer
ecat.fmmu.lstart Log Start
Unsigned 32-bit integer
ecat.fmmu.lstartbit Log StartBit
Unsigned 8-bit integer
ecat.fmmu.pstart Phys Start
Unsigned 8-bit integer
ecat.fmmu.pstartbit Phys StartBit
Unsigned 8-bit integer
ecat.fmmu.type FMMU Type
Unsigned 8-bit integer
ecat.fmmu.typeread Type
Boolean
ecat.fmmu.typewrite Type
Boolean
ecat.header Header
Byte array
ecat.idx Index
Unsigned 8-bit integer
ecat.int Interrupt
Unsigned 16-bit integer
ecat.lad Log Addr
Unsigned 32-bit integer
ecat.len Length
Unsigned 16-bit integer
ecat.sub EtherCAT Frame
Byte array
ecat.sub1.ado Offset Addr
Unsigned 16-bit integer
ecat.sub1.adp Slave Addr
Unsigned 16-bit integer
ecat.sub1.cmd Command
Unsigned 8-bit integer
ecat.sub1.cnt Working Cnt
Unsigned 16-bit integer
ecat.sub1.data Data
Byte array
ecat.sub1.dc.dif.ba DC B-A
Unsigned 32-bit integer
ecat.sub1.dc.dif.bd DC B-C
Unsigned 32-bit integer
ecat.sub1.dc.dif.ca DC C-A
Unsigned 32-bit integer
ecat.sub1.dc.dif.cb DC C-B
Unsigned 32-bit integer
ecat.sub1.dc.dif.cd DC C-D
Unsigned 32-bit integer
ecat.sub1.dc.dif.da DC D-A
Unsigned 32-bit integer
ecat.sub1.idx Index
Unsigned 8-bit integer
ecat.sub1.lad Log Addr
Unsigned 32-bit integer
ecat.sub10.ado Offset Addr
Unsigned 16-bit integer
ecat.sub10.adp Slave Addr
Unsigned 16-bit integer
ecat.sub10.cmd Command
Unsigned 8-bit integer
ecat.sub10.cnt Working Cnt
Unsigned 16-bit integer
ecat.sub10.data Data
Byte array
ecat.sub10.dc.dif.ba DC B-A
Unsigned 32-bit integer
ecat.sub10.dc.dif.bd DC B-D
Unsigned 32-bit integer
ecat.sub10.dc.dif.ca DC C-A
Unsigned 32-bit integer
ecat.sub10.dc.dif.cb DC C-B
Unsigned 32-bit integer
ecat.sub10.dc.dif.cd DC C-D
Unsigned 32-bit integer
ecat.sub10.dc.dif.da DC D-A
Unsigned 32-bit integer
ecat.sub10.idx Index
Unsigned 8-bit integer
ecat.sub10.lad Log Addr
Unsigned 32-bit integer
ecat.sub2.ado Offset Addr
Unsigned 16-bit integer
ecat.sub2.adp Slave Addr
Unsigned 16-bit integer
ecat.sub2.cmd Command
Unsigned 8-bit integer
ecat.sub2.cnt Working Cnt
Unsigned 16-bit integer
ecat.sub2.data Data
Byte array
ecat.sub2.dc.dif.ba DC B-A
Unsigned 32-bit integer
ecat.sub2.dc.dif.bd DC B-C
Unsigned 32-bit integer
ecat.sub2.dc.dif.ca DC C-A
Unsigned 32-bit integer
ecat.sub2.dc.dif.cb DC C-B
Unsigned 32-bit integer
ecat.sub2.dc.dif.cd DC C-D
Unsigned 32-bit integer
ecat.sub2.dc.dif.da DC D-A
Unsigned 32-bit integer
ecat.sub2.idx Index
Unsigned 8-bit integer
ecat.sub2.lad Log Addr
Unsigned 32-bit integer
ecat.sub3.ado Offset Addr
Unsigned 16-bit integer
ecat.sub3.adp Slave Addr
Unsigned 16-bit integer
ecat.sub3.cmd Command
Unsigned 8-bit integer
ecat.sub3.cnt Working Cnt
Unsigned 16-bit integer
ecat.sub3.data Data
Byte array
ecat.sub3.dc.dif.ba DC B-A
Unsigned 32-bit integer
ecat.sub3.dc.dif.bd DC B-C
Unsigned 32-bit integer
ecat.sub3.dc.dif.ca DC C-A
Unsigned 32-bit integer
ecat.sub3.dc.dif.cb DC C-B
Unsigned 32-bit integer
ecat.sub3.dc.dif.cd DC C-D
Unsigned 32-bit integer
ecat.sub3.dc.dif.da DC D-A
Unsigned 32-bit integer
ecat.sub3.idx Index
Unsigned 8-bit integer
ecat.sub3.lad Log Addr
Unsigned 32-bit integer
ecat.sub4.ado Offset Addr
Unsigned 16-bit integer
ecat.sub4.adp Slave Addr
Unsigned 16-bit integer
ecat.sub4.cmd Command
Unsigned 8-bit integer
ecat.sub4.cnt Working Cnt
Unsigned 16-bit integer
ecat.sub4.data Data
Byte array
ecat.sub4.dc.dif.ba DC B-A
Unsigned 32-bit integer
ecat.sub4.dc.dif.bd DC B-C
Unsigned 32-bit integer
ecat.sub4.dc.dif.ca DC C-A
Unsigned 32-bit integer
ecat.sub4.dc.dif.cb DC C-B
Unsigned 32-bit integer
ecat.sub4.dc.dif.cd DC C-D
Unsigned 32-bit integer
ecat.sub4.dc.dif.da DC D-A
Unsigned 32-bit integer
ecat.sub4.idx Index
Unsigned 8-bit integer
ecat.sub4.lad Log Addr
Unsigned 32-bit integer
ecat.sub5.ado Offset Addr
Unsigned 16-bit integer
ecat.sub5.adp Slave Addr
Unsigned 16-bit integer
ecat.sub5.cmd Command
Unsigned 8-bit integer
ecat.sub5.cnt Working Cnt
Unsigned 16-bit integer
ecat.sub5.data Data
Byte array
ecat.sub5.dc.dif.ba DC B-A
Unsigned 32-bit integer
ecat.sub5.dc.dif.bd DC B-C
Unsigned 32-bit integer
ecat.sub5.dc.dif.ca DC C-A
Unsigned 32-bit integer
ecat.sub5.dc.dif.cb DC C-B
Unsigned 32-bit integer
ecat.sub5.dc.dif.cd DC C-D
Unsigned 32-bit integer
ecat.sub5.dc.dif.da DC D-A
Unsigned 32-bit integer
ecat.sub5.idx Index
Unsigned 8-bit integer
ecat.sub5.lad Log Addr
Unsigned 32-bit integer
ecat.sub6.ado Offset Addr
Unsigned 16-bit integer
ecat.sub6.adp Slave Addr
Unsigned 16-bit integer
ecat.sub6.cmd Command
Unsigned 8-bit integer
ecat.sub6.cnt Working Cnt
Unsigned 16-bit integer
ecat.sub6.data Data
Byte array
ecat.sub6.dc.dif.ba DC B-A
Unsigned 32-bit integer
ecat.sub6.dc.dif.bd DC B-C
Unsigned 32-bit integer
ecat.sub6.dc.dif.ca DC C-A
Unsigned 32-bit integer
ecat.sub6.dc.dif.cb DC C-B
Unsigned 32-bit integer
ecat.sub6.dc.dif.cd DC C-D
Unsigned 32-bit integer
ecat.sub6.dc.dif.da DC D-A
Unsigned 32-bit integer
ecat.sub6.idx Index
Unsigned 8-bit integer
ecat.sub6.lad Log Addr
Unsigned 32-bit integer
ecat.sub7.ado Offset Addr
Unsigned 16-bit integer
ecat.sub7.adp Slave Addr
Unsigned 16-bit integer
ecat.sub7.cmd Command
Unsigned 8-bit integer
ecat.sub7.cnt Working Cnt
Unsigned 16-bit integer
ecat.sub7.data Data
Byte array
ecat.sub7.dc.dif.ba DC B-A
Unsigned 32-bit integer
ecat.sub7.dc.dif.bd DC B-C
Unsigned 32-bit integer
ecat.sub7.dc.dif.ca DC C-A
Unsigned 32-bit integer
ecat.sub7.dc.dif.cb DC C-B
Unsigned 32-bit integer
ecat.sub7.dc.dif.cd DC C-D
Unsigned 32-bit integer
ecat.sub7.dc.dif.da DC D-A
Unsigned 32-bit integer
ecat.sub7.idx Index
Unsigned 8-bit integer
ecat.sub7.lad Log Addr
Unsigned 32-bit integer
ecat.sub8.ado Offset Addr
Unsigned 16-bit integer
ecat.sub8.adp Slave Addr
Unsigned 16-bit integer
ecat.sub8.cmd Command
Unsigned 8-bit integer
ecat.sub8.cnt Working Cnt
Unsigned 16-bit integer
ecat.sub8.data Data
Byte array
ecat.sub8.dc.dif.ba DC B-A
Unsigned 32-bit integer
ecat.sub8.dc.dif.bd DC B-C
Unsigned 32-bit integer
ecat.sub8.dc.dif.ca DC C-A
Unsigned 32-bit integer
ecat.sub8.dc.dif.cb DC C-B
Unsigned 32-bit integer
ecat.sub8.dc.dif.cd DC C-D
Unsigned 32-bit integer
ecat.sub8.dc.dif.da DC D-A
Unsigned 32-bit integer
ecat.sub8.idx Index
Unsigned 8-bit integer
ecat.sub8.lad Log Addr
Unsigned 32-bit integer
ecat.sub9.ado Offset Addr
Unsigned 16-bit integer
ecat.sub9.adp Slave Addr
Unsigned 16-bit integer
ecat.sub9.cmd Command
Unsigned 8-bit integer
ecat.sub9.cnt Working Cnt
Unsigned 16-bit integer
ecat.sub9.data Data
Byte array
ecat.sub9.dc.dif.ba DC B-A
Unsigned 32-bit integer
ecat.sub9.dc.dif.bd DC B-C
Unsigned 32-bit integer
ecat.sub9.dc.dif.ca DC C-A
Unsigned 32-bit integer
ecat.sub9.dc.dif.cb DC C-B
Unsigned 32-bit integer
ecat.sub9.dc.dif.cd DC C-D
Unsigned 32-bit integer
ecat.sub9.dc.dif.da DC D-A
Unsigned 32-bit integer
ecat.sub9.idx Index
Unsigned 8-bit integer
ecat.sub9.lad Log Addr
Unsigned 32-bit integer
ecat.subframe.circulating Round trip
Unsigned 16-bit integer
ecat.subframe.length Length
Unsigned 16-bit integer
ecat.subframe.more Last indicator
Unsigned 16-bit integer
ecat.subframe.pad_bytes Pad bytes
Byte array
ecat.subframe.reserved Reserved
Unsigned 16-bit integer
ecat.syncman SyncManager
Byte array
ecat.syncman.flags SM Flags
Unsigned 32-bit integer
ecat.syncman.len SM Length
Unsigned 16-bit integer
ecat.syncman.start Start Addr
Unsigned 16-bit integer
ecat.syncman_flag0 SM Flag0
Boolean
ecat.syncman_flag1 SM Flag1
Boolean
ecat.syncman_flag10 SM Flag10
Boolean
ecat.syncman_flag11 SM Flag11
Boolean
ecat.syncman_flag12 SM Flag12
Boolean
ecat.syncman_flag13 SM Flag13
Boolean
ecat.syncman_flag16 SM Flag16
Boolean
ecat.syncman_flag2 SM Flag2
Boolean
ecat.syncman_flag4 SM Flag4
Boolean
ecat.syncman_flag5 SM Flag5
Boolean
ecat.syncman_flag8 SM Flag8
Boolean
ecat.syncman_flag9 SM Flag9
Boolean
ecatf.length Length
Unsigned 16-bit integer
ecatf.reserved Reserved
Unsigned 16-bit integer
ecatf.type Type
Unsigned 16-bit integer
E88A4 Types
enip.command Command
Unsigned 16-bit integer
Encapsulation command
enip.context Sender Context
Byte array
Information pertient to the sender
enip.cpf.sai.connid Connection ID
Unsigned 32-bit integer
Common Packet Format: Sequenced Address Item, Connection Identifier
enip.cpf.sai.seq Sequence Number
Unsigned 32-bit integer
Common Packet Format: Sequenced Address Item, Sequence Number
enip.cpf.typeid Type ID
Unsigned 16-bit integer
Common Packet Format: Type of encapsulated item
enip.lir.devtype Device Type
Unsigned 16-bit integer
ListIdentity Reply: Device Type
enip.lir.name Product Name
String
ListIdentity Reply: Product Name
enip.lir.prodcode Product Code
Unsigned 16-bit integer
ListIdentity Reply: Product Code
enip.lir.sa.sinaddr sin_addr
IPv4 address
ListIdentity Reply: Socket Address.Sin Addr
enip.lir.sa.sinfamily sin_family
Unsigned 16-bit integer
ListIdentity Reply: Socket Address.Sin Family
enip.lir.sa.sinport sin_port
Unsigned 16-bit integer
ListIdentity Reply: Socket Address.Sin Port
enip.lir.sa.sinzero sin_zero
Byte array
ListIdentity Reply: Socket Address.Sin Zero
enip.lir.serial Serial Number
Unsigned 32-bit integer
ListIdentity Reply: Serial Number
enip.lir.state State
Unsigned 8-bit integer
ListIdentity Reply: State
enip.lir.status Status
Unsigned 16-bit integer
ListIdentity Reply: Status
enip.lir.vendor Vendor ID
Unsigned 16-bit integer
ListIdentity Reply: Vendor ID
enip.lsr.capaflags.tcp Supports CIP Encapsulation via TCP
Unsigned 16-bit integer
ListServices Reply: Supports CIP Encapsulation via TCP
enip.lsr.capaflags.udp Supports CIP Class 0 or 1 via UDP
Unsigned 16-bit integer
ListServices Reply: Supports CIP Class 0 or 1 via UDP
enip.options Options
Unsigned 32-bit integer
Options flags
enip.session Session Handle
Unsigned 32-bit integer
Session identification
enip.srrd.iface Interface Handle
Unsigned 32-bit integer
SendRRData: Interface handle
enip.status Status
Unsigned 32-bit integer
Status code
enip.sud.iface Interface Handle
Unsigned 32-bit integer
SendUnitData: Interface handle
etheric.address_presentation_restricted_indicator Address presentation restricted indicator
Unsigned 8-bit integer
etheric.called_party_even_address_signal_digit Address signal digit
Unsigned 8-bit integer
etheric.called_party_nature_of_address_indicator Nature of address indicator
Unsigned 8-bit integer
etheric.called_party_odd_address_signal_digit Address signal digit
Unsigned 8-bit integer
etheric.calling_party_even_address_signal_digit Address signal digit
Unsigned 8-bit integer
etheric.calling_party_nature_of_address_indicator Nature of address indicator
Unsigned 8-bit integer
etheric.calling_party_odd_address_signal_digit Address signal digit
Unsigned 8-bit integer
etheric.calling_partys_category Calling Party's category
Unsigned 8-bit integer
etheric.cause_indicator Cause indicator
Unsigned 8-bit integer
etheric.cic CIC
Unsigned 16-bit integer
Etheric CIC
etheric.event_ind Event indicator
Unsigned 8-bit integer
etheric.event_presentatiation_restr_ind Event presentation restricted indicator
Boolean
etheric.forw_call_isdn_access_indicator ISDN access indicator
Boolean
etheric.inband_information_ind In-band information indicator
Boolean
etheric.inn_indicator INN indicator
Boolean
etheric.isdn_odd_even_indicator Odd/even indicator
Boolean
etheric.mandatory_variable_parameter_pointer Pointer to Parameter
Unsigned 8-bit integer
etheric.message.length Message length
Unsigned 8-bit integer
Etheric Message length
etheric.message.type Message type
Unsigned 8-bit integer
Etheric message types
etheric.ni_indicator NI indicator
Boolean
etheric.numbering_plan_indicator Numbering plan indicator
Unsigned 8-bit integer
etheric.optional_parameter_part_pointer Pointer to optional parameter part
Unsigned 8-bit integer
etheric.parameter_length Parameter Length
Unsigned 8-bit integer
etheric.parameter_type Parameter Type
Unsigned 8-bit integer
etheric.protocol_version Protocol version
Unsigned 8-bit integer
Etheric protocol version
etheric.screening_indicator Screening indicator
Unsigned 8-bit integer
etheric.transmission_medium_requirement Transmission medium requirement
Unsigned 8-bit integer
eth.addr Address
6-byte Hardware (MAC) Address
Source or Destination Hardware Address
eth.dst Destination
6-byte Hardware (MAC) Address
Destination Hardware Address
eth.ig IG bit
Boolean
Specifies if this is an individual (unicast) or group (broadcast/multicast) address
eth.len Length
Unsigned 16-bit integer
eth.lg LG bit
Boolean
Specifies if this is a locally administered or globally unique (IEEE assigned) address
eth.src Source
6-byte Hardware (MAC) Address
Source Hardware Address
eth.trailer Trailer
Byte array
Ethernet Trailer or Checksum
eth.type Type
Unsigned 16-bit integer
etherip.ver Version
Unsigned 8-bit integer
eventlog.Record Record
No value
eventlog.Record.computer_name Computer Name
String
eventlog.Record.length Record Length
Unsigned 32-bit integer
eventlog.Record.source_name Source Name
String
eventlog.Record.string string
String
eventlog.eventlogEventTypes.EVENTLOG_AUDIT_FAILURE Eventlog Audit Failure
Boolean
eventlog.eventlogEventTypes.EVENTLOG_AUDIT_SUCCESS Eventlog Audit Success
Boolean
eventlog.eventlogEventTypes.EVENTLOG_ERROR_TYPE Eventlog Error Type
Boolean
eventlog.eventlogEventTypes.EVENTLOG_INFORMATION_TYPE Eventlog Information Type
Boolean
eventlog.eventlogEventTypes.EVENTLOG_SUCCESS Eventlog Success
Boolean
eventlog.eventlogEventTypes.EVENTLOG_WARNING_TYPE Eventlog Warning Type
Boolean
eventlog.eventlogReadFlags.EVENTLOG_BACKWARDS_READ Eventlog Backwards Read
Boolean
eventlog.eventlogReadFlags.EVENTLOG_FORWARDS_READ Eventlog Forwards Read
Boolean
eventlog.eventlogReadFlags.EVENTLOG_SEEK_READ Eventlog Seek Read
Boolean
eventlog.eventlogReadFlags.EVENTLOG_SEQUENTIAL_READ Eventlog Sequential Read
Boolean
eventlog.eventlog_BackupEventLogW.backupfilename Backupfilename
No value
eventlog.eventlog_BackupEventLogW.handle Handle
Byte array
eventlog.eventlog_ChangeNotify.handle Handle
Byte array
eventlog.eventlog_ChangeNotify.unknown2 Unknown2
No value
eventlog.eventlog_ChangeNotify.unknown3 Unknown3
Unsigned 32-bit integer
eventlog.eventlog_ChangeUnknown0.unknown0 Unknown0
Unsigned 32-bit integer
eventlog.eventlog_ChangeUnknown0.unknown1 Unknown1
Unsigned 32-bit integer
eventlog.eventlog_ClearEventLogW.backupfilename Backupfilename
No value
eventlog.eventlog_ClearEventLogW.handle Handle
Byte array
eventlog.eventlog_CloseEventLog.handle Handle
Byte array
eventlog.eventlog_DeregisterEventSource.handle Handle
Byte array
eventlog.eventlog_FlushEventLog.handle Handle
Byte array
eventlog.eventlog_GetLogIntormation.cbBufSize Cbbufsize
Unsigned 32-bit integer
eventlog.eventlog_GetLogIntormation.cbBytesNeeded Cbbytesneeded
Signed 32-bit integer
eventlog.eventlog_GetLogIntormation.dwInfoLevel Dwinfolevel
Unsigned 32-bit integer
eventlog.eventlog_GetLogIntormation.handle Handle
Byte array
eventlog.eventlog_GetLogIntormation.lpBuffer Lpbuffer
Unsigned 8-bit integer
eventlog.eventlog_GetNumRecords.handle Handle
Byte array
eventlog.eventlog_GetNumRecords.number Number
Unsigned 32-bit integer
eventlog.eventlog_GetOldestRecord.handle Handle
Byte array
eventlog.eventlog_GetOldestRecord.oldest Oldest
Unsigned 32-bit integer
eventlog.eventlog_OpenBackupEventLogW.handle Handle
Byte array
eventlog.eventlog_OpenBackupEventLogW.logname Logname
No value
eventlog.eventlog_OpenBackupEventLogW.unknown0 Unknown0
No value
eventlog.eventlog_OpenBackupEventLogW.unknown2 Unknown2
Unsigned 32-bit integer
eventlog.eventlog_OpenBackupEventLogW.unknown3 Unknown3
Unsigned 32-bit integer
eventlog.eventlog_OpenEventLogW.handle Handle
Byte array
eventlog.eventlog_OpenEventLogW.logname Logname
No value
eventlog.eventlog_OpenEventLogW.servername Servername
No value
eventlog.eventlog_OpenEventLogW.unknown0 Unknown0
No value
eventlog.eventlog_OpenEventLogW.unknown2 Unknown2
Unsigned 32-bit integer
eventlog.eventlog_OpenEventLogW.unknown3 Unknown3
Unsigned 32-bit integer
eventlog.eventlog_OpenUnknown0.unknown0 Unknown0
Unsigned 16-bit integer
eventlog.eventlog_OpenUnknown0.unknown1 Unknown1
Unsigned 16-bit integer
eventlog.eventlog_ReadEventLogW.data Data
Unsigned 8-bit integer
eventlog.eventlog_ReadEventLogW.flags Flags
Unsigned 32-bit integer
eventlog.eventlog_ReadEventLogW.handle Handle
Byte array
eventlog.eventlog_ReadEventLogW.number_of_bytes Number Of Bytes
Unsigned 32-bit integer
eventlog.eventlog_ReadEventLogW.offset Offset
Unsigned 32-bit integer
eventlog.eventlog_ReadEventLogW.real_size Real Size
Unsigned 32-bit integer
eventlog.eventlog_ReadEventLogW.sent_size Sent Size
Unsigned 32-bit integer
eventlog.eventlog_Record.closing_record_number Closing Record Number
Unsigned 32-bit integer
eventlog.eventlog_Record.computer_name Computer Name
No value
eventlog.eventlog_Record.data_length Data Length
Unsigned 32-bit integer
eventlog.eventlog_Record.data_offset Data Offset
Unsigned 32-bit integer
eventlog.eventlog_Record.event_category Event Category
Unsigned 16-bit integer
eventlog.eventlog_Record.event_id Event Id
Unsigned 32-bit integer
eventlog.eventlog_Record.event_type Event Type
Unsigned 16-bit integer
eventlog.eventlog_Record.num_of_strings Num Of Strings
Unsigned 16-bit integer
eventlog.eventlog_Record.raw_data Raw Data
No value
eventlog.eventlog_Record.record_number Record Number
Unsigned 32-bit integer
eventlog.eventlog_Record.reserved Reserved
Unsigned 32-bit integer
eventlog.eventlog_Record.reserved_flags Reserved Flags
Unsigned 16-bit integer
eventlog.eventlog_Record.sid_length Sid Length
Unsigned 32-bit integer
eventlog.eventlog_Record.sid_offset Sid Offset
Unsigned 32-bit integer
eventlog.eventlog_Record.size Size
Unsigned 32-bit integer
eventlog.eventlog_Record.source_name Source Name
No value
eventlog.eventlog_Record.stringoffset Stringoffset
Unsigned 32-bit integer
eventlog.eventlog_Record.strings Strings
No value
eventlog.eventlog_Record.time_generated Time Generated
Unsigned 32-bit integer
eventlog.eventlog_Record.time_written Time Written
Unsigned 32-bit integer
eventlog.eventlog_RegisterEventSourceW.handle Handle
Byte array
eventlog.eventlog_RegisterEventSourceW.logname Logname
No value
eventlog.eventlog_RegisterEventSourceW.servername Servername
No value
eventlog.eventlog_RegisterEventSourceW.unknown0 Unknown0
No value
eventlog.eventlog_RegisterEventSourceW.unknown2 Unknown2
Unsigned 32-bit integer
eventlog.eventlog_RegisterEventSourceW.unknown3 Unknown3
Unsigned 32-bit integer
eventlog.opnum Operation
Unsigned 16-bit integer
eventlog.status NT Error
Unsigned 32-bit integer
list.cid cid
String
list.fullstate fullstate
String
list.instance instance
String
list.instance.cid cid
String
list.instance.id id
String
list.instance.reason reason
String
list.instance.state state
String
list.name name
String
list.name.lang lang
String
list.resource resource
String
list.resource.instance instance
String
list.resource.instance.cid cid
String
list.resource.instance.id id
String
list.resource.instance.reason reason
String
list.resource.instance.state state
String
list.resource.name name
String
list.resource.name.lang lang
String
list.resource.uri uri
String
list.uri uri
String
list.version version
String
list.xmlns xmlns
String
nspi.FILETIME.dwHighDateTime Dwhighdatetime
Unsigned 32-bit integer
nspi.FILETIME.dwLowDateTime Dwlowdatetime
Unsigned 32-bit integer
nspi.LPSTR.lppszA Lppsza
No value
nspi.MAPINAMEID.lID Lid
Unsigned 32-bit integer
nspi.MAPINAMEID.lpguid Lpguid
No value
nspi.MAPINAMEID.ulKind Ulkind
Unsigned 32-bit integer
nspi.MAPISTATUS_status MAPISTATUS
Unsigned 32-bit integer
nspi.MAPIUID.ab Ab
Unsigned 8-bit integer
nspi.MAPI_SETTINGS.codepage Codepage
Unsigned 32-bit integer
nspi.MAPI_SETTINGS.flag Flag
Unsigned 32-bit integer
nspi.MAPI_SETTINGS.handle Handle
Unsigned 32-bit integer
nspi.MAPI_SETTINGS.input_locale Input Locale
No value
nspi.MAPI_SETTINGS.service_provider Service Provider
No value
nspi.MV_LONG_STRUCT.cValues Cvalues
Unsigned 32-bit integer
nspi.MV_LONG_STRUCT.lpl Lpl
Unsigned 32-bit integer
nspi.MV_UNICODE_STRUCT.cValues Cvalues
Unsigned 32-bit integer
nspi.MV_UNICODE_STRUCT.lpi Lpi
Unsigned 32-bit integer
nspi.NAME_STRING.str Str
String
nspi.NspiBind.mapiuid Mapiuid
nspi.NspiBind.settings Settings
No value
nspi.NspiBind.unknown Unknown
Unsigned 32-bit integer
nspi.NspiDNToEph.flag Flag
Unsigned 32-bit integer
nspi.NspiDNToEph.instance_key Instance Key
No value
nspi.NspiDNToEph.server_dn Server Dn
No value
nspi.NspiDNToEph.size Size
Unsigned 32-bit integer
nspi.NspiGetHierarchyInfo.RowSet Rowset
No value
nspi.NspiGetHierarchyInfo.settings Settings
No value
nspi.NspiGetHierarchyInfo.unknown1 Unknown1
Unsigned 32-bit integer
nspi.NspiGetHierarchyInfo.unknown2 Unknown2
Unsigned 32-bit integer
nspi.NspiGetMatches.PropTagArray Proptagarray
No value
nspi.NspiGetMatches.REQ_properties Req Properties
No value
nspi.NspiGetMatches.RowSet Rowset
No value
nspi.NspiGetMatches.instance_key Instance Key
No value
nspi.NspiGetMatches.restrictions Restrictions
No value
nspi.NspiGetMatches.settings Settings
No value
nspi.NspiGetMatches.unknown1 Unknown1
Unsigned 32-bit integer
nspi.NspiGetMatches.unknown2 Unknown2
Unsigned 32-bit integer
nspi.NspiGetMatches.unknown3 Unknown3
Unsigned 32-bit integer
nspi.NspiGetProps.REPL_values Repl Values
No value
nspi.NspiGetProps.REQ_properties Req Properties
No value
nspi.NspiGetProps.flag Flag
Unsigned 32-bit integer
nspi.NspiGetProps.settings Settings
No value
nspi.NspiQueryRows.REQ_properties Req Properties
No value
nspi.NspiQueryRows.RowSet Rowset
No value
nspi.NspiQueryRows.flag Flag
Unsigned 32-bit integer
nspi.NspiQueryRows.instance_key Instance Key
Unsigned 32-bit integer
nspi.NspiQueryRows.lRows Lrows
Unsigned 32-bit integer
nspi.NspiQueryRows.settings Settings
No value
nspi.NspiQueryRows.unknown Unknown
Unsigned 32-bit integer
nspi.NspiUnbind.status Status
Unsigned 32-bit integer
nspi.SAndRestriction.cRes Cres
Unsigned 32-bit integer
nspi.SAndRestriction.lpRes Lpres
No value
nspi.SBinary.cb Cb
Unsigned 32-bit integer
nspi.SBinary.lpb Lpb
Unsigned 8-bit integer
nspi.SBinaryArray.cValues Cvalues
Unsigned 32-bit integer
nspi.SBinaryArray.lpbin Lpbin
No value
nspi.SDateTimeArray.cValues Cvalues
Unsigned 32-bit integer
nspi.SDateTimeArray.lpft Lpft
No value
nspi.SGuidArray.cValues Cvalues
Unsigned 32-bit integer
nspi.SGuidArray.lpguid Lpguid
Unsigned 32-bit integer
nspi.SLPSTRArray.cValues Cvalues
Unsigned 32-bit integer
nspi.SLPSTRArray.strings Strings
No value
nspi.SPropTagArray.aulPropTag Aulproptag
Unsigned 32-bit integer
nspi.SPropTagArray.cValues Cvalues
Unsigned 32-bit integer
nspi.SPropValue.dwAlignPad Dwalignpad
Unsigned 32-bit integer
nspi.SPropValue.ulPropTag Ulproptag
Unsigned 32-bit integer
nspi.SPropValue.value Value
Unsigned 32-bit integer
nspi.SPropValue_CTR.MVbin Mvbin
No value
nspi.SPropValue_CTR.MVft Mvft
No value
nspi.SPropValue_CTR.MVguid Mvguid
No value
nspi.SPropValue_CTR.MVi Mvi
No value
nspi.SPropValue_CTR.MVl Mvl
No value
nspi.SPropValue_CTR.MVszA Mvsza
No value
nspi.SPropValue_CTR.MVszW Mvszw
No value
nspi.SPropValue_CTR.b B
Unsigned 16-bit integer
nspi.SPropValue_CTR.bin Bin
No value
nspi.SPropValue_CTR.err Err
Unsigned 32-bit integer
nspi.SPropValue_CTR.ft Ft
No value
nspi.SPropValue_CTR.i I
Unsigned 16-bit integer
nspi.SPropValue_CTR.l L
Unsigned 32-bit integer
nspi.SPropValue_CTR.lpguid Lpguid
No value
nspi.SPropValue_CTR.lpszA Lpsza
String
nspi.SPropValue_CTR.lpszW Lpszw
String
nspi.SPropValue_CTR.null Null
Unsigned 32-bit integer
nspi.SPropValue_CTR.object Object
Unsigned 32-bit integer
nspi.SPropertyRestriction.lpProp Lpprop
No value
nspi.SPropertyRestriction.relop Relop
Unsigned 32-bit integer
nspi.SPropertyRestriction.ulPropTag Ulproptag
Unsigned 32-bit integer
nspi.SRestriction_CTR.resAnd Resand
No value
nspi.SRestriction_CTR.resProperty Resproperty
No value
nspi.SRow.cValues Cvalues
Unsigned 32-bit integer
nspi.SRow.lpProps Lpprops
No value
nspi.SRow.ulAdrEntryPad Uladrentrypad
Unsigned 32-bit integer
nspi.SRowSet.aRow Arow
No value
nspi.SRowSet.cRows Crows
Unsigned 32-bit integer
nspi.SShortArray.cValues Cvalues
Unsigned 32-bit integer
nspi.SShortArray.lpi Lpi
Unsigned 16-bit integer
nspi.SSortOrder.ulOrder Ulorder
Unsigned 32-bit integer
nspi.SSortOrder.ulPropTag Ulproptag
Unsigned 32-bit integer
nspi.SSortOrderSet.aSort Asort
No value
nspi.SSortOrderSet.cCategories Ccategories
Unsigned 32-bit integer
nspi.SSortOrderSet.cExpanded Cexpanded
Unsigned 32-bit integer
nspi.SSortOrderSet.cSorts Csorts
Unsigned 32-bit integer
nspi.handle Handle
Byte array
nspi.input_locale.language Language
Unsigned 32-bit integer
nspi.input_locale.method Method
Unsigned 32-bit integer
nspi.instance_key.cValues Cvalues
Unsigned 32-bit integer
nspi.instance_key.value Value
Unsigned 32-bit integer
nspi.opnum Operation
Unsigned 16-bit integer
nspi.property_type Restriction Type
Unsigned 32-bit integer
ess.ContentHints ContentHints
No value
ess.ContentHints
ess.ContentIdentifier ContentIdentifier
Byte array
ess.ContentIdentifier
ess.ContentReference ContentReference
No value
ess.ContentReference
ess.ESSSecurityLabel ESSSecurityLabel
No value
ess.ESSSecurityLabel
ess.EnumeratedTag EnumeratedTag
No value
ess.EnumeratedTag
ess.EquivalentLabels EquivalentLabels
Unsigned 32-bit integer
ess.EquivalentLabels
ess.EquivalentLabels_item Item
No value
ess.ESSSecurityLabel
ess.InformativeTag InformativeTag
No value
ess.InformativeTag
ess.MLExpansionHistory MLExpansionHistory
Unsigned 32-bit integer
ess.MLExpansionHistory
ess.MLExpansionHistory_item Item
No value
ess.MLData
ess.MsgSigDigest MsgSigDigest
Byte array
ess.MsgSigDigest
ess.PermissiveTag PermissiveTag
No value
ess.PermissiveTag
ess.Receipt Receipt
No value
ess.Receipt
ess.ReceiptRequest ReceiptRequest
No value
ess.ReceiptRequest
ess.RestrictiveTag RestrictiveTag
No value
ess.RestrictiveTag
ess.SecurityCategories_item Item
No value
ess.SecurityCategory
ess.SigningCertificate SigningCertificate
No value
ess.SigningCertificate
ess.allOrFirstTier allOrFirstTier
Signed 32-bit integer
ess.AllOrFirstTier
ess.attributeFlags attributeFlags
Byte array
ess.BIT_STRING
ess.attributeList attributeList
Unsigned 32-bit integer
ess.SET_OF_SecurityAttribute
ess.attributeList_item Item
Signed 32-bit integer
ess.SecurityAttribute
ess.attributes attributes
Unsigned 32-bit integer
ess.FreeFormField
ess.bitSetAttributes bitSetAttributes
Byte array
ess.BIT_STRING
ess.certHash certHash
Byte array
ess.Hash
ess.certs certs
Unsigned 32-bit integer
ess.SEQUENCE_OF_ESSCertID
ess.certs_item Item
No value
ess.ESSCertID
ess.contentDescription contentDescription
String
ess.UTF8String
ess.contentType contentType
cms.ContentType
ess.expansionTime expansionTime
String
ess.GeneralizedTime
ess.inAdditionTo inAdditionTo
Unsigned 32-bit integer
ess.SEQUENCE_OF_GeneralNames
ess.inAdditionTo_item Item
Unsigned 32-bit integer
x509ce.GeneralNames
ess.insteadOf insteadOf
Unsigned 32-bit integer
ess.SEQUENCE_OF_GeneralNames
ess.insteadOf_item Item
Unsigned 32-bit integer
x509ce.GeneralNames
ess.issuer issuer
Unsigned 32-bit integer
x509ce.GeneralNames
ess.issuerAndSerialNumber issuerAndSerialNumber
No value
cms.IssuerAndSerialNumber
ess.issuerSerial issuerSerial
No value
ess.IssuerSerial
ess.mailListIdentifier mailListIdentifier
Unsigned 32-bit integer
ess.EntityIdentifier
ess.mlReceiptPolicy mlReceiptPolicy
Unsigned 32-bit integer
ess.MLReceiptPolicy
ess.none none
No value
ess.NULL
ess.originatorSignatureValue originatorSignatureValue
Byte array
ess.OCTET_STRING
ess.pString pString
String
ess.PrintableString
ess.policies policies
Unsigned 32-bit integer
ess.SEQUENCE_OF_PolicyInformation
ess.policies_item Item
No value
x509ce.PolicyInformation
ess.privacy_mark privacy-mark
Unsigned 32-bit integer
ess.ESSPrivacyMark
ess.receiptList receiptList
Unsigned 32-bit integer
ess.SEQUENCE_OF_GeneralNames
ess.receiptList_item Item
Unsigned 32-bit integer
x509ce.GeneralNames
ess.receiptsFrom receiptsFrom
Unsigned 32-bit integer
ess.ReceiptsFrom
ess.receiptsTo receiptsTo
Unsigned 32-bit integer
ess.SEQUENCE_OF_GeneralNames
ess.receiptsTo_item Item
Unsigned 32-bit integer
x509ce.GeneralNames
ess.securityAttributes securityAttributes
Unsigned 32-bit integer
ess.SET_OF_SecurityAttribute
ess.securityAttributes_item Item
Signed 32-bit integer
ess.SecurityAttribute
ess.security_categories security-categories
Unsigned 32-bit integer
ess.SecurityCategories
ess.security_classification security-classification
Signed 32-bit integer
ess.SecurityClassification
ess.security_policy_identifier security-policy-identifier
ess.SecurityPolicyIdentifier
ess.serialNumber serialNumber
Signed 32-bit integer
x509af.CertificateSerialNumber
ess.signedContentIdentifier signedContentIdentifier
Byte array
ess.ContentIdentifier
ess.subjectKeyIdentifier subjectKeyIdentifier
Byte array
x509ce.SubjectKeyIdentifier
ess.tagName tagName
ess.OBJECT_IDENTIFIER
ess.type type
ess.T_type
ess.type_OID type
String
Type of Security Category
ess.utf8String utf8String
String
ess.UTF8String
ess.value value
No value
ess.T_value
ess.version version
Signed 32-bit integer
ess.ESSVersion
eap.code Code
Unsigned 8-bit integer
eap.desired_type Desired Auth Type
Unsigned 8-bit integer
eap.ext.vendor_id Vendor Id
Unsigned 16-bit integer
eap.ext.vendor_type Vendor Type
Unsigned 8-bit integer
eap.id Id
Unsigned 8-bit integer
eap.len Length
Unsigned 16-bit integer
eap.type Type
Unsigned 8-bit integer
eaptls.fragment EAP-TLS Fragment
Frame number
EAP-TLS Fragment
eaptls.fragment.error Defragmentation error
Frame number
Defragmentation error due to illegal fragments
eaptls.fragment.multipletails Multiple tail fragments found
Boolean
Several tails were found when defragmenting the packet
eaptls.fragment.overlap Fragment overlap
Boolean
Fragment overlaps with other fragments
eaptls.fragment.overlap.conflict Conflicting data in fragment overlap
Boolean
Overlapping fragments contained conflicting data
eaptls.fragment.toolongfragment Fragment too long
Boolean
Fragment contained data past end of packet
eaptls.fragments EAP-TLS Fragments
No value
EAP-TLS Fragments
erf.eth.off offset
Unsigned 8-bit integer
erf.eth.res1 reserved
Unsigned 8-bit integer
erf.flags flags
Unsigned 8-bit integer
erf.flags.cap capture interface
Unsigned 8-bit integer
erf.flags.dse ds error
Unsigned 8-bit integer
erf.flags.res reserved
Unsigned 8-bit integer
erf.flags.rxe rx error
Unsigned 8-bit integer
erf.flags.trunc truncated
Unsigned 8-bit integer
erf.flags.vlen varying record length
Unsigned 8-bit integer
erf.lctr loss counter
Unsigned 16-bit integer
erf.mcaal2.cid Channel Identification Number
Unsigned 8-bit integer
erf.mcaal2.cn connection number
Unsigned 16-bit integer
erf.mcaal2.crc10 Length error
Unsigned 8-bit integer
erf.mcaal2.hec MAAL error
Unsigned 8-bit integer
erf.mcaal2.lbe first cell received
Unsigned 8-bit integer
erf.mcaal2.mul reserved for type
Unsigned 16-bit integer
erf.mcaal2.port physical port
Unsigned 8-bit integer
erf.mcaal2.res1 reserved for extra connection
Unsigned 16-bit integer
erf.mcaal2.res2 reserved
Unsigned 8-bit integer
erf.mcaal5.cn connection number
Unsigned 16-bit integer
erf.mcaal5.crcck CRC checked
Unsigned 8-bit integer
erf.mcaal5.crce CRC error
Unsigned 8-bit integer
erf.mcaal5.first First record
Unsigned 8-bit integer
erf.mcaal5.lenck Length checked
Unsigned 8-bit integer
erf.mcaal5.lene Length error
Unsigned 8-bit integer
erf.mcaal5.port physical port
Unsigned 8-bit integer
erf.mcaal5.res1 reserved
Unsigned 16-bit integer
erf.mcaal5.res2 reserved
Unsigned 8-bit integer
erf.mcaal5.res3 reserved
Unsigned 8-bit integer
erf.mcatm.cn connection number
Unsigned 16-bit integer
erf.mcatm.crc10 OAM Cell CRC10 Error (not implemented)
Unsigned 8-bit integer
erf.mcatm.first First record
Unsigned 8-bit integer
erf.mcatm.hec HEC corrected
Unsigned 8-bit integer
erf.mcatm.lbe Lost Byte Error
Unsigned 8-bit integer
erf.mcatm.mul multiplexed
Unsigned 16-bit integer
erf.mcatm.oamcell OAM Cell
Unsigned 8-bit integer
erf.mcatm.port physical port
Unsigned 8-bit integer
erf.mcatm.res1 reserved
Unsigned 16-bit integer
erf.mcatm.res2 reserved
Unsigned 8-bit integer
erf.mcatm.res3 reserved
Unsigned 8-bit integer
erf.mchdlc.afe Aborted frame error
Unsigned 8-bit integer
erf.mchdlc.cn connection number
Unsigned 16-bit integer
erf.mchdlc.fcse FCS error
Unsigned 8-bit integer
erf.mchdlc.first First record
Unsigned 8-bit integer
erf.mchdlc.lbe Lost byte error
Unsigned 8-bit integer
erf.mchdlc.lre Long record error
Unsigned 8-bit integer
erf.mchdlc.oe Octet error
Unsigned 8-bit integer
erf.mchdlc.res1 reserved
Unsigned 16-bit integer
erf.mchdlc.res2 reserved
Unsigned 8-bit integer
erf.mchdlc.res3 reserved
Unsigned 8-bit integer
erf.mchdlc.sre Short record error
Unsigned 8-bit integer
erf.mcraw.first First record
Unsigned 8-bit integer
erf.mcraw.int physical interface
Unsigned 8-bit integer
erf.mcraw.lbe Lost byte error
Unsigned 8-bit integer
erf.mcraw.lre Long record error
Unsigned 8-bit integer
erf.mcraw.res1 reserved
Unsigned 8-bit integer
erf.mcraw.res2 reserved
Unsigned 16-bit integer
erf.mcraw.res3 reserved
Unsigned 8-bit integer
erf.mcraw.res4 reserved
Unsigned 8-bit integer
erf.mcraw.res5 reserved
Unsigned 8-bit integer
erf.mcraw.sre Short record error
Unsigned 8-bit integer
erf.mcrawl.cn connection number
Unsigned 8-bit integer
erf.mcrawl.first First record
Unsigned 8-bit integer
erf.mcrawl.lbe Lost byte error
Unsigned 8-bit integer
erf.mcrawl.res1 reserved
Unsigned 16-bit integer
erf.mcrawl.res2 reserved
Unsigned 8-bit integer
erf.mcrawl.res5 reserved
Unsigned 8-bit integer
erf.rlen record length
Unsigned 16-bit integer
erf.ts Timestamp
Unsigned 64-bit integer
erf.type type
Unsigned 8-bit integer
erf.wlen wire length
Unsigned 16-bit integer
edp.checksum EDP checksum
Unsigned 16-bit integer
edp.checksum_bad Bad
Boolean
True: checksum doesn't match packet content; False: matches content or not checked
edp.checksum_good Good
Boolean
True: checksum matches packet content; False: doesn't match content or not checked
edp.display Display
Protocol
Display element
edp.display.string Name
String
MIB II display string
edp.eaps EAPS
Protocol
Ethernet Automatic Protection Switching element
edp.eaps.fail Fail
Unsigned 16-bit integer
Fail timer
edp.eaps.hello Hello
Unsigned 16-bit integer
Hello timer
edp.eaps.helloseq Helloseq
Unsigned 16-bit integer
Hello sequence
edp.eaps.reserved0 Reserved0
Byte array
edp.eaps.reserved1 Reserved1
Byte array
edp.eaps.reserved2 Reserved2
Byte array
edp.eaps.state State
Unsigned 8-bit integer
edp.eaps.sysmac Sys MAC
6-byte Hardware (MAC) Address
System MAC address
edp.eaps.type Type
Unsigned 8-bit integer
edp.eaps.ver Version
Unsigned 8-bit integer
edp.eaps.vlanid Vlan ID
Unsigned 16-bit integer
Control Vlan ID
edp.elrp ELRP
Protocol
Extreme Loop Recognition Protocol element
edp.elrp.unknown Unknown
Byte array
edp.elsm ELSM
Protocol
Extreme Link Status Monitoring element
edp.elsm.type Type
Unsigned 8-bit integer
edp.elsm.unknown Subtype
Unsigned 8-bit integer
edp.esl ESL
Protocol
EAPS shared link
edp.esl.failed1 Failed ID 1
Unsigned 16-bit integer
Failed link ID 1
edp.esl.failed2 Failed ID 2
Unsigned 16-bit integer
Failed link ID 2
edp.esl.linkid1 Link ID 1
Unsigned 16-bit integer
Shared link ID 1
edp.esl.linkid2 Link ID 2
Unsigned 16-bit integer
Shared link ID 2
edp.esl.linklist Link List
Unsigned 16-bit integer
List of Shared Link IDs
edp.esl.numlinks Num Shared Links
Unsigned 16-bit integer
Number of shared links in the network
edp.esl.reserved0 Reserved0
Byte array
edp.esl.reserved1 Reserved1
Byte array
edp.esl.reserved4 Reserved4
Byte array
edp.esl.reserved5 Reserved5
Byte array
edp.esl.rest Rest
Byte array
edp.esl.role Role
Unsigned 8-bit integer
edp.esl.state State
Unsigned 8-bit integer
edp.esl.sysmac Sys MAC
6-byte Hardware (MAC) Address
System MAC address
edp.esl.type Type
Unsigned 8-bit integer
edp.esl.ver Version
Unsigned 8-bit integer
edp.esl.vlanid Vlan ID
Unsigned 16-bit integer
Control Vlan ID
edp.esrp ESRP
Protocol
Extreme Standby Router Protocol element
edp.esrp.group Group
Unsigned 8-bit integer
edp.esrp.hello Hello
Unsigned 16-bit integer
Hello timer
edp.esrp.ports Ports
Unsigned 16-bit integer
Number of active ports
edp.esrp.prio Prio
Unsigned 16-bit integer
edp.esrp.proto Protocol
Unsigned 8-bit integer
edp.esrp.reserved Reserved
Byte array
edp.esrp.state State
Unsigned 16-bit integer
edp.esrp.sysmac Sys MAC
6-byte Hardware (MAC) Address
System MAC address
edp.esrp.virtip VirtIP
IPv4 address
Virtual IP address
edp.info Info
Protocol
Info element
edp.info.port Port
Unsigned 16-bit integer
Originating port #
edp.info.reserved Reserved
Byte array
edp.info.slot Slot
Unsigned 16-bit integer
Originating slot #
edp.info.vchassconn Connections
Byte array
Virtual chassis connections
edp.info.vchassid Virt chassis
Unsigned 16-bit integer
Virtual chassis ID
edp.info.version Version
Unsigned 32-bit integer
Software version
edp.info.version.internal Version (internal)
Unsigned 8-bit integer
Software version (internal)
edp.info.version.major1 Version (major1)
Unsigned 8-bit integer
Software version (major1)
edp.info.version.major2 Version (major2)
Unsigned 8-bit integer
Software version (major2)
edp.info.version.sustaining Version (sustaining)
Unsigned 8-bit integer
Software version (sustaining)
edp.length Data length
Unsigned 16-bit integer
edp.midmac Machine MAC
6-byte Hardware (MAC) Address
edp.midtype Machine ID type
Unsigned 16-bit integer
edp.null End
Protocol
Last element
edp.reserved Reserved
Unsigned 8-bit integer
edp.seqno Sequence number
Unsigned 16-bit integer
edp.tlv.length TLV length
Unsigned 16-bit integer
edp.tlv.marker TLV Marker
Unsigned 8-bit integer
edp.tlv.type TLV type
Unsigned 8-bit integer
edp.unknown Unknown
Protocol
Element unknown to Wireshark
edp.unknown.data Unknown
Byte array
edp.version Version
Unsigned 8-bit integer
edp.vlan Vlan
Protocol
Vlan element
edp.vlan.flags Flags
Unsigned 8-bit integer
edp.vlan.flags.ip Flags-IP
Boolean
Vlan has IP address configured
edp.vlan.flags.reserved Flags-reserved
Unsigned 8-bit integer
edp.vlan.flags.unknown Flags-Unknown
Boolean
edp.vlan.id Vlan ID
Unsigned 16-bit integer
edp.vlan.ip IP addr
IPv4 address
VLAN IP address
edp.vlan.name Name
String
VLAN name
edp.vlan.reserved1 Reserved1
Byte array
edp.vlan.reserved2 Reserved2
Byte array
fcels.alpa AL_PA Map
Byte array
fcels.cbind.addr_mode Addressing Mode
Unsigned 8-bit integer
Addressing Mode
fcels.cbind.dnpname Destination N_Port Port_Name
String
fcels.cbind.handle Connection Handle
Unsigned 16-bit integer
Cbind/Unbind connection handle
fcels.cbind.ifcp_version iFCP version
Unsigned 8-bit integer
Version of iFCP protocol
fcels.cbind.liveness Liveness Test Interval
Unsigned 16-bit integer
Liveness Test Interval in seconds
fcels.cbind.snpname Source N_Port Port_Name
String
fcels.cbind.status Status
Unsigned 16-bit integer
Cbind status
fcels.cbind.userinfo UserInfo
Unsigned 32-bit integer
Userinfo token
fcels.cls.cns Class Supported
Boolean
fcels.cls.nzctl Non-zero CS_CTL
Boolean
fcels.cls.prio Priority
Boolean
fcels.cls.sdr Delivery Mode
Boolean
fcels.cmn.bbb B2B Credit Mgmt
Boolean
fcels.cmn.broadcast Broadcast
Boolean
fcels.cmn.cios Cont. Incr. Offset Supported
Boolean
fcels.cmn.clk Clk Sync
Boolean
fcels.cmn.dhd DHD Capable
Boolean
fcels.cmn.e_d_tov E_D_TOV
Boolean
fcels.cmn.multicast Multicast
Boolean
fcels.cmn.payload Payload Len
Boolean
fcels.cmn.rro RRO Supported
Boolean
fcels.cmn.security Security
Boolean
fcels.cmn.seqcnt SEQCNT
Boolean
fcels.cmn.simplex Simplex
Boolean
fcels.cmn.vvv Valid Vendor Version
Boolean
fcels.edtov E_D_TOV
Unsigned 16-bit integer
fcels.faddr Fabric Address
String
fcels.faildrcvr Failed Receiver AL_PA
Unsigned 8-bit integer
fcels.fcpflags FCP Flags
Unsigned 32-bit integer
fcels.fcpflags.ccomp Comp
Boolean
fcels.fcpflags.datao Data Overlay
Boolean
fcels.fcpflags.initiator Initiator
Boolean
fcels.fcpflags.rdxr Rd Xfer_Rdy Dis
Boolean
fcels.fcpflags.retry Retry
Boolean
fcels.fcpflags.target Target
Boolean
fcels.fcpflags.trirep Task Retry Ident
Boolean
fcels.fcpflags.trireq Task Retry Ident
Boolean
fcels.fcpflags.wrxr Wr Xfer_Rdy Dis
Boolean
fcels.flacompliance FC-FLA Compliance
Unsigned 8-bit integer
fcels.flag Flag
Unsigned 8-bit integer
fcels.fnname Fabric/Node Name
String
fcels.fpname Fabric Port Name
String
fcels.hrdaddr Hard Address of Originator
String
fcels.logi.b2b B2B Credit
Unsigned 8-bit integer
fcels.logi.bbscnum BB_SC Number
Unsigned 8-bit integer
fcels.logi.cls1param Class 1 Svc Param
Byte array
fcels.logi.cls2param Class 2 Svc Param
Byte array
fcels.logi.cls3param Class 3 Svc Param
Byte array
fcels.logi.cls4param Class 4 Svc Param
Byte array
fcels.logi.clsflags Service Options
Unsigned 16-bit integer
fcels.logi.clsrcvsize Class Recv Size
Unsigned 16-bit integer
fcels.logi.cmnfeatures Common Svc Parameters
Unsigned 16-bit integer
fcels.logi.e2e End2End Credit
Unsigned 16-bit integer
fcels.logi.initctl Initiator Ctl
Unsigned 16-bit integer
fcels.logi.initctl.ack0 ACK0 Capable
Boolean
fcels.logi.initctl.ackgaa ACK GAA
Boolean
fcels.logi.initctl.initial_pa Initial P_A
Unsigned 16-bit integer
fcels.logi.initctl.sync Clock Sync
Boolean
fcels.logi.maxconseq Max Concurrent Seq
Unsigned 16-bit integer
fcels.logi.openseq Open Seq Per Exchg
Unsigned 8-bit integer
fcels.logi.rcptctl Recipient Ctl
Unsigned 16-bit integer
fcels.logi.rcptctl.ack ACK0
Boolean
fcels.logi.rcptctl.category Category
Unsigned 16-bit integer
fcels.logi.rcptctl.interlock X_ID Interlock
Boolean
fcels.logi.rcptctl.policy Policy
Unsigned 16-bit integer
fcels.logi.rcptctl.sync Clock Sync
Boolean
fcels.logi.rcvsize Receive Size
Unsigned 16-bit integer
fcels.logi.reloff Relative Offset By Info Cat
Unsigned 16-bit integer
fcels.logi.svcavail Services Availability
Byte array
fcels.logi.totconseq Total Concurrent Seq
Unsigned 8-bit integer
fcels.logi.vendvers Vendor Version
Byte array
fcels.loopstate Loop State
Unsigned 8-bit integer
fcels.matchcp Match Address Code Points
Unsigned 8-bit integer
fcels.npname N_Port Port_Name
String
fcels.opcode Cmd Code
Unsigned 8-bit integer
fcels.oxid OXID
Unsigned 16-bit integer
fcels.portid Originator S_ID
String
fcels.portnum Physical Port Number
Unsigned 32-bit integer
fcels.portstatus Port Status
Unsigned 16-bit integer
fcels.prliloflags PRLILO Flags
Unsigned 8-bit integer
fcels.prliloflags.eip Est Image Pair
Boolean
fcels.prliloflags.ipe Image Pair Estd
Boolean
fcels.prliloflags.opav Orig PA Valid
Boolean
fcels.pubdev_bmap Public Loop Device Bitmap
Byte array
fcels.pvtdev_bmap Private Loop Device Bitmap
Byte array
fcels.rcovqual Recovery Qualifier
Unsigned 8-bit integer
fcels.reqipaddr Requesting IP Address
IPv6 address
fcels.respaction Responder Action
Unsigned 8-bit integer
fcels.respipaddr Responding IP Address
IPv6 address
fcels.respname Responding Port Name
String
fcels.respnname Responding Node Name
String
fcels.resportid Responding Port ID
String
fcels.rjt.detail Reason Explanation
Unsigned 8-bit integer
fcels.rjt.reason Reason Code
Unsigned 8-bit integer
fcels.rjt.vnduniq Vendor Unique
Unsigned 8-bit integer
fcels.rnft.fc4type FC-4 Type
Unsigned 8-bit integer
fcels.rnid.asstype Associated Type
Unsigned 32-bit integer
fcels.rnid.attnodes Number of Attached Nodes
Unsigned 32-bit integer
fcels.rnid.ip IP Address
IPv6 address
fcels.rnid.ipvers IP Version
Unsigned 8-bit integer
fcels.rnid.nodeidfmt Node Identification Format
Unsigned 8-bit integer
fcels.rnid.nodemgmt Node Management
Unsigned 8-bit integer
fcels.rnid.physport Physical Port Number
Unsigned 32-bit integer
fcels.rnid.spidlen Specific Id Length
Unsigned 8-bit integer
fcels.rnid.tcpport TCP/UDP Port Number
Unsigned 16-bit integer
fcels.rnid.vendorsp Vendor Specific
Unsigned 16-bit integer
fcels.rnid.vendoruniq Vendor Unique
Byte array
fcels.rscn.addrfmt Address Format
Unsigned 8-bit integer
fcels.rscn.area Affected Area
Unsigned 8-bit integer
fcels.rscn.domain Affected Domain
Unsigned 8-bit integer
fcels.rscn.evqual Event Qualifier
Unsigned 8-bit integer
fcels.rscn.port Affected Port
Unsigned 8-bit integer
fcels.rxid RXID
Unsigned 16-bit integer
fcels.scr.regn Registration Function
Unsigned 8-bit integer
fcels.speedflags Port Speed Capabilities
Unsigned 16-bit integer
fcels.speedflags.10gb 10Gb Support
Boolean
fcels.speedflags.1gb 1Gb Support
Boolean
fcels.speedflags.2gb 2Gb Support
Boolean
fcels.speedflags.4gb 4Gb Support
Boolean
fcels.tprloflags.gprlo Global PRLO
Boolean
fcels.tprloflags.npv 3rd Party N_Port Valid
Boolean
fcels.tprloflags.opav 3rd Party Orig PA Valid
Boolean
fcels.tprloflags.rpav Resp PA Valid
Boolean
fcels.unbind.status Status
Unsigned 16-bit integer
Unbind status
fcs.err.vendor Vendor Unique Reject Code
Unsigned 8-bit integer
fcs.fcsmask Subtype Capability Bitmask
Unsigned 32-bit integer
fcs.gssubtype Management GS Subtype
Unsigned 8-bit integer
fcs.ie.domainid Interconnect Element Domain ID
Unsigned 8-bit integer
fcs.ie.fname Interconnect Element Fabric Name
String
fcs.ie.logname Interconnect Element Logical Name
String
fcs.ie.mgmtaddr Interconnect Element Mgmt. Address
String
fcs.ie.mgmtid Interconnect Element Mgmt. ID
String
fcs.ie.name Interconnect Element Name
String
fcs.ie.type Interconnect Element Type
Unsigned 8-bit integer
fcs.maxres_size Maximum/Residual Size
Unsigned 16-bit integer
fcs.modelname Model Name/Number
String
fcs.numcap Number of Capabilities
Unsigned 32-bit integer
fcs.opcode Opcode
Unsigned 16-bit integer
fcs.platform.mgmtaddr Management Address
String
fcs.platform.name Platform Name
Byte array
fcs.platform.nodename Platform Node Name
String
fcs.platform.type Platform Type
Unsigned 8-bit integer
fcs.port.flags Port Flags
Boolean
fcs.port.moduletype Port Module Type
Unsigned 8-bit integer
fcs.port.name Port Name
String
fcs.port.physportnum Physical Port Number
Byte array
fcs.port.state Port State
Unsigned 8-bit integer
fcs.port.txtype Port TX Type
Unsigned 8-bit integer
fcs.port.type Port Type
Unsigned 8-bit integer
fcs.reason Reason Code
Unsigned 8-bit integer
fcs.reasondet Reason Code Explanantion
Unsigned 8-bit integer
fcs.releasecode Release Code
String
fcs.unsmask Subtype Capability Bitmask
Unsigned 32-bit integer
fcs.vbitmask Vendor Unique Capability Bitmask
Unsigned 24-bit integer
fcs.vendorname Vendor Name
String
fcip.conncode Connection Usage Code
Unsigned 16-bit integer
fcip.connflags Connection Usage Flags
Unsigned 8-bit integer
fcip.dstwwn Destination Fabric WWN
String
fcip.encap_crc CRC
Unsigned 32-bit integer
fcip.encap_word1 FCIP Encapsulation Word1
Unsigned 32-bit integer
fcip.eof EOF
Unsigned 8-bit integer
fcip.eofc EOF (1's Complement)
Unsigned 8-bit integer
fcip.flags Flags
Unsigned 8-bit integer
fcip.flagsc Flags (1's Complement)
Unsigned 8-bit integer
fcip.framelen Frame Length (in Words)
Unsigned 16-bit integer
fcip.framelenc Frame Length (1's Complement)
Unsigned 16-bit integer
fcip.katov K_A_TOV
Unsigned 32-bit integer
fcip.nonce Connection Nonce
Byte array
fcip.pflags.ch Changed Flag
Boolean
fcip.pflags.sf Special Frame Flag
Boolean
fcip.pflagsc Pflags (1's Complement)
Unsigned 8-bit integer
fcip.proto Protocol
Unsigned 8-bit integer
Protocol
fcip.protoc Protocol (1's Complement)
Unsigned 8-bit integer
Protocol (1's Complement)
fcip.sof SOF
Unsigned 8-bit integer
fcip.sofc SOF (1's Complement)
Unsigned 8-bit integer
fcip.srcid FC/FCIP Entity Id
Byte array
fcip.srcwwn Source Fabric WWN
String
fcip.tsec Time (secs)
Unsigned 32-bit integer
fcip.tusec Time (fraction)
Unsigned 32-bit integer
fcip.version Version
Unsigned 8-bit integer
fcip.versionc Version (1's Complement)
Unsigned 8-bit integer
ff.fda FDA Session Management Service
Boolean
ff.fda.idle FDA Idle
Boolean
ff.fda.idle.err FDA Idle Error
Boolean
ff.fda.idle.err.additional_code Additional Code
Signed 16-bit integer
ff.fda.idle.err.additional_desc Additional Description
String
ff.fda.idle.err.err_class Error Class
Unsigned 8-bit integer
ff.fda.idle.err.err_code Error Code
Unsigned 8-bit integer
ff.fda.idle.req FDA Idle Request
Boolean
ff.fda.idle.rsp FDA Idle Response
Boolean
ff.fda.open_sess FDA Open Session
Boolean
ff.fda.open_sess.err FDA Open Session Error
Boolean
ff.fda.open_sess.err.additional_code Additional Code
Signed 16-bit integer
ff.fda.open_sess.err.additional_desc Additional Description
String
ff.fda.open_sess.err.err_class Error Class
Unsigned 8-bit integer
ff.fda.open_sess.err.err_code Error Code
Unsigned 8-bit integer
ff.fda.open_sess.req FDA Open Session Request
Boolean
ff.fda.open_sess.req.inactivity_close_time Inactivity Close Time
Unsigned 16-bit integer
ff.fda.open_sess.req.max_buf_siz Max Buffer Size
Unsigned 32-bit integer
ff.fda.open_sess.req.max_msg_len Max Message Length
Unsigned 32-bit integer
ff.fda.open_sess.req.nma_conf_use NMA Configuration Use
Unsigned 8-bit integer
ff.fda.open_sess.req.pd_tag PD Tag
String
ff.fda.open_sess.req.reserved Reserved
Unsigned 8-bit integer
ff.fda.open_sess.req.sess_idx Session Index
Unsigned 32-bit integer
ff.fda.open_sess.req.transmit_delay_time Transmit Delay Time
Unsigned 32-bit integer
ff.fda.open_sess.rsp FDA Open Session Response
Boolean
ff.fda.open_sess.rsp.inactivity_close_time Inactivity Close Time
Unsigned 16-bit integer
ff.fda.open_sess.rsp.max_buf_siz Max Buffer Size
Unsigned 32-bit integer
ff.fda.open_sess.rsp.max_msg_len Max Message Length
Unsigned 32-bit integer
ff.fda.open_sess.rsp.nma_conf_use NMA Configuration Use
Unsigned 8-bit integer
ff.fda.open_sess.rsp.pd_tag PD Tag
String
ff.fda.open_sess.rsp.reserved Reserved
Unsigned 8-bit integer
ff.fda.open_sess.rsp.sess_idx Session Index
Unsigned 32-bit integer
ff.fda.open_sess.rsp.transmit_delay_time Transmit Delay Time
Unsigned 32-bit integer
ff.fms FMS Service
Boolean
ff.fms.abort FMS Abort
Boolean
ff.fms.abort.req FMS Abort Request
Boolean
ff.fms.abort.req.abort_id Abort Identifier
Unsigned 8-bit integer
ff.fms.abort.req.reason_code Reason Code
Unsigned 8-bit integer
ff.fms.abort.req.reserved Reserved
Unsigned 16-bit integer
ff.fms.ack_ev_notification FMS Acknowledge Event Notification
Boolean
ff.fms.ack_ev_notification.err FMS Acknowledge Event Notification Error
Boolean
ff.fms.ack_ev_notification.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.ack_ev_notification.err.additional_desc Additional Description
String
ff.fms.ack_ev_notification.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.ack_ev_notification.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.ack_ev_notification.req FMS Acknowledge Event Notification Request
Boolean
ff.fms.ack_ev_notification.req.ev_num Event Number
Unsigned 32-bit integer
ff.fms.ack_ev_notification.req.idx Index
Unsigned 32-bit integer
ff.fms.ack_ev_notification.rsp FMS Acknowledge Event Notification Response
Boolean
ff.fms.alter_ev_condition_monitoring FMS Alter Event Condition Monitoring
Boolean
ff.fms.alter_ev_condition_monitoring.err FMS Alter Event Condition Monitoring Error
Boolean
ff.fms.alter_ev_condition_monitoring.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.alter_ev_condition_monitoring.err.additional_desc Additional Description
String
ff.fms.alter_ev_condition_monitoring.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.alter_ev_condition_monitoring.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.alter_ev_condition_monitoring.req FMS Alter Event Condition Monitoring Request
Boolean
ff.fms.alter_ev_condition_monitoring.req.enabled Enabled
Unsigned 8-bit integer
ff.fms.alter_ev_condition_monitoring.req.idx Index
Unsigned 32-bit integer
ff.fms.alter_ev_condition_monitoring.rsp FMS Alter Event Condition Monitoring Response
Boolean
ff.fms.create_pi FMS Create Program Invocation
Boolean
ff.fms.create_pi.err FMS Create Program Invocation Error
Boolean
ff.fms.create_pi.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.create_pi.err.additional_desc Additional Description
String
ff.fms.create_pi.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.create_pi.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.create_pi.req FMS Create Program Invocation Request
Boolean
ff.fms.create_pi.req.list_of_dom_idxes.dom_idx Domain Index
Unsigned 32-bit integer
ff.fms.create_pi.req.num_of_dom_idxes Number of Domain Indexes
Unsigned 16-bit integer
ff.fms.create_pi.req.reserved Reserved
Unsigned 8-bit integer
ff.fms.create_pi.req.reusable Reusable
Unsigned 8-bit integer
ff.fms.create_pi.rsp FMS Create Program Invocation Response
Boolean
ff.fms.create_pi.rsp.idx Index
Unsigned 32-bit integer
ff.fms.def_variable_list FMS Define Variable List
Boolean
ff.fms.def_variable_list.err FMS Define Variable List Error
Boolean
ff.fms.def_variable_list.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.def_variable_list.err.additional_desc Additional Description
String
ff.fms.def_variable_list.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.def_variable_list.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.def_variable_list.req FMS Define Variable List Request
Boolean
ff.fms.def_variable_list.req.idx Index
Unsigned 32-bit integer
ff.fms.def_variable_list.req.num_of_idxes Number of Indexes
Unsigned 32-bit integer
ff.fms.def_variable_list.rsp FMS Define Variable List Response
Boolean
ff.fms.def_variable_list.rsp.idx Index
Unsigned 32-bit integer
ff.fms.del_pi FMS Delete Program Invocation
Boolean
ff.fms.del_pi.err FMS Delete Program Invocation Error
Boolean
ff.fms.del_pi.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.del_pi.err.additional_desc Additional Description
String
ff.fms.del_pi.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.del_pi.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.del_pi.req FMS Delete Program Invocation Request
Boolean
ff.fms.del_pi.req.idx Index
Unsigned 32-bit integer
ff.fms.del_pi.rsp FMS Delete Program Invocation Response
Boolean
ff.fms.del_variable_list FMS Delete Variable List
Boolean
ff.fms.del_variable_list.err FMS Delete Variable List Error
Boolean
ff.fms.del_variable_list.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.del_variable_list.err.additional_desc Additional Description
String
ff.fms.del_variable_list.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.del_variable_list.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.del_variable_list.req FMS Delete Variable List Request
Boolean
ff.fms.del_variable_list.req.idx Index
Unsigned 32-bit integer
ff.fms.del_variable_list.rsp FMS Delete Variable List Response
Boolean
ff.fms.download_seg FMS Download Segment
Boolean
ff.fms.download_seg.err FMS Download Segment Error
Boolean
ff.fms.download_seg.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.download_seg.err.additional_desc Additional Description
String
ff.fms.download_seg.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.download_seg.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.download_seg.req FMS Download Segment Request
Boolean
ff.fms.download_seg.req.idx Index
Unsigned 8-bit integer
ff.fms.download_seg.rsp FMS Download Segment Response
Boolean
ff.fms.download_seg.rsp.more_follows Final Result
Unsigned 8-bit integer
ff.fms.ev_notification FMS Event Notification
Boolean
ff.fms.ev_notification.req FMS Event Notification Request
Boolean
ff.fms.ev_notification.req.ev_num Event Number
Unsigned 32-bit integer
ff.fms.ev_notification.req.idx Index
Unsigned 32-bit integer
ff.fms.gen_download_seg FMS Generic Download Segment
Boolean
ff.fms.gen_download_seg.err FMS Generic Download Segment Error
Boolean
ff.fms.gen_download_seg.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.gen_download_seg.err.additional_desc Additional Description
String
ff.fms.gen_download_seg.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.gen_download_seg.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.gen_download_seg.req FMS Generic Download Segment Request
Boolean
ff.fms.gen_download_seg.req.idx Index
Unsigned 8-bit integer
ff.fms.gen_download_seg.req.more_follows More Follows
Unsigned 8-bit integer
ff.fms.gen_download_seg.rsp FMS Generic Download Segment Response
Boolean
ff.fms.gen_init_download_seq FMS Generic Initiate Download Sequence
Boolean
ff.fms.gen_init_download_seq.err FMS Generic Initiate Download Sequence Error
Boolean
ff.fms.gen_init_download_seq.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.gen_init_download_seq.err.additional_desc Additional Description
String
ff.fms.gen_init_download_seq.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.gen_init_download_seq.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.gen_init_download_seq.req FMS Generic Initiate Download Sequence Request
Boolean
ff.fms.gen_init_download_seq.req.idx Index
Unsigned 16-bit integer
ff.fms.gen_init_download_seq.rsp FMS Generic Initiate Download Sequence Response
Boolean
ff.fms.gen_terminate_download_seq FMS Generic Terminate Download Sequence
Boolean
ff.fms.gen_terminate_download_seq.err FMS Generic Terminate Download Sequence Error
Boolean
ff.fms.gen_terminate_download_seq.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.gen_terminate_download_seq.err.additional_desc Additional Description
String
ff.fms.gen_terminate_download_seq.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.gen_terminate_download_seq.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.gen_terminate_download_seq.req FMS Generic Terminate Download Sequence Request
Boolean
ff.fms.gen_terminate_download_seq.req.idx Index
Unsigned 8-bit integer
ff.fms.gen_terminate_download_seq.rsp FMS Generic Terminate Download Sequence Response
Boolean
ff.fms.gen_terminate_download_seq.rsp.final_result Final Result
Unsigned 8-bit integer
ff.fms.get_od FMS Get OD
Boolean
ff.fms.get_od.err FMS Get OD Error
Boolean
ff.fms.get_od.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.get_od.err.additional_desc Additional Description
String
ff.fms.get_od.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.get_od.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.get_od.req FMS Get OD Request
Boolean
ff.fms.get_od.req.all_attrs All Attributes
Unsigned 8-bit integer
ff.fms.get_od.req.idx Index
Unsigned 32-bit integer
ff.fms.get_od.req.reserved Reserved
Unsigned 16-bit integer
ff.fms.get_od.req.start_idx_flag Start Index Flag
Unsigned 8-bit integer
ff.fms.get_od.rsp FMS Get OD Response
Boolean
ff.fms.get_od.rsp.more_follows More Follows
Unsigned 8-bit integer
ff.fms.get_od.rsp.num_of_obj_desc Number of Object Descriptions
Unsigned 8-bit integer
ff.fms.get_od.rsp.reserved Reserved
Unsigned 16-bit integer
ff.fms.id FMS Identify
Boolean
ff.fms.id.err FMS Identify Error
Boolean
ff.fms.id.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.id.err.additional_desc Additional Description
String
ff.fms.id.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.id.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.id.req FMS Identify Request
Boolean
ff.fms.id.rsp FMS Identify Response
Boolean
ff.fms.id.rsp.model_name Model Name
String
ff.fms.id.rsp.revision Revision
String
ff.fms.id.rsp.vendor_name Vendor Name
String
ff.fms.info_report FMS Information Report
Boolean
ff.fms.info_report.req FMS Information Report Request
Boolean
ff.fms.info_report.req.idx Index
Unsigned 32-bit integer
ff.fms.info_report_on_change FMS Information Report On Change with Subindex
Boolean
ff.fms.info_report_on_change.req FMS Information Report On Change with Subindex Request
Boolean
ff.fms.info_report_on_change.req.idx Index
Unsigned 32-bit integer
ff.fms.info_report_on_change_with_subidx FMS Information Report On Change
Boolean
ff.fms.info_report_on_change_with_subidx.req FMS Information Report On Change Request
Boolean
ff.fms.info_report_on_change_with_subidx.req.idx Index
Unsigned 32-bit integer
ff.fms.info_report_on_change_with_subidx.req.subidx Subindex
Unsigned 32-bit integer
ff.fms.info_report_with_subidx FMS Information Report with Subindex
Boolean
ff.fms.info_report_with_subidx.req FMS Information Report with Subindex Request
Boolean
ff.fms.info_report_with_subidx.req.idx Index
Unsigned 32-bit integer
ff.fms.info_report_with_subidx.req.subidx Subindex
Unsigned 32-bit integer
ff.fms.init FMS Initiate
Boolean
ff.fms.init.err FMS Initiate Error
Boolean
ff.fms.init.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.init.err.additional_desc Additional Description
String
ff.fms.init.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.init.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.init.req FMS Initiate Request
Boolean
ff.fms.init.req.access_protection_supported_calling Access Protection Supported Calling
Unsigned 8-bit integer
ff.fms.init.req.conn_opt Connect Option
Unsigned 8-bit integer
ff.fms.init.req.passwd_and_access_grps_calling Password and Access Groups Calling
Unsigned 16-bit integer
ff.fms.init.req.pd_tag PD Tag
String
ff.fms.init.req.prof_num_calling Profile Number Calling
Unsigned 16-bit integer
ff.fms.init.req.ver_od_calling Version OD Calling
Signed 16-bit integer
ff.fms.init.rsp FMS Initiate Response
Boolean
ff.fms.init.rsp.prof_num_called Profile Number Called
Unsigned 16-bit integer
ff.fms.init.rsp.ver_od_called Version OD Called
Signed 16-bit integer
ff.fms.init_download_seq FMS Initiate Download Sequence
Boolean
ff.fms.init_download_seq.err FMS Initiate Download Sequence Error
Boolean
ff.fms.init_download_seq.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.init_download_seq.err.additional_desc Additional Description
String
ff.fms.init_download_seq.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.init_download_seq.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.init_download_seq.req FMS Initiate Download Sequence Request
Boolean
ff.fms.init_download_seq.req.idx Index
Unsigned 8-bit integer
ff.fms.init_download_seq.rsp FMS Initiate Download Sequence Response
Boolean
ff.fms.init_put_od FMS Initiate Put OD
Boolean
ff.fms.init_put_od.err FMS Initiate Put OD Error
Boolean
ff.fms.init_put_od.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.init_put_od.err.additional_desc Additional Description
String
ff.fms.init_put_od.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.init_put_od.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.init_put_od.req FMS Initiate Put OD Request
Boolean
ff.fms.init_put_od.req.consequence Consequence
Unsigned 16-bit integer
ff.fms.init_put_od.req.reserved Reserved
Unsigned 16-bit integer
ff.fms.init_put_od.rsp FMS Initiate Put OD Response
Boolean
ff.fms.init_upload_seq FMS Initiate Upload Sequence
Boolean
ff.fms.init_upload_seq.err FMS Initiate Upload Sequence Error
Boolean
ff.fms.init_upload_seq.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.init_upload_seq.err.additional_desc Additional Description
String
ff.fms.init_upload_seq.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.init_upload_seq.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.init_upload_seq.req FMS Initiate Upload Sequence Request
Boolean
ff.fms.init_upload_seq.req.idx Index
Unsigned 32-bit integer
ff.fms.init_upload_seq.rsp FMS Initiate Upload Sequence Response
Boolean
ff.fms.kill FMS Kill
Boolean
ff.fms.kill.err FMS Kill Error
Boolean
ff.fms.kill.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.kill.err.additional_desc Additional Description
String
ff.fms.kill.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.kill.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.kill.req FMS Kill Request
Boolean
ff.fms.kill.req.idx Index
Unsigned 32-bit integer
ff.fms.kill.rsp FMS Kill Response
Boolean
ff.fms.put_od FMS Put OD
Boolean
ff.fms.put_od.err FMS Put OD Error
Boolean
ff.fms.put_od.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.put_od.err.additional_desc Additional Description
String
ff.fms.put_od.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.put_od.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.put_od.req FMS Put OD Request
Boolean
ff.fms.put_od.req.num_of_obj_desc Number of Object Descriptions
Unsigned 8-bit integer
ff.fms.put_od.rsp FMS Put OD Response
Boolean
ff.fms.read FMS Read
Boolean
ff.fms.read.err FMS Read Error
Boolean
ff.fms.read.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.read.err.additional_desc Additional Description
String
ff.fms.read.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.read.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.read.req FMS Read Request
Boolean
ff.fms.read.req.idx Index
Unsigned 32-bit integer
ff.fms.read.rsp FMS Read Response
Boolean
ff.fms.read_with_subidx FMS Read with Subindex
Boolean
ff.fms.read_with_subidx.err FMS Read with Subindex Error
Boolean
ff.fms.read_with_subidx.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.read_with_subidx.err.additional_desc Additional Description
String
ff.fms.read_with_subidx.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.read_with_subidx.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.read_with_subidx.req FMS Read with Subindex Request
Boolean
ff.fms.read_with_subidx.req.idx Index
Unsigned 32-bit integer
ff.fms.read_with_subidx.req.subidx Index
Unsigned 32-bit integer
ff.fms.read_with_subidx.rsp FMS Read with Subindex Response
Boolean
ff.fms.req_dom_download FMS Request Domain Download
Boolean
ff.fms.req_dom_download.err FMS Request Domain Download Error
Boolean
ff.fms.req_dom_download.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.req_dom_download.err.additional_desc Additional Description
String
ff.fms.req_dom_download.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.req_dom_download.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.req_dom_download.req FMS Request Domain Download Request
Boolean
ff.fms.req_dom_download.req.additional_info Additional Description
String
ff.fms.req_dom_download.req.idx Index
Unsigned 32-bit integer
ff.fms.req_dom_download.rsp FMS Request Domain Download Response
Boolean
ff.fms.req_dom_upload FMS Request Domain Upload
Boolean
ff.fms.req_dom_upload.err FMS Request Domain Upload Error
Boolean
ff.fms.req_dom_upload.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.req_dom_upload.err.additional_desc Additional Description
String
ff.fms.req_dom_upload.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.req_dom_upload.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.req_dom_upload.req FMS Request Domain Upload Request
Boolean
ff.fms.req_dom_upload.req.additional_info Additional Description
String
ff.fms.req_dom_upload.req.idx Index
Unsigned 32-bit integer
ff.fms.req_dom_upload.rsp FMS Request Domain Upload Response
Boolean
ff.fms.reset FMS Reset
Boolean
ff.fms.reset.err FMS Reset Error
Boolean
ff.fms.reset.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.reset.err.additional_desc Additional Description
String
ff.fms.reset.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.reset.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.reset.err.pi_state Pi State
Unsigned 8-bit integer
ff.fms.reset.req FMS Reset Request
Boolean
ff.fms.reset.req.idx Index
Unsigned 32-bit integer
ff.fms.reset.rsp FMS Reset Response
Boolean
ff.fms.resume FMS Resume
Boolean
ff.fms.resume.err FMS Resume Error
Boolean
ff.fms.resume.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.resume.err.additional_desc Additional Description
String
ff.fms.resume.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.resume.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.resume.err.pi_state Pi State
Unsigned 8-bit integer
ff.fms.resume.req FMS Resume Request
Boolean
ff.fms.resume.req.idx Index
Unsigned 32-bit integer
ff.fms.resume.rsp FMS Resume Response
Boolean
ff.fms.start FMS Start
Boolean
ff.fms.start.err FMS Start Error
Boolean
ff.fms.start.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.start.err.additional_desc Additional Description
String
ff.fms.start.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.start.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.start.err.pi_state Pi State
Unsigned 8-bit integer
ff.fms.start.req FMS Start Request
Boolean
ff.fms.start.req.idx Index
Unsigned 32-bit integer
ff.fms.start.rsp FMS Start Response
Boolean
ff.fms.status FMS Status
Boolean
ff.fms.status.err FMS Status Error
Boolean
ff.fms.status.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.status.err.additional_desc Additional Description
String
ff.fms.status.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.status.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.status.req FMS Status Request
Boolean
ff.fms.status.rsp FMS Status Response
Boolean
ff.fms.status.rsp.logical_status Logical Status
Unsigned 8-bit integer
ff.fms.status.rsp.physical_status Physical Status
Unsigned 8-bit integer
ff.fms.status.rsp.reserved Reserved
Unsigned 16-bit integer
ff.fms.stop FMS Stop
Boolean
ff.fms.stop.err FMS Stop Error
Boolean
ff.fms.stop.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.stop.err.additional_desc Additional Description
String
ff.fms.stop.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.stop.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.stop.err.pi_state Pi State
Unsigned 8-bit integer
ff.fms.stop.req FMS Stop Request
Boolean
ff.fms.stop.req.idx Index
Unsigned 32-bit integer
ff.fms.stop.rsp FMS Stop Response
Boolean
ff.fms.terminate_download_seq FMS Terminate Download Sequence
Boolean
ff.fms.terminate_download_seq.err FMS Terminate Download Sequence Error
Boolean
ff.fms.terminate_download_seq.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.terminate_download_seq.err.additional_desc Additional Description
String
ff.fms.terminate_download_seq.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.terminate_download_seq.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.terminate_download_seq.req FMS Terminate Download Sequence Request
Boolean
ff.fms.terminate_download_seq.req.final_result Final Result
Unsigned 32-bit integer
ff.fms.terminate_download_seq.req.idx Index
Unsigned 32-bit integer
ff.fms.terminate_download_seq.rsp FMS Terminate Download Sequence Response
Boolean
ff.fms.terminate_put_od FMS Terminate Put OD
Boolean
ff.fms.terminate_put_od.err FMS Terminate Put OD Error
Boolean
ff.fms.terminate_put_od.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.terminate_put_od.err.additional_desc Additional Description
String
ff.fms.terminate_put_od.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.terminate_put_od.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.terminate_put_od.err.index Index
Unsigned 32-bit integer
ff.fms.terminate_put_od.req FMS Terminate Put OD Request
Boolean
ff.fms.terminate_put_od.rsp FMS Terminate Put OD Response
Boolean
ff.fms.terminate_upload_seq FMS Terminate Upload Sequence
Boolean
ff.fms.terminate_upload_seq.err FMS Terminate Upload Sequence Error
Boolean
ff.fms.terminate_upload_seq.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.terminate_upload_seq.err.additional_desc Additional Description
String
ff.fms.terminate_upload_seq.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.terminate_upload_seq.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.terminate_upload_seq.req FMS Terminate Upload Sequence Request
Boolean
ff.fms.terminate_upload_seq.req.idx Index
Unsigned 32-bit integer
ff.fms.terminate_upload_seq.rsp FMS Terminate Upload Sequence Response
Boolean
ff.fms.unsolicited_status FMS Unsolicited Status
Boolean
ff.fms.unsolicited_status.req FMS Unsolicited Status Request
Boolean
ff.fms.unsolicited_status.req.logical_status Logical Status
Unsigned 8-bit integer
ff.fms.unsolicited_status.req.physical_status Physical Status
Unsigned 8-bit integer
ff.fms.unsolicited_status.req.reserved Reserved
Unsigned 16-bit integer
ff.fms.upload_seg FMS Upload Segment
Boolean
ff.fms.upload_seg.err FMS Upload Segment Error
Boolean
ff.fms.upload_seg.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.upload_seg.err.additional_desc Additional Description
String
ff.fms.upload_seg.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.upload_seg.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.upload_seg.req FMS Upload Segment Request
Boolean
ff.fms.upload_seg.req.idx Index
Unsigned 32-bit integer
ff.fms.upload_seg.rsp FMS Upload Segment Response
Boolean
ff.fms.upload_seg.rsp.more_follows More Follows
Unsigned 32-bit integer
ff.fms.write FMS Write
Boolean
ff.fms.write.err FMS Write Error
Boolean
ff.fms.write.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.write.err.additional_desc Additional Description
String
ff.fms.write.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.write.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.write.req FMS Write Request
Boolean
ff.fms.write.req.idx Index
Unsigned 32-bit integer
ff.fms.write.rsp FMS Write Response
Boolean
ff.fms.write_with_subidx FMS Write with Subindex
Boolean
ff.fms.write_with_subidx.err FMS Write with Subindex Error
Boolean
ff.fms.write_with_subidx.err.additional_code Additional Code
Signed 16-bit integer
ff.fms.write_with_subidx.err.additional_desc Additional Description
String
ff.fms.write_with_subidx.err.err_class Error Class
Unsigned 8-bit integer
ff.fms.write_with_subidx.err.err_code Error Code
Unsigned 8-bit integer
ff.fms.write_with_subidx.req FMS Write with Subindex Request
Boolean
ff.fms.write_with_subidx.req.idx Index
Unsigned 32-bit integer
ff.fms.write_with_subidx.req.subidx Index
Unsigned 32-bit integer
ff.fms.write_with_subidx.rsp FMS Write with Subindex Response
Boolean
ff.hdr Message Header
Boolean
ff.hdr.fda_addr FDA Address
Unsigned 32-bit integer
ff.hdr.len Message Length
Unsigned 32-bit integer
ff.hdr.ver FDA Message Version
Unsigned 8-bit integer
ff.lr LAN Redundancy Service
Boolean
ff.lr.diagnostic_msg.req.dev_idx Device Index
Unsigned 16-bit integer
ff.lr.diagnostic_msg.req.diagnostic_msg_intvl Diagnostic Message Interval
Unsigned 32-bit integer
ff.lr.diagnostic_msg.req.if_a_to_a_status Interface AtoA Status
Unsigned 32-bit integer
ff.lr.diagnostic_msg.req.if_a_to_b_status Interface AtoB Status
Unsigned 32-bit integer
ff.lr.diagnostic_msg.req.if_b_to_a_status Interface BtoA Status
Unsigned 32-bit integer
ff.lr.diagnostic_msg.req.if_b_to_b_status Interface BtoB Status
Unsigned 32-bit integer
ff.lr.diagnostic_msg.req.num_of_if_statuses Number of Interface Statuses
Unsigned 32-bit integer
ff.lr.diagnostic_msg.req.num_of_network_ifs Number of Network Interfaces
Unsigned 8-bit integer
ff.lr.diagnostic_msg.req.pd_tag PD Tag
String
ff.lr.diagnostic_msg.req.reserved Reserved
Unsigned 8-bit integer
ff.lr.diagnostic_msg.req.transmission_if Transmission Interface
Unsigned 8-bit integer
ff.lr.get_info.err.additional_code Additional Code
Signed 16-bit integer
ff.lr.get_info.err.additional_desc Additional Description
String
ff.lr.get_info.err.err_class Error Class
Unsigned 8-bit integer
ff.lr.get_info.err.err_code Error Code
Unsigned 8-bit integer
ff.lr.get_info.rsp.aging_time Aging Time
Unsigned 32-bit integer
ff.lr.get_info.rsp.diagnostic_msg_if_a_recv_addr Diagnostic Message Interface A Receive Address
IPv6 address
ff.lr.get_info.rsp.diagnostic_msg_if_a_send_addr Diagnostic Message Interface A Send Address
IPv6 address
ff.lr.get_info.rsp.diagnostic_msg_if_b_recv_addr Diagnostic Message Interface B Receive Address
IPv6 address
ff.lr.get_info.rsp.diagnostic_msg_if_b_send_addr Diagnostic Message Interface B Send Address
IPv6 address
ff.lr.get_info.rsp.diagnostic_msg_intvl Diagnostic Message Interval
Unsigned 32-bit integer
ff.lr.get_info.rsp.lr_attrs_ver LAN Redundancy Attributes Version
Unsigned 32-bit integer
ff.lr.get_info.rsp.max_msg_num_diff Max Message Number Difference
Unsigned 8-bit integer
ff.lr.get_info.rsp.reserved Reserved
Unsigned 16-bit integer
ff.lr.get_statistics.err.additional_code Additional Code
Signed 16-bit integer
ff.lr.get_statistics.err.additional_desc Additional Description
String
ff.lr.get_statistics.err.err_class Error Class
Unsigned 8-bit integer
ff.lr.get_statistics.err.err_code Error Code
Unsigned 8-bit integer
ff.lr.get_statistics.rsp.num_diag_svr_ind_miss_a Error Code
Unsigned 32-bit integer
ff.lr.get_statistics.rsp.num_diag_svr_ind_miss_b Error Code
Unsigned 32-bit integer
ff.lr.get_statistics.rsp.num_diag_svr_ind_recv_a Error Code
Unsigned 32-bit integer
ff.lr.get_statistics.rsp.num_diag_svr_ind_recv_b Error Code
Unsigned 32-bit integer
ff.lr.get_statistics.rsp.num_rem_dev_diag_recv_fault_a Error Code
Unsigned 32-bit integer
ff.lr.get_statistics.rsp.num_rem_dev_diag_recv_fault_b Error Code
Unsigned 32-bit integer
ff.lr.get_statistics.rsp.num_x_cable_stat Error Code
Unsigned 32-bit integer
ff.lr.get_statistics.rsp.x_cable_stat Error Code
Unsigned 32-bit integer
ff.lr.lr.diagnostic_msg Diagnostic Message
Boolean
ff.lr.lr.get_info LAN Redundancy Get Information
Boolean
ff.lr.lr.get_info.err LAN Redundancy Get Information Error
Boolean
ff.lr.lr.get_info.req LAN Redundancy Get Information Request
Boolean
ff.lr.lr.get_info.rsp LAN Redundancy Get Information Response
Boolean
ff.lr.lr.get_statistics LAN Redundancy Get Statistics
Boolean
ff.lr.lr.get_statistics.err LAN Redundancy Get Statistics Error
Boolean
ff.lr.lr.get_statistics.req LAN Redundancy Get Statistics Request
Boolean
ff.lr.lr.get_statistics.rsp LAN Redundancy Get Statistics Response
Boolean
ff.lr.lr.put_info LAN Redundancy Put Information
Boolean
ff.lr.lr.put_info.err LAN Redundancy Put Information Error
Boolean
ff.lr.lr.put_info.req LAN Redundancy Put Information Request
Boolean
ff.lr.lr.put_info.rsp LAN Redundancy Put Information Response
Boolean
ff.lr.put_info.err.additional_code Additional Code
Signed 16-bit integer
ff.lr.put_info.err.additional_desc Additional Description
String
ff.lr.put_info.err.err_class Error Class
Unsigned 8-bit integer
ff.lr.put_info.err.err_code Error Code
Unsigned 8-bit integer
ff.lr.put_info.req.aging_time Aging Time
Unsigned 32-bit integer
ff.lr.put_info.req.diagnostic_msg_if_a_recv_addr Diagnostic Message Interface A Receive Address
IPv6 address
ff.lr.put_info.req.diagnostic_msg_if_a_send_addr Diagnostic Message Interface A Send Address
IPv6 address
ff.lr.put_info.req.diagnostic_msg_if_b_recv_addr Diagnostic Message Interface B Receive Address
IPv6 address
ff.lr.put_info.req.diagnostic_msg_if_b_send_addr Diagnostic Message Interface B Send Address
IPv6 address
ff.lr.put_info.req.diagnostic_msg_intvl Diagnostic Message Interval
Unsigned 32-bit integer
ff.lr.put_info.req.lr_attrs_ver LAN Redundancy Attributes Version
Unsigned 32-bit integer
ff.lr.put_info.req.max_msg_num_diff Max Message Number Difference
Unsigned 8-bit integer
ff.lr.put_info.req.reserved Reserved
Unsigned 16-bit integer
ff.lr.put_info.rsp.aging_time Aging Time
Unsigned 32-bit integer
ff.lr.put_info.rsp.diagnostic_msg_if_a_recv_addr Diagnostic Message Interface A Receive Address
IPv6 address
ff.lr.put_info.rsp.diagnostic_msg_if_a_send_addr Diagnostic Message Interface A Send Address
IPv6 address
ff.lr.put_info.rsp.diagnostic_msg_if_b_recv_addr Diagnostic Message Interface B Receive Address
IPv6 address
ff.lr.put_info.rsp.diagnostic_msg_if_b_send_addr Diagnostic Message Interface B Send Address
IPv6 address
ff.lr.put_info.rsp.diagnostic_msg_intvl Diagnostic Message Interval
Unsigned 32-bit integer
ff.lr.put_info.rsp.lr_attrs_ver LAN Redundancy Attributes Version
Unsigned 32-bit integer
ff.lr.put_info.rsp.max_msg_num_diff Max Message Number Difference
Unsigned 8-bit integer
ff.lr.put_info.rsp.reserved Reserved
Unsigned 16-bit integer
ff.sm SM Service
Boolean
ff.sm.clear_addr SM Clear Address
Boolean
ff.sm.clear_addr.err SM Clear Address Error
Boolean
ff.sm.clear_addr.err.additional_code Additional Code
Signed 16-bit integer
ff.sm.clear_addr.err.additional_desc Additional Description
String
ff.sm.clear_addr.err.err_class Error Class
Unsigned 8-bit integer
ff.sm.clear_addr.err.err_code Error Code
Unsigned 8-bit integer
ff.sm.clear_addr.req SM Clear Address Request
Boolean
ff.sm.clear_addr.req.dev_id Device ID
String
ff.sm.clear_addr.req.interface_to_clear Interface to Clear
Unsigned 8-bit integer
ff.sm.clear_addr.req.pd_tag PD Tag
String
ff.sm.clear_addr.rsp SM Clear Address Response
Boolean
ff.sm.clear_assign_info SM Clear Assignment Info
Boolean
ff.sm.clear_assign_info.err SM Clear Assignment Info Error
Boolean
ff.sm.clear_assign_info.err.additional_code Additional Code
Signed 16-bit integer
ff.sm.clear_assign_info.err.additional_desc Additional Description
String
ff.sm.clear_assign_info.err.err_class Error Class
Unsigned 8-bit integer
ff.sm.clear_assign_info.err.err_code Error Code
Unsigned 8-bit integer
ff.sm.clear_assign_info.req SM Clear Assignment Info Request
Boolean
ff.sm.clear_assign_info.req.dev_id Device ID
String
ff.sm.clear_assign_info.req.pd_tag PD Tag
String
ff.sm.clear_assign_info.rsp SM Clear Assignment Info Response
Boolean
ff.sm.dev_annunc SM Device Annunciation
Boolean
ff.sm.dev_annunc.req SM Device Annunciation Request
Boolean
ff.sm.dev_annunc.req.annunc_ver_num Annunciation Version Number
Unsigned 32-bit integer
ff.sm.dev_annunc.req.dev_id Device ID
String
ff.sm.dev_annunc.req.dev_idx Device Index
Unsigned 16-bit integer
ff.sm.dev_annunc.req.h1_live_list.h1_link_id H1 Link Id
Unsigned 16-bit integer
ff.sm.dev_annunc.req.h1_live_list.reserved Reserved
Unsigned 8-bit integer
ff.sm.dev_annunc.req.h1_live_list.ver_num Version Number
Unsigned 8-bit integer
ff.sm.dev_annunc.req.h1_node_addr_ver_num.h1_node_addr H1 Node Address
Unsigned 8-bit integer
ff.sm.dev_annunc.req.h1_node_addr_ver_num.ver_num Version Number
Unsigned 8-bit integer
ff.sm.dev_annunc.req.hse_dev_ver_num HSE Device Version Number
Unsigned 32-bit integer
ff.sm.dev_annunc.req.hse_repeat_time HSE Repeat Time
Unsigned 32-bit integer
ff.sm.dev_annunc.req.lr_port LAN Redundancy Port
Unsigned 16-bit integer
ff.sm.dev_annunc.req.max_dev_idx Max Device Index
Unsigned 16-bit integer
ff.sm.dev_annunc.req.num_of_entries Number of Entries in Version Number List
Unsigned 32-bit integer
ff.sm.dev_annunc.req.operational_ip_addr Operational IP Address
IPv6 address
ff.sm.dev_annunc.req.pd_tag PD Tag
String
ff.sm.dev_annunc.req.reserved Reserved
Unsigned 16-bit integer
ff.sm.find_tag_query SM Find Tag Query
Boolean
ff.sm.find_tag_query.req SM Find Tag Query Request
Boolean
ff.sm.find_tag_query.req.idx Element Id or VFD Reference or Device Index
Unsigned 32-bit integer
ff.sm.find_tag_query.req.query_type Query Type
Unsigned 8-bit integer
ff.sm.find_tag_query.req.tag PD Tag or Function Block Tag
String
ff.sm.find_tag_query.req.vfd_tag VFD Tag
String
ff.sm.find_tag_reply SM Find Tag Reply
Boolean
ff.sm.find_tag_reply.req SM Find Tag Reply Request
Boolean
ff.sm.find_tag_reply.req.dev_id Queried Object Device ID
String
ff.sm.find_tag_reply.req.fda_addr_link_id Queried Object FDA Address Link Id
Unsigned 16-bit integer
ff.sm.find_tag_reply.req.fda_addr_selector.fda_addr_selector FDA Address Selector
Unsigned 16-bit integer
ff.sm.find_tag_reply.req.h1_node_addr Queried Object H1 Node Address
Unsigned 8-bit integer
ff.sm.find_tag_reply.req.ip_addr Queried Object IP Address
IPv6 address
ff.sm.find_tag_reply.req.num_of_fda_addr_selectors Number Of FDA Address Selectors
Unsigned 8-bit integer
ff.sm.find_tag_reply.req.od_idx Queried Object OD Index
Unsigned 32-bit integer
ff.sm.find_tag_reply.req.od_ver Queried Object OD Version
Unsigned 32-bit integer
ff.sm.find_tag_reply.req.pd_tag Queried Object PD Tag
String
ff.sm.find_tag_reply.req.query_type Query Type
Unsigned 8-bit integer
ff.sm.find_tag_reply.req.reserved Reserved
Unsigned 8-bit integer
ff.sm.find_tag_reply.req.vfd_ref Queried Object VFD Reference
Unsigned 32-bit integer
ff.sm.id SM Identify
Boolean
ff.sm.id.err SM Identify Error
Boolean
ff.sm.id.err.additional_code Additional Code
Signed 16-bit integer
ff.sm.id.err.additional_desc Additional Description
String
ff.sm.id.err.err_class Error Class
Unsigned 8-bit integer
ff.sm.id.err.err_code Error Code
Unsigned 8-bit integer
ff.sm.id.req SM Identify Request
Boolean
ff.sm.id.rsp SM Identify Response
Boolean
ff.sm.id.rsp.annunc_ver_num Annunciation Version Number
Unsigned 32-bit integer
ff.sm.id.rsp.dev_id Device ID
String
ff.sm.id.rsp.dev_idx Device Index
Unsigned 16-bit integer
ff.sm.id.rsp.h1_live_list.h1_link_id H1 Link Id
Unsigned 16-bit integer
ff.sm.id.rsp.h1_live_list.reserved Reserved
Unsigned 8-bit integer
ff.sm.id.rsp.h1_live_list.ver_num Version Number
Unsigned 8-bit integer
ff.sm.id.rsp.h1_node_addr_ver_num.h1_node_addr H1 Node Address
Unsigned 8-bit integer
ff.sm.id.rsp.h1_node_addr_ver_num.ver_num Version Number
Unsigned 8-bit integer
ff.sm.id.rsp.hse_dev_ver_num HSE Device Version Number
Unsigned 32-bit integer
ff.sm.id.rsp.hse_repeat_time HSE Repeat Time
Unsigned 32-bit integer
ff.sm.id.rsp.lr_port LAN Redundancy Port
Unsigned 16-bit integer
ff.sm.id.rsp.max_dev_idx Max Device Index
Unsigned 16-bit integer
ff.sm.id.rsp.num_of_entries Number of Entries in Version Number List
Unsigned 32-bit integer
ff.sm.id.rsp.operational_ip_addr Operational IP Address
IPv6 address
ff.sm.id.rsp.pd_tag PD Tag
String
ff.sm.id.rsp.reserved Reserved
Unsigned 16-bit integer
ff.sm.set_assign_info SM Set Assignment Info
Boolean
ff.sm.set_assign_info.err SM Set Assignment Info Error
Boolean
ff.sm.set_assign_info.err.additional_code Additional Code
Signed 16-bit integer
ff.sm.set_assign_info.err.additional_desc Additional Description
String
ff.sm.set_assign_info.err.err_class Error Class
Unsigned 8-bit integer
ff.sm.set_assign_info.err.err_code Error Code
Unsigned 8-bit integer
ff.sm.set_assign_info.req SM Set Assignment Info Request
Boolean
ff.sm.set_assign_info.req.dev_id Device ID
String
ff.sm.set_assign_info.req.dev_idx Device Index
Unsigned 16-bit integer
ff.sm.set_assign_info.req.h1_new_addr H1 New Address
Unsigned 8-bit integer
ff.sm.set_assign_info.req.hse_repeat_time HSE Repeat Time
Unsigned 32-bit integer
ff.sm.set_assign_info.req.lr_port LAN Redundancy Port
Unsigned 16-bit integer
ff.sm.set_assign_info.req.max_dev_idx Max Device Index
Unsigned 16-bit integer
ff.sm.set_assign_info.req.operational_ip_addr Operational IP Address
IPv6 address
ff.sm.set_assign_info.req.pd_tag PD Tag
String
ff.sm.set_assign_info.rsp SM Set Assignment Info Response
Boolean
ff.sm.set_assign_info.rsp.hse_repeat_time HSE Repeat Time
Unsigned 32-bit integer
ff.sm.set_assign_info.rsp.max_dev_idx Max Device Index
Unsigned 16-bit integer
ff.sm.set_assign_info.rsp.reserved Reserved
Unsigned 16-bit integer
ff.trailer Message Trailer
Boolean
ff.trailer.extended_control_field Extended Control Field
Unsigned 32-bit integer
ff.trailer.invoke_id Invoke Id
Unsigned 32-bit integer
ff.trailer.msg_num Message Number
Unsigned 32-bit integer
ff.trailer.time_stamp Time Stamp
Unsigned 64-bit integer
fp.activation-cfn Activation CFN
Unsigned 8-bit integer
Activation Connection Frame Number
fp.cell-portion-id Cell Portion ID
Unsigned 8-bit integer
Cell Portion ID
fp.cfn CFN
Unsigned 8-bit integer
Connection Frame Number
fp.cfn-control CFN control
Unsigned 8-bit integer
Connection Frame Number Control
fp.channel-type Channel Type
Unsigned 8-bit integer
Channel Type
fp.channel-with-zero-tbs No TBs for channel
Unsigned 32-bit integer
Channel with 0 TBs
fp.cmch-pi CmCH-PI
Unsigned 8-bit integer
Common Transport Channel Priority Indicator
fp.code-number Code number
Unsigned 8-bit integer
Code number
fp.common.control.frame-type Control Frame Type
Unsigned 8-bit integer
Common Control Frame Type
fp.common.control.rx-timing-deviation Rx Timing Deviation
Unsigned 8-bit integer
Common Rx Timing Deviation
fp.congestion-status Congestion Status
Unsigned 8-bit integer
Congestion Status
fp.cpch.tfi TFI
Unsigned 8-bit integer
CPCH Transport Format Indicator
fp.crci CRCI
Unsigned 8-bit integer
CRC correctness indicator
fp.crcis CRCIs
Byte array
CRC Indicators for uplink TBs
fp.data Data
Byte array
Data
fp.dch.control.frame-type Control Frame Type
Unsigned 8-bit integer
DCH Control Frame Type
fp.dch.control.rx-timing-deviation Rx Timing Deviation
Unsigned 8-bit integer
DCH Rx Timing Deviation
fp.dch.quality-estimate Quality Estimate
Unsigned 8-bit integer
Quality Estimate
fp.direction Direction
Unsigned 8-bit integer
Link direction
fp.dpc-mode DPC Mode
Unsigned 8-bit integer
DPC Mode to be applied in the uplink
fp.edch-data-padding Padding
Unsigned 8-bit integer
E-DCH padding before PDU
fp.edch-tsn TSN
Unsigned 8-bit integer
E-DCH Transmission Sequence Number
fp.edch.ddi DDI
Unsigned 8-bit integer
E-DCH Data Description Indicator
fp.edch.fsn FSN
Unsigned 8-bit integer
E-DCH Frame Sequence Number
fp.edch.header-crc E-DCH Header CRC
Unsigned 16-bit integer
E-DCH Header CRC
fp.edch.mac-es-pdu MAC-es PDU
No value
MAC-es PDU
fp.edch.no-of-harq-retransmissions No of HARQ Retransmissions
Unsigned 8-bit integer
E-DCH Number of HARQ retransmissions
fp.edch.no-of-subframes No of subframes
Unsigned 8-bit integer
E-DCH Number of subframes
fp.edch.number-of-mac-d-pdus Number of Mac-d PDUs
Unsigned 8-bit integer
Number of Mac-d PDUs
fp.edch.number-of-mac-es-pdus Number of Mac-es PDUs
Unsigned 8-bit integer
Number of Mac-es PDUs
fp.edch.subframe Subframe
String
EDCH Subframe
fp.edch.subframe-header Subframe header
String
EDCH Subframe header
fp.edch.subframe-number Subframe number
Unsigned 8-bit integer
E-DCH Subframe number
fp.fach.tfi TFI
Unsigned 8-bit integer
FACH Transport Format Indicator
fp.ft Frame Type
Unsigned 8-bit integer
Frame Type
fp.header-crc Header CRC
Unsigned 8-bit integer
Header CRC
fp.hsdsch-calculated-rate Calculated rate allocation (bps)
Unsigned 32-bit integer
Calculated rate RNC is allowed to send in bps
fp.hsdsch-credits HS-DSCH Credits
Unsigned 16-bit integer
HS-DSCH Credits
fp.hsdsch-data-padding Padding
Unsigned 8-bit integer
HS-DSCH Repetition Period in milliseconds
fp.hsdsch-interval HS-DSCH Interval in milliseconds
Unsigned 8-bit integer
HS-DSCH Interval in milliseconds
fp.hsdsch-repetition-period HS-DSCH Repetition Period
Unsigned 8-bit integer
HS-DSCH Repetition Period in milliseconds
fp.hsdsch-unlimited-rate Unlimited rate
No value
No restriction on rate at which date may be sent
fp.hsdsch.drt DRT
Unsigned 8-bit integer
Delay Reference Time
fp.hsdsch.mac-d-pdu-len MAC-d PDU Length
Unsigned 16-bit integer
MAC-d PDU Length in bits
fp.hsdsch.max-macd-pdu-len Max MAC-d PDU Length
Unsigned 16-bit integer
Maximum MAC-d PDU Length in bits
fp.hsdsch.new-ie-flag DRT IE present
Unsigned 8-bit integer
DRT IE present
fp.hsdsch.new-ie-flags New IEs flags
String
New IEs flags
fp.hsdsch.new-ie-flags-byte Another new IE flags byte
Unsigned 8-bit integer
Another new IE flagsbyte
fp.hsdsch.num-of-pdu Number of PDUs
Unsigned 8-bit integer
Number of PDUs in the payload
fp.mac-d-pdu MAC-d PDU
Byte array
MAC-d PDU
fp.max-ue-tx-pow MAX_UE_TX_POW
Signed 8-bit integer
Max UE TX POW (dBm)
fp.mc-info MC info
Unsigned 8-bit integer
MC info
fp.multiple-rl-sets-indicator Multiple RL sets indicator
Unsigned 8-bit integer
Multiple RL sets indicator
fp.payload-crc Payload CRC
Unsigned 16-bit integer
Payload CRC
fp.pch.cfn CFN (PCH)
Unsigned 16-bit integer
PCH Connection Frame Number
fp.pch.pi Paging Indication
Unsigned 8-bit integer
Indicates if the PI Bitmap is present
fp.pch.pi-bitmap Paging Indications bitmap
No value
Paging Indication bitmap
fp.pch.tfi TFI
Unsigned 8-bit integer
PCH Transport Format Indicator
fp.pch.toa ToA (PCH)
Signed 24-bit integer
PCH Time of Arrival
fp.pdsch-set-id PDSCH Set Id
Unsigned 8-bit integer
A pointer to the PDSCH Set which shall be used to transmit
fp.power-offset Power offset
Power offset (in dB)
fp.propagation-delay Propagation Delay
Unsigned 8-bit integer
Propagation Delay
fp.pusch-set-id PUSCH Set Id
Unsigned 8-bit integer
Identifies PUSCH Set from those configured in NodeB
fp.rach.new-ie-flag New IE present
Unsigned 8-bit integer
New IE present
fp.rach.new-ie-flags New IEs flags
String
New IEs flags
fp.rach.new-ie-flags-byte Another new IE flags byte
Unsigned 8-bit integer
Another new IE flags byte
fp.radio-interface-param.cfn-valid CFN valid
Unsigned 16-bit integer
CFN valid
fp.radio-interface-param.dpc-mode-valid DPC mode valid
Unsigned 16-bit integer
DPC mode valid
fp.radio-interface-param.max-ue-tx-pow-valid MAX_UE_TX_POW valid
Unsigned 16-bit integer
MAX UE TX POW valid
fp.radio-interface-param.tpc-po-valid TPC PO valid
Unsigned 16-bit integer
TPC PO valid
fp.radio-interface_param.rl-sets-indicator-valid RL sets indicator valid
Unsigned 16-bit integer
RI valid
fp.rx-sync-ul-timing-deviation Received SYNC UL Timing Deviation
Unsigned 8-bit integer
Received SYNC UL Timing Deviation
fp.spare-extension Spare Extension
No value
Spare Extension
fp.spreading-factor Spreading factor
Unsigned 8-bit integer
Spreading factor
fp.t1 T1
Unsigned 24-bit integer
RNC frame number indicating time it sends frame
fp.t2 T2
Unsigned 24-bit integer
NodeB frame number indicating time it received DL Sync
fp.t3 T3
Unsigned 24-bit integer
NodeB frame number indicating time it sends frame
fp.tb TB
Byte array
Transport Block
fp.tfi TFI
Unsigned 8-bit integer
Transport Format Indicator
fp.timing-advance Timing advance
Unsigned 8-bit integer
Timing advance in chips
fp.tpc-po TPC PO
Unsigned 8-bit integer
TPC PO
fp.transmit-power-level Transmit Power Level
Transmit Power Level (dB)
fp.ul-sir-target UL_SIR_TARGET
Value (in dB) of the SIR target to be used by the UL inner loop power control
fp.usch.tfi TFI
Unsigned 8-bit integer
USCH Transport Format Indicator
fp.user-buffer-size User buffer size
Unsigned 16-bit integer
User buffer size in octets
ftserver.opnum Operation
Unsigned 16-bit integer
Operation
fddi.addr Source or Destination Address
6-byte Hardware (MAC) Address
Source or Destination Hardware Address
fddi.dst Destination
6-byte Hardware (MAC) Address
Destination Hardware Address
fddi.fc Frame Control
Unsigned 8-bit integer
fddi.fc.clf Class/Length/Format
Unsigned 8-bit integer
fddi.fc.mac_subtype MAC Subtype
Unsigned 8-bit integer
fddi.fc.prio Priority
Unsigned 8-bit integer
fddi.fc.smt_subtype SMT Subtype
Unsigned 8-bit integer
fddi.src Source
6-byte Hardware (MAC) Address
fc.bls_hseqcnt High SEQCNT
Unsigned 16-bit integer
fc.bls_lastseqid Last Valid SEQID
Unsigned 8-bit integer
fc.bls_lseqcnt Low SEQCNT
Unsigned 16-bit integer
fc.bls_oxid OXID
Unsigned 16-bit integer
fc.bls_reason Reason
Unsigned 8-bit integer
fc.bls_rjtdetail Reason Explanantion
Unsigned 8-bit integer
fc.bls_rxid RXID
Unsigned 16-bit integer
fc.bls_seqidvld SEQID Valid
Unsigned 8-bit integer
fc.bls_vnduniq Vendor Unique Reason
Unsigned 8-bit integer
fc.cs_ctl CS_CTL
Unsigned 8-bit integer
CS_CTL
fc.d_id Dest Addr
String
Destination Address
fc.df_ctl DF_CTL
Unsigned 8-bit integer
fc.exchange_first_frame Exchange First In
Frame number
The first frame of this exchange is in this frame
fc.exchange_last_frame Exchange Last In
Frame number
The last frame of this exchange is in this frame
fc.f_ctl F_CTL
Unsigned 24-bit integer
fc.fctl.abts_ack AA
Unsigned 24-bit integer
ABTS ACK values
fc.fctl.abts_not_ack AnA
Unsigned 24-bit integer
ABTS not ACK vals
fc.fctl.ack_0_1 A01
Unsigned 24-bit integer
Ack 0/1 value
fc.fctl.exchange_first ExgFst
Boolean
First Exchange?
fc.fctl.exchange_last ExgLst
Boolean
Last Exchange?
fc.fctl.exchange_responder ExgRpd
Boolean
Exchange Responder?
fc.fctl.last_data_frame LDF
Unsigned 24-bit integer
Last Data Frame?
fc.fctl.priority Pri
Boolean
Priority
fc.fctl.rel_offset RelOff
Boolean
rel offset
fc.fctl.rexmitted_seq RetSeq
Boolean
Retransmitted Sequence
fc.fctl.seq_last SeqLst
Boolean
Last Sequence?
fc.fctl.seq_recipient SeqRec
Boolean
Seq Recipient?
fc.fctl.transfer_seq_initiative TSI
Boolean
Transfer Seq Initiative
fc.ftype Frame type
Unsigned 8-bit integer
Derived Type
fc.id Addr
String
Source or Destination Address
fc.nethdr.da Network DA
String
fc.nethdr.sa Network SA
String
fc.ox_id OX_ID
Unsigned 16-bit integer
Originator ID
fc.parameter Parameter
Unsigned 32-bit integer
Parameter
fc.r_ctl R_CTL
Unsigned 8-bit integer
R_CTL
fc.reassembled Reassembled Frame
Boolean
fc.relative_offset Relative Offset
Unsigned 32-bit integer
Relative offset of data
fc.rx_id RX_ID
Unsigned 16-bit integer
Receiver ID
fc.s_id Src Addr
String
Source Address
fc.seq_cnt SEQ_CNT
Unsigned 16-bit integer
Sequence Count
fc.seq_id SEQ_ID
Unsigned 8-bit integer
Sequence ID
fc.time Time from Exchange First
Time duration
Time since the first frame of the Exchange
fc.type Type
Unsigned 8-bit integer
fc.vft VFT Header
Unsigned 16-bit integer
VFT Header
fc.vft.hop_ct HopCT
Unsigned 8-bit integer
Hop Count
fc.vft.rctl R_CTL
Unsigned 8-bit integer
R_CTL
fc.vft.type Type
Unsigned 8-bit integer
Type of tagged frame
fc.vft.ver Version
Unsigned 8-bit integer
Version of VFT header
fc.vft.vf_id VF_ID
Unsigned 16-bit integer
Virtual Fabric ID
fcct.ext_authblk Auth Hash Blk
Byte array
fcct.ext_reqnm Requestor Port Name
Byte array
fcct.ext_said Auth SAID
Unsigned 32-bit integer
fcct.ext_tid Transaction ID
Unsigned 32-bit integer
fcct.ext_tstamp Timestamp
Byte array
fcct.gssubtype GS Subtype
Unsigned 8-bit integer
fcct.gstype GS Type
Unsigned 8-bit integer
fcct.in_id IN_ID
String
fcct.options Options
Unsigned 8-bit integer
fcct.revision Revision
Unsigned 8-bit integer
fcct.server Server
Unsigned 8-bit integer
Derived from GS Type & Subtype fields
fcfzs.gest.vendor Vendor Specific State
Unsigned 32-bit integer
fcfzs.gzc.flags Capabilities
Unsigned 8-bit integer
fcfzs.gzc.flags.hard_zones Hard Zones
Boolean
fcfzs.gzc.flags.soft_zones Soft Zones
Boolean
fcfzs.gzc.flags.zoneset_db ZoneSet Database
Boolean
fcfzs.gzc.vendor Vendor Specific Flags
Unsigned 32-bit integer
fcfzs.hard_zone_set.enforced Hard Zone Set
Boolean
fcfzs.maxres_size Maximum/Residual Size
Unsigned 16-bit integer
fcfzs.opcode Opcode
Unsigned 16-bit integer
fcfzs.reason Reason Code
Unsigned 8-bit integer
fcfzs.rjtdetail Reason Code Explanation
Unsigned 8-bit integer
fcfzs.rjtvendor Vendor Specific Reason
Unsigned 8-bit integer
fcfzs.soft_zone_set.enforced Soft Zone Set
Boolean
fcfzs.zone.lun LUN
Byte array
fcfzs.zone.mbrid Zone Member Identifier
String
fcfzs.zone.name Zone Name
String
fcfzs.zone.namelen Zone Name Length
Unsigned 8-bit integer
fcfzs.zone.numattrs Number of Zone Attribute Entries
Unsigned 32-bit integer
fcfzs.zone.nummbrs Number of Zone Members
Unsigned 32-bit integer
fcfzs.zone.state Zone State
Unsigned 8-bit integer
fcfzs.zonembr.idlen Zone Member Identifier Length
Unsigned 8-bit integer
fcfzs.zonembr.idtype Zone Member Identifier Type
Unsigned 8-bit integer
fcfzs.zonembr.numattrs Number of Zone Member Attribute Entries
Unsigned 32-bit integer
fcfzs.zoneset.name Zone Set Name
String
fcfzs.zoneset.namelen Zone Set Name Length
Unsigned 8-bit integer
fcfzs.zoneset.numattrs Number of Zone Set Attribute Entries
Unsigned 32-bit integer
fcfzs.zoneset.numzones Number of Zones
Unsigned 32-bit integer
fcdns.cos.1 1
Boolean
fcdns.cos.2 2
Boolean
fcdns.cos.3 3
Boolean
fcdns.cos.4 4
Boolean
fcdns.cos.6 6
Boolean
fcdns.cos.f F
Boolean
fcdns.entry.numfc4desc Number of FC4 Descriptors Registered
Unsigned 8-bit integer
fcdns.entry.objfmt Name Entry Object Format
Unsigned 8-bit integer
fcdns.fc4features FC-4 Feature Bits
Unsigned 8-bit integer
fcdns.fc4features.i I
Boolean
fcdns.fc4features.t T
Boolean
fcdns.fc4types.fcp FCP
Boolean
fcdns.fc4types.gs3 GS3
Boolean
fcdns.fc4types.ip IP
Boolean
fcdns.fc4types.llc_snap LLC/SNAP
Boolean
fcdns.fc4types.snmp SNMP
Boolean
fcdns.fc4types.swils SW_ILS
Boolean
fcdns.fc4types.vi VI
Boolean
fcdns.gssubtype GS_Subtype
Unsigned 8-bit integer
fcdns.maxres_size Maximum/Residual Size
Unsigned 16-bit integer
fcdns.opcode Opcode
Unsigned 16-bit integer
fcdns.portip Port IP Address
IPv4 address
fcdns.reply.cos Class of Service Supported
Unsigned 32-bit integer
fcdns.req.areaid Area ID Scope
Unsigned 8-bit integer
fcdns.req.class Requested Class of Service
Unsigned 32-bit integer
fcdns.req.domainid Domain ID Scope
Unsigned 8-bit integer
fcdns.req.fc4desc FC-4 Descriptor
String
fcdns.req.fc4desclen FC-4 Descriptor Length
Unsigned 8-bit integer
fcdns.req.fc4type FC-4 Type
Unsigned 8-bit integer
fcdns.req.fc4types FC-4 Types Supported
No value
fcdns.req.ip IP Address
IPv6 address
fcdns.req.nname Node Name
String
fcdns.req.portid Port Identifier
String
fcdns.req.portname Port Name
String
fcdns.req.porttype Port Type
Unsigned 8-bit integer
fcdns.req.sname Symbolic Port Name
String
fcdns.req.snamelen Symbolic Name Length
Unsigned 8-bit integer
fcdns.req.spname Symbolic Port Name
String
fcdns.req.spnamelen Symbolic Port Name Length
Unsigned 8-bit integer
fcdns.rply.fc4desc FC-4 Descriptor
Byte array
fcdns.rply.fc4desclen FC-4 Descriptor Length
Unsigned 8-bit integer
fcdns.rply.fc4type FC-4 Descriptor Type
Unsigned 8-bit integer
fcdns.rply.fpname Fabric Port Name
String
fcdns.rply.hrdaddr Hard Address
String
fcdns.rply.ipa Initial Process Associator
Byte array
fcdns.rply.ipnode Node IP Address
IPv6 address
fcdns.rply.ipport Port IP Address
IPv6 address
fcdns.rply.nname Node Name
String
fcdns.rply.ownerid Owner Id
String
fcdns.rply.pname Port Name
String
fcdns.rply.portid Port Identifier
String
fcdns.rply.porttype Port Type
Unsigned 8-bit integer
fcdns.rply.reason Reason Code
Unsigned 8-bit integer
fcdns.rply.reasondet Reason Code Explanantion
Unsigned 8-bit integer
fcdns.rply.sname Symbolic Node Name
String
fcdns.rply.snamelen Symbolic Node Name Length
Unsigned 8-bit integer
fcdns.rply.spname Symbolic Port Name
String
fcdns.rply.spnamelen Symbolic Port Name Length
Unsigned 8-bit integer
fcdns.rply.vendor Vendor Unique Reject Code
Unsigned 8-bit integer
fcdns.zone.mbrid Member Identifier
String
fcdns.zone.mbrtype Zone Member Type
Unsigned 8-bit integer
fcdns.zonename Zone Name
String
fcp.addlcdblen Additional CDB Length
Unsigned 8-bit integer
fcp.bidir_dl FCP_BIDIRECTIONAL_READ_DL
Unsigned 32-bit integer
fcp.bidir_resid Bidirectional Read Resid
Unsigned 32-bit integer
fcp.burstlen Burst Length
Unsigned 32-bit integer
fcp.crn Command Ref Num
Unsigned 8-bit integer
fcp.data_ro FCP_DATA_RO
Unsigned 32-bit integer
fcp.dl FCP_DL
Unsigned 32-bit integer
fcp.lun LUN
Unsigned 8-bit integer
fcp.mgmt.flags.abort_task_set Abort Task Set
Boolean
fcp.mgmt.flags.clear_aca Clear ACA
Boolean
fcp.mgmt.flags.clear_task_set Clear Task Set
Boolean
fcp.mgmt.flags.lu_reset LU Reset
Boolean
fcp.mgmt.flags.obsolete Obsolete
Boolean
fcp.mgmt.flags.rsvd Rsvd
Boolean
fcp.mgmt.flags.target_reset Target Reset
Boolean
fcp.multilun Multi-Level LUN
Byte array
fcp.rddata RDDATA
Boolean
fcp.request_in Request In
Frame number
The frame number for the request
fcp.resid FCP_RESID
Unsigned 32-bit integer
fcp.response_in Response In
Frame number
The frame number of the response
fcp.rsp.flags.bidi Bidi Rsp
Boolean
fcp.rsp.flags.bidi_rro Bidi Read Resid Over
Boolean
fcp.rsp.flags.bidi_rru Bidi Read Resid Under
Boolean
fcp.rsp.flags.conf_req Conf Req
Boolean
fcp.rsp.flags.res_vld RES Vld
Boolean
fcp.rsp.flags.resid_over Resid Over
Boolean
fcp.rsp.flags.resid_under Resid Under
Boolean
fcp.rsp.flags.sns_vld SNS Vld
Boolean
fcp.rsp.retry_delay_timer Retry Delay Timer
Unsigned 16-bit integer
fcp.rspcode RSP_CODE
Unsigned 8-bit integer
fcp.rspflags FCP_RSP Flags
Unsigned 8-bit integer
fcp.rsplen FCP_RSP_LEN
Unsigned 32-bit integer
fcp.snslen FCP_SNS_LEN
Unsigned 32-bit integer
fcp.status SCSI Status
Unsigned 8-bit integer
fcp.taskattr Task Attribute
Unsigned 8-bit integer
fcp.taskmgmt Task Management Flags
Unsigned 8-bit integer
fcp.time Time from FCP_CMND
Time duration
Time since the FCP_CMND frame
fcp.type Field to branch off to SCSI
Unsigned 8-bit integer
fcp.wrdata WRDATA
Boolean
swils.aca.domainid Known Domain ID
Unsigned 8-bit integer
swils.dia.sname Switch Name
String
swils.efp.aliastok Alias Token
Byte array
swils.efp.domid Domain ID
Unsigned 8-bit integer
swils.efp.mcastno Mcast Grp#
Unsigned 8-bit integer
swils.efp.payloadlen Payload Len
Unsigned 16-bit integer
swils.efp.psname Principal Switch Name
String
swils.efp.psprio Principal Switch Priority
Unsigned 8-bit integer
swils.efp.recordlen Record Len
Unsigned 8-bit integer
swils.efp.rectype Record Type
Unsigned 8-bit integer
swils.efp.sname Switch Name
String
swils.elp.b2b B2B Credit
Unsigned 32-bit integer
swils.elp.cfe2e Class F E2E Credit
Unsigned 16-bit integer
swils.elp.cls1p Class 1 Svc Param
Byte array
swils.elp.cls1rsz Class 1 Frame Size
Unsigned 16-bit integer
swils.elp.cls2p Class 2 Svc Param
Byte array
swils.elp.cls3p Class 3 Svc Param
Byte array
swils.elp.clsfcs Class F Max Concurrent Seq
Unsigned 16-bit integer
swils.elp.clsfp Class F Svc Param
Byte array
swils.elp.clsfrsz Max Class F Frame Size
Unsigned 16-bit integer
swils.elp.compat1 Compatability Param 1
Unsigned 32-bit integer
swils.elp.compat2 Compatability Param 2
Unsigned 32-bit integer
swils.elp.compat3 Compatability Param 3
Unsigned 32-bit integer
swils.elp.compat4 Compatability Param 4
Unsigned 32-bit integer
swils.elp.edtov E_D_TOV
Unsigned 32-bit integer
swils.elp.fcmode ISL Flow Ctrl Mode
String
swils.elp.fcplen Flow Ctrl Param Len
Unsigned 16-bit integer
swils.elp.flag Flag
Byte array
swils.elp.oseq Class F Max Open Seq
Unsigned 16-bit integer
swils.elp.ratov R_A_TOV
Unsigned 32-bit integer
swils.elp.reqepn Req Eport Name
String
swils.elp.reqesn Req Switch Name
String
swils.elp.rev Revision
Unsigned 8-bit integer
swils.esc.protocol Protocol ID
Unsigned 16-bit integer
swils.esc.swvendor Switch Vendor ID
String
swils.esc.vendorid Vendor ID
String
swils.ess.capability.dns.obj0h Name Server Entry Object 00h Support
Boolean
swils.ess.capability.dns.obj1h Name Server Entry Object 01h Support
Boolean
swils.ess.capability.dns.obj2h Name Server Entry Object 02h Support
Boolean
swils.ess.capability.dns.obj3h Name Server Entry Object 03h Support
Boolean
swils.ess.capability.dns.vendor Vendor Specific Flags
Unsigned 32-bit integer
swils.ess.capability.dns.zlacc GE_PT Zero Length Accepted
Boolean
swils.ess.capability.fcs.basic Basic Configuration Services
Boolean
swils.ess.capability.fcs.enhanced Enhanced Configuration Services
Boolean
swils.ess.capability.fcs.platform Platform Configuration Services
Boolean
swils.ess.capability.fcs.topology Topology Discovery Services
Boolean
swils.ess.capability.fctlr.rscn SW_RSCN Supported
Boolean
swils.ess.capability.fctlr.vendor Vendor Specific Flags
Unsigned 32-bit integer
swils.ess.capability.fzs.adcsupp Active Direct Command Supported
Boolean
swils.ess.capability.fzs.defzone Default Zone Setting
Boolean
swils.ess.capability.fzs.ezoneena Enhanced Zoning Enabled
Boolean
swils.ess.capability.fzs.ezonesupp Enhanced Zoning Supported
Boolean
swils.ess.capability.fzs.hardzone Hard Zoning Supported
Boolean
swils.ess.capability.fzs.mr Merge Control Setting
Boolean
swils.ess.capability.fzs.zsdbena Zoneset Database Enabled
Boolean
swils.ess.capability.fzs.zsdbsupp Zoneset Database Supported
Boolean
swils.ess.capability.length Length
Unsigned 8-bit integer
swils.ess.capability.numentries Number of Entries
Unsigned 8-bit integer
swils.ess.capability.service Service Name
Unsigned 8-bit integer
swils.ess.capability.subtype Subtype
Unsigned 8-bit integer
swils.ess.capability.t10id T10 Vendor ID
String
swils.ess.capability.type Type
Unsigned 8-bit integer
swils.ess.capability.vendorobj Vendor-Specific Info
Byte array
swils.ess.leb Payload Length
Unsigned 32-bit integer
swils.ess.listlen List Length
Unsigned 8-bit integer
swils.ess.modelname Model Name
String
swils.ess.numobj Number of Capability Objects
Unsigned 16-bit integer
swils.ess.relcode Release Code
String
swils.ess.revision Revision
Unsigned 32-bit integer
swils.ess.vendorname Vendor Name
String
swils.ess.vendorspecific Vendor Specific
String
swils.fspf.arnum AR Number
Unsigned 8-bit integer
swils.fspf.auth Authentication
Byte array
swils.fspf.authtype Authentication Type
Unsigned 8-bit integer
swils.fspf.cmd Command:
Unsigned 8-bit integer
swils.fspf.origdomid Originating Domain ID
Unsigned 8-bit integer
swils.fspf.ver Version
Unsigned 8-bit integer
swils.hlo.deadint Dead Interval (secs)
Unsigned 32-bit integer
swils.hlo.hloint Hello Interval (secs)
Unsigned 32-bit integer
swils.hlo.options Options
Byte array
swils.hlo.origpidx Originating Port Idx
Unsigned 24-bit integer
swils.hlo.rcvdomid Recipient Domain ID
Unsigned 8-bit integer
swils.ldr.linkcost Link Cost
Unsigned 16-bit integer
swils.ldr.linkid Link ID
String
swils.ldr.linktype Link Type
Unsigned 8-bit integer
swils.ldr.nbr_portidx Neighbor Port Idx
Unsigned 24-bit integer
swils.ldr.out_portidx Output Port Idx
Unsigned 24-bit integer
swils.ls.id Link State Id
Unsigned 8-bit integer
swils.lsr.advdomid Advertising Domain Id
Unsigned 8-bit integer
swils.lsr.incid LS Incarnation Number
Unsigned 32-bit integer
swils.lsr.type LSR Type
Unsigned 8-bit integer
swils.mr.activezonesetname Active Zoneset Name
String
swils.mrra.reply MRRA Response
Unsigned 32-bit integer
swils.mrra.replysize Maximum Resources Available
Unsigned 32-bit integer
swils.mrra.revision Revision
Unsigned 32-bit integer
swils.mrra.size Merge Request Size
Unsigned 32-bit integer
swils.mrra.vendorid Vendor ID
String
swils.mrra.vendorinfo Vendor-Specific Info
Byte array
swils.mrra.waittime Waiting Period (secs)
Unsigned 32-bit integer
swils.opcode Cmd Code
Unsigned 8-bit integer
swils.rdi.len Payload Len
Unsigned 16-bit integer
swils.rdi.reqsn Req Switch Name
String
swils.rjt.reason Reason Code
Unsigned 8-bit integer
swils.rjt.reasonexpl Reason Code Explanantion
Unsigned 8-bit integer
swils.rjt.vendor Vendor Unique Error Code
Unsigned 8-bit integer
swils.rscn.addrfmt Address Format
Unsigned 8-bit integer
swils.rscn.affectedport Affected Port ID
String
swils.rscn.detectfn Detection Function
Unsigned 32-bit integer
swils.rscn.evtype Event Type
Unsigned 8-bit integer
swils.rscn.nwwn Node WWN
String
swils.rscn.portid Port Id
String
swils.rscn.portstate Port State
Unsigned 8-bit integer
swils.rscn.pwwn Port WWN
String
swils.sfc.opcode Operation Request
Unsigned 8-bit integer
swils.sfc.zonename Zone Set Name
String
swils.zone.lun LUN
Byte array
swils.zone.mbrid Member Identifier
String
swils.zone.mbrtype Zone Member Type
Unsigned 8-bit integer
swils.zone.protocol Zone Protocol
Unsigned 8-bit integer
swils.zone.reason Zone Command Reason Code
Unsigned 8-bit integer
Applies to MR, ACA, RCA, SFC, UFC
swils.zone.status Zone Command Status
Unsigned 8-bit integer
Applies to MR, ACA, RCA, SFC, UFC
swils.zone.zoneobjname Zone Object Name
String
swils.zone.zoneobjtype Zone Object Type
Unsigned 8-bit integer
fcsp.dhchap.challen Challenge Value Length
Unsigned 32-bit integer
fcsp.dhchap.chalval Challenge Value
Byte array
fcsp.dhchap.dhgid DH Group
Unsigned 32-bit integer
fcsp.dhchap.dhvalue DH Value
Byte array
fcsp.dhchap.groupid DH Group Identifier
Unsigned 32-bit integer
fcsp.dhchap.hashid Hash Identifier
Unsigned 32-bit integer
fcsp.dhchap.hashtype Hash Algorithm
Unsigned 32-bit integer
fcsp.dhchap.paramlen Parameter Length
Unsigned 16-bit integer
fcsp.dhchap.paramtype Parameter Tag
Unsigned 16-bit integer
fcsp.dhchap.rsplen Response Value Length
Unsigned 32-bit integer
fcsp.dhchap.rspval Response Value
Byte array
fcsp.dhchap.vallen DH Value Length
Unsigned 32-bit integer
fcsp.flags Flags
Unsigned 8-bit integer
fcsp.initname Initiator Name (Unknown Type)
Byte array
fcsp.initnamelen Initiator Name Length
Unsigned 16-bit integer
fcsp.initnametype Initiator Name Type
Unsigned 16-bit integer
fcsp.initwwn Initiator Name (WWN)
String
fcsp.len Packet Length
Unsigned 32-bit integer
fcsp.opcode Message Code
Unsigned 8-bit integer
fcsp.proto Authentication Protocol Type
Unsigned 32-bit integer
fcsp.protoparamlen Protocol Parameters Length
Unsigned 32-bit integer
fcsp.rjtcode Reason Code
Unsigned 8-bit integer
fcsp.rjtcodet Reason Code Explanation
Unsigned 8-bit integer
fcsp.rspname Responder Name (Unknown Type)
Byte array
fcsp.rspnamelen Responder Name Type
Unsigned 16-bit integer
fcsp.rspnametype Responder Name Type
Unsigned 16-bit integer
fcsp.rspwwn Responder Name (WWN)
String
fcsp.tid Transaction Identifier
Unsigned 32-bit integer
fcsp.usableproto Number of Usable Protocols
Unsigned 32-bit integer
fcsp.version Protocol Version
Unsigned 8-bit integer
sbccs.ccw CCW Number
Unsigned 16-bit integer
sbccs.ccwcmd CCW Command
Unsigned 8-bit integer
sbccs.ccwcnt CCW Count
Unsigned 16-bit integer
sbccs.ccwflags CCW Control Flags
Unsigned 8-bit integer
sbccs.ccwflags.cc CC
Boolean
sbccs.ccwflags.cd CD
Boolean
sbccs.ccwflags.crr CRR
Boolean
sbccs.ccwflags.sli SLI
Boolean
sbccs.chid Channel Image ID
Unsigned 8-bit integer
sbccs.cmdflags Command Flags
Unsigned 8-bit integer
sbccs.cmdflags.coc COC
Boolean
sbccs.cmdflags.du DU
Boolean
sbccs.cmdflags.rex REX
Boolean
sbccs.cmdflags.sss SSS
Boolean
sbccs.cmdflags.syr SYR
Boolean
sbccs.ctccntr CTC Counter
Unsigned 16-bit integer
sbccs.ctlfn Control Function
Unsigned 8-bit integer
sbccs.ctlparam Control Parameters
Unsigned 24-bit integer
sbccs.ctlparam.rc RC
Boolean
sbccs.ctlparam.ro RO
Boolean
sbccs.ctlparam.ru RU
Boolean
sbccs.cuid Control Unit Image ID
Unsigned 8-bit integer
sbccs.databytecnt DIB Data Byte Count
Unsigned 16-bit integer
sbccs.devaddr Device Address
Unsigned 16-bit integer
sbccs.dhflags DH Flags
Unsigned 8-bit integer
sbccs.dhflags.chaining Chaining
Boolean
sbccs.dhflags.earlyend Early End
Boolean
sbccs.dhflags.end End
Boolean
sbccs.dhflags.nocrc No CRC
Boolean
sbccs.dip.xcpcode Device Level Exception Code
Unsigned 8-bit integer
sbccs.dtu Defer-Time Unit
Unsigned 16-bit integer
sbccs.dtuf Defer-Time Unit Function
Unsigned 8-bit integer
sbccs.ioprio I/O Priority
Unsigned 8-bit integer
sbccs.iucnt DIB IU Count
Unsigned 8-bit integer
sbccs.iui Information Unit Identifier
Unsigned 8-bit integer
sbccs.iui.as AS
Boolean
sbccs.iui.es ES
Boolean
sbccs.iui.val Val
Unsigned 8-bit integer
sbccs.iupacing IU Pacing
Unsigned 8-bit integer
sbccs.linkctlfn Link Control Function
Unsigned 8-bit integer
sbccs.linkctlinfo Link Control Information
Unsigned 16-bit integer
sbccs.linkctlinfo.ctc_conn CTC Conn
Boolean
sbccs.linkctlinfo.ecrcg Enhanced CRC Generation
Boolean
sbccs.lprcode LPR Reason Code
Unsigned 8-bit integer
sbccs.lrc LRC
Unsigned 32-bit integer
sbccs.lrjcode LRJ Reaspn Code
Unsigned 8-bit integer
sbccs.purgepathcode Purge Path Error Code
Unsigned 8-bit integer
sbccs.purgepathrspcode Purge Path Response Error Code
Unsigned 8-bit integer
sbccs.qtu Queue-Time Unit
Unsigned 16-bit integer
sbccs.qtuf Queue-Time Unit Factor
Unsigned 8-bit integer
sbccs.residualcnt Residual Count
Unsigned 8-bit integer
sbccs.status Status
Unsigned 8-bit integer
sbccs.status.attention Attention
Boolean
sbccs.status.busy Busy
Boolean
sbccs.status.channel_end Channel End
Boolean
sbccs.status.cue Control-Unit End
Boolean
sbccs.status.device_end Device End
Boolean
sbccs.status.modifier Status Modifier
Boolean
sbccs.status.unit_check Unit Check
Boolean
sbccs.status.unitexception Unit Exception
Boolean
sbccs.statusflags Status Flags
Unsigned 8-bit integer
sbccs.statusflags.ci CI
Boolean
sbccs.statusflags.cr CR
Boolean
sbccs.statusflags.ffc FFC
Unsigned 8-bit integer
sbccs.statusflags.lri LRI
Boolean
sbccs.statusflags.rv RV
Boolean
sbccs.tinimageidcnt TIN Image ID
Unsigned 8-bit integer
sbccs.token Token
Unsigned 24-bit integer
fcoe.crc CRC
Unsigned 32-bit integer
fcoe.crc_bad CRC bad
Boolean
True: CRC doesn't match packet content; False: matches or not checked.
fcoe.crc_good CRC good
Boolean
True: CRC matches packet content; False: doesn't match or not checked.
fcoe.eof EOF
Unsigned 8-bit integer
fcoe.len Frame length
Unsigned 32-bit integer
fcoe.sof SOF
Unsigned 8-bit integer
fcoe.ver Version
Unsigned 32-bit integer
fmp.Path Mount Path
String
Mount Path
fmp.btime Boot Time
Date/Time stamp
Machine Boot Time
fmp.btime.nsec nano seconds
Unsigned 32-bit integer
Nano-seconds
fmp.btime.sec seconds
Unsigned 32-bit integer
Seconds
fmp.cmd Command
Unsigned 32-bit integer
command
fmp.cookie Cookie
Unsigned 32-bit integer
Cookie for FMP_REQUEST_QUEUED Resp
fmp.cursor number of volumes
Unsigned 32-bit integer
number of volumes
fmp.description Error Description
String
Client Error Description
fmp.devSig Signature DATA
String
Signature DATA
fmp.dsi.ds.dsList.dskSigLst_val.dse.dskSigEnt_val Celerra Signature
String
Celerra Signature
fmp.dsi.ds.sig_offset Sig Offset
Unsigned 64-bit integer
Sig Offset
fmp.eof EOF
Unsigned 64-bit integer
End Of File
fmp.extentList_len Extent List Length
Unsigned 32-bit integer
FMP Extent List Length
fmp.extentState Extent State
Unsigned 32-bit integer
FMP Extent State
fmp.fileSize File Size
Unsigned 64-bit integer
File Size
fmp.firstLogBlk firstLogBlk
Unsigned 32-bit integer
First Logical File Block
fmp.firstLogBlk64 First Logical Block
Unsigned 64-bit integer
fmp.fmpFHandle FMP File Handle
Byte array
FMP File Handle
fmp.fsBlkSz FS Block Size
Unsigned 32-bit integer
File System Block Size
fmp.fsID File System ID
Unsigned 32-bit integer
File System ID
fmp.hostID Host ID
String
Host ID
fmp.minBlks Minimum Blocks to Grant
Unsigned 32-bit integer
Minimum Blocks to Grant
fmp.mount_path Native Protocol: PATH
String
Absoulte path from the root on the server side
fmp.msgNum Message Number
Unsigned 32-bit integer
FMP Message Number
fmp.nfsFHandle NFS File Handle
Byte array
NFS File Handle
fmp.nfsv3Attr_fileid File ID
Unsigned 64-bit integer
fileid
fmp.nfsv3Attr_fsid fsid
Unsigned 64-bit integer
fsid
fmp.nfsv3Attr_gid gid
Unsigned 32-bit integer
GID
fmp.nfsv3Attr_mod Mode
Unsigned 32-bit integer
Mode
fmp.nfsv3Attr_nlink nlink
Unsigned 32-bit integer
nlink
fmp.nfsv3Attr_rdev rdev
Unsigned 64-bit integer
rdev
fmp.nfsv3Attr_type Type
Unsigned 32-bit integer
NFSV3 Attr Type
fmp.nfsv3Attr_uid uid
Unsigned 32-bit integer
UID
fmp.nfsv3Attr_used Used
Unsigned 64-bit integer
used
fmp.notifyPort Notify Port
Unsigned 32-bit integer
FMP Notify Port
fmp.numBlks Number Blocks
Unsigned 32-bit integer
Number of Blocks
fmp.numBlksReq Extent Length
Unsigned 32-bit integer
Extent Length
fmp.offset64 offset
Unsigned 64-bit integer
offset
fmp.os_build OS Build
Unsigned 32-bit integer
OS Build
fmp.os_major OS Major
Unsigned 32-bit integer
FMP OS Major
fmp.os_minor OS Minor
Unsigned 32-bit integer
FMP OS Minor
fmp.os_name OS Name
String
OS Name
fmp.os_patch OS Path
Unsigned 32-bit integer
OS Path
fmp.plugIn Plug In Args
Byte array
FMP Plug In Arguments
fmp.plugInID Plug In Cmd ID
Byte array
Plug In Command ID
fmp.procedure Procedure
Unsigned 32-bit integer
Procedure
fmp.server_version_string Server Version String
String
Server Version String
fmp.sessHandle Session Handle
Byte array
FMP Session Handle
fmp.slice_size size of the slice
Unsigned 64-bit integer
size of the slice
fmp.startOffset Start Offset
Unsigned 32-bit integer
FMP Start Offset
fmp.start_offset64 Start offset
Unsigned 64-bit integer
Start Offset of extentEx
fmp.status Status
Unsigned 32-bit integer
Reply Status
fmp.stripeSize size of the stripe
Unsigned 64-bit integer
size of the stripe
fmp.topVolumeId Top Volume ID
Unsigned 32-bit integer
Top Volume ID
fmp.volHandle Volume Handle
String
FMP Volume Handle
fmp.volID Volume ID inside DART
Unsigned 32-bit integer
FMP Volume ID inside DART
fmp.volume Volume ID's
Unsigned 32-bit integer
FMP Volume ID's
fmp_notify.cookie Cookie
Unsigned 32-bit integer
Cookie for FMP_REQUEST_QUEUED Resp
fmp_notify.fileSize File Size
Unsigned 64-bit integer
File Size
fmp_notify.firstLogBlk First Logical Block
Unsigned 32-bit integer
First Logical File Block
fmp_notify.fmpFHandle FMP File Handle
Byte array
FMP File Handle
fmp_notify.fmp_notify_procedure Procedure
Unsigned 32-bit integer
Procedure
fmp_notify.fsBlkSz FS Block Size
Unsigned 32-bit integer
File System Block Size
fmp_notify.fsID File System ID
Unsigned 32-bit integer
File System ID
fmp_notify.handleListLength Number File Handles
Unsigned 32-bit integer
Number of File Handles
fmp_notify.msgNum Message Number
Unsigned 32-bit integer
FMP Message Number
fmp_notify.numBlksReq Number Blocks Requested
Unsigned 32-bit integer
Number Blocks Requested
fmp_notify.sessHandle Session Handle
Byte array
FMP Session Handle
fmp_notify.status Status
Unsigned 32-bit integer
Reply Status
ftp.active.cip Active IP address
IPv4 address
Active FTP client IP address
ftp.active.nat Active IP NAT
Boolean
NAT is active
ftp.active.port Active port
Unsigned 16-bit integer
Active FTP client port
ftp.passive.ip Passive IP address
IPv4 address
Passive IP address (check NAT)
ftp.passive.nat Passive IP NAT
Boolean
NAT is active SIP and passive IP different
ftp.passive.port Passive port
Unsigned 16-bit integer
Passive FTP server port
ftp.request Request
Boolean
TRUE if FTP request
ftp.request.arg Request arg
String
ftp.request.command Request command
String
ftp.response Response
Boolean
TRUE if FTP response
ftp.response.arg Response arg
String
ftp.response.code Response code
Unsigned 32-bit integer
fix.Account Account (1)
String
Account
fix.AccountType AccountType (581)
String
AccountType
fix.AccruedInterestAmt AccruedInterestAmt (159)
String
AccruedInterestAmt
fix.AccruedInterestRate AccruedInterestRate (158)
String
AccruedInterestRate
fix.Adjustment Adjustment (334)
String
Adjustment
fix.AdvId AdvId (2)
String
AdvId
fix.AdvRefID AdvRefID (3)
String
AdvRefID
fix.AdvSide AdvSide (4)
String
AdvSide
fix.AdvTransType AdvTransType (5)
String
AdvTransType
fix.AffectedOrderID AffectedOrderID (535)
String
AffectedOrderID
fix.AffectedSecondaryOrderID AffectedSecondaryOrderID (536)
String
AffectedSecondaryOrderID
fix.AggregatedBook AggregatedBook (266)
String
AggregatedBook
fix.AllocAccount AllocAccount (79)
String
AllocAccount
fix.AllocAvgPx AllocAvgPx (153)
String
AllocAvgPx
fix.AllocHandlInst AllocHandlInst (209)
String
AllocHandlInst
fix.AllocID AllocID (70)
String
AllocID
fix.AllocLinkID AllocLinkID (196)
String
AllocLinkID
fix.AllocLinkType AllocLinkType (197)
String
AllocLinkType
fix.AllocNetMoney AllocNetMoney (154)
String
AllocNetMoney
fix.AllocPrice AllocPrice (366)
String
AllocPrice
fix.AllocQty AllocQty (80)
String
AllocQty
fix.AllocRejCode AllocRejCode (88)
String
AllocRejCode
fix.AllocReportRefID AllocReportRefID (795)
String
AllocReportRefID
fix.AllocStatus AllocStatus (87)
String
AllocStatus
fix.AllocText AllocText (161)
String
AllocText
fix.AllocTransType AllocTransType (71)
String
AllocTransType
fix.AllocType AllocType (626)
String
AllocType
fix.AvgPrxPrecision AvgPrxPrecision (74)
String
AvgPrxPrecision
fix.AvgPx AvgPx (6)
String
AvgPx
fix.BasisFeatureDate BasisFeatureDate (259)
String
BasisFeatureDate
fix.BasisFeaturePrice BasisFeaturePrice (260)
String
BasisFeaturePrice
fix.BasisPxType BasisPxType (419)
String
BasisPxType
fix.BeginSeqNo BeginSeqNo (7)
String
BeginSeqNo
fix.BeginString BeginString (8)
String
BeginString
fix.Benchmark Benchmark (219)
String
Benchmark
fix.BenchmarkCurveCurrency BenchmarkCurveCurrency (220)
String
BenchmarkCurveCurrency
fix.BenchmarkCurveName BenchmarkCurveName (221)
String
BenchmarkCurveName
fix.BenchmarkCurvePoint BenchmarkCurvePoint (222)
String
BenchmarkCurvePoint
fix.BenchmarkPrice BenchmarkPrice (662)
String
BenchmarkPrice
fix.BenchmarkPriceType BenchmarkPriceType (663)
String
BenchmarkPriceType
fix.BenchmarkSecurityID BenchmarkSecurityID (699)
String
BenchmarkSecurityID
fix.BenchmarkSecurityIDSource BenchmarkSecurityIDSource (761)
String
BenchmarkSecurityIDSource
fix.BidDescriptor BidDescriptor (400)
String
BidDescriptor
fix.BidDescriptorType BidDescriptorType (399)
String
BidDescriptorType
fix.BidForwardPoints BidForwardPoints (189)
String
BidForwardPoints
fix.BidForwardPoints2 BidForwardPoints2 (642)
String
BidForwardPoints2
fix.BidID BidID (390)
String
BidID
fix.BidPx BidPx (132)
String
BidPx
fix.BidRequestTransType BidRequestTransType (374)
String
BidRequestTransType
fix.BidSize BidSize (134)
String
BidSize
fix.BidSpotRate BidSpotRate (188)
String
BidSpotRate
fix.BidType BidType (394)
String
BidType
fix.BidYield BidYield (632)
String
BidYield
fix.BodyLength BodyLength (9)
String
BodyLength
fix.BookingRefID BookingRefID (466)
String
BookingRefID
fix.BookingUnit BookingUnit (590)
String
BookingUnit
fix.BrokerOfCredit BrokerOfCredit (92)
String
BrokerOfCredit
fix.BusinessRejectReason BusinessRejectReason (380)
String
BusinessRejectReason
fix.BusinessRejectRefID BusinessRejectRefID (379)
String
BusinessRejectRefID
fix.BuyVolume BuyVolume (330)
String
BuyVolume
fix.CFICode CFICode (461)
String
CFICode
fix.CancellationRights CancellationRights (480)
String
CancellationRights
fix.CardExpDate CardExpDate (490)
String
CardExpDate
fix.CardHolderName CardHolderName (488)
String
CardHolderName
fix.CardIssNo CardIssNo (491)
String
CardIssNo
fix.CardNumber CardNumber (489)
String
CardNumber
fix.CardStartDate CardStartDate (503)
String
CardStartDate
fix.CashDistribAgentAcctName CashDistribAgentAcctName (502)
String
CashDistribAgentAcctName
fix.CashDistribAgentAcctNumber CashDistribAgentAcctNumber (500)
String
CashDistribAgentAcctNumber
fix.CashDistribAgentCode CashDistribAgentCode (499)
String
CashDistribAgentCode
fix.CashDistribAgentName CashDistribAgentName (498)
String
CashDistribAgentName
fix.CashDistribCurr CashDistribCurr (478)
String
CashDistribCurr
fix.CashDistribPayRef CashDistribPayRef (501)
String
CashDistribPayRef
fix.CashMargin CashMargin (544)
String
CashMargin
fix.CashOrderQty CashOrderQty (152)
String
CashOrderQty
fix.CashSettlAgentAcctName CashSettlAgentAcctName (185)
String
CashSettlAgentAcctName
fix.CashSettlAgentAcctNum CashSettlAgentAcctNum (184)
String
CashSettlAgentAcctNum
fix.CashSettlAgentCode CashSettlAgentCode (183)
String
CashSettlAgentCode
fix.CashSettlAgentContactName CashSettlAgentContactName (186)
String
CashSettlAgentContactName
fix.CashSettlAgentContactPhone CashSettlAgentContactPhone (187)
String
CashSettlAgentContactPhone
fix.CashSettlAgentName CashSettlAgentName (182)
String
CashSettlAgentName
fix.CheckSum CheckSum (10)
String
CheckSum
fix.ClOrdID ClOrdID (11)
String
ClOrdID
fix.ClOrdLinkID ClOrdLinkID (583)
String
ClOrdLinkID
fix.ClearingAccount ClearingAccount (440)
String
ClearingAccount
fix.ClearingFeeIndicator ClearingFeeIndicator (635)
String
ClearingFeeIndicator
fix.ClearingFirm ClearingFirm (439)
String
ClearingFirm
fix.ClearingInstruction ClearingInstruction (577)
String
ClearingInstruction
fix.ClientBidID ClientBidID (391)
String
ClientBidID
fix.ClientID ClientID (109)
String
ClientID
fix.CommCurrency CommCurrency (479)
String
CommCurrency
fix.CommType CommType (13)
String
CommType
fix.Commission Commission (12)
String
Commission
fix.ComplianceID ComplianceID (376)
String
ComplianceID
fix.Concession Concession (238)
String
Concession
fix.ContAmtCurr ContAmtCurr (521)
String
ContAmtCurr
fix.ContAmtType ContAmtType (519)
String
ContAmtType
fix.ContAmtValue ContAmtValue (520)
String
ContAmtValue
fix.ContraBroker ContraBroker (375)
String
ContraBroker
fix.ContraLegRefID ContraLegRefID (655)
String
ContraLegRefID
fix.ContraTradeQty ContraTradeQty (437)
String
ContraTradeQty
fix.ContraTradeTime ContraTradeTime (438)
String
ContraTradeTime
fix.ContraTrader ContraTrader (337)
String
ContraTrader
fix.ContractMultiplier ContractMultiplier (231)
String
ContractMultiplier
fix.CorporateAction CorporateAction (292)
String
CorporateAction
fix.Country Country (421)
String
Country
fix.CountryOfIssue CountryOfIssue (470)
String
CountryOfIssue
fix.CouponPaymentDate CouponPaymentDate (224)
String
CouponPaymentDate
fix.CouponRate CouponRate (223)
String
CouponRate
fix.CoveredOrUncovered CoveredOrUncovered (203)
String
CoveredOrUncovered
fix.CreditRating CreditRating (255)
String
CreditRating
fix.CrossID CrossID (548)
String
CrossID
fix.CrossPercent CrossPercent (413)
String
CrossPercent
fix.CrossPrioritization CrossPrioritization (550)
String
CrossPrioritization
fix.CrossType CrossType (549)
String
CrossType
fix.CumQty CumQty (14)
String
CumQty
fix.Currency Currency (15)
String
Currency
fix.CustOrderCapacity CustOrderCapacity (582)
String
CustOrderCapacity
fix.CustomerOrFirm CustomerOrFirm (204)
String
CustomerOrFirm
fix.CxlQty CxlQty (84)
String
CxlQty
fix.CxlRejReason CxlRejReason (102)
String
CxlRejReason
fix.CxlRejResponseTo CxlRejResponseTo (434)
String
CxlRejResponseTo
fix.CxlType CxlType (125)
String
CxlType
fix.DKReason DKReason (127)
String
DKReason
fix.DateOfBirth DateOfBirth (486)
String
DateOfBirth
fix.DayAvgPx DayAvgPx (426)
String
DayAvgPx
fix.DayBookingInst DayBookingInst (589)
String
DayBookingInst
fix.DayCumQty DayCumQty (425)
String
DayCumQty
fix.DayOrderQty DayOrderQty (424)
String
DayOrderQty
fix.DefBidSize DefBidSize (293)
String
DefBidSize
fix.DefOfferSize DefOfferSize (294)
String
DefOfferSize
fix.DeleteReason DeleteReason (285)
String
DeleteReason
fix.DeliverToCompID DeliverToCompID (128)
String
DeliverToCompID
fix.DeliverToLocationID DeliverToLocationID (145)
String
DeliverToLocationID
fix.DeliverToSubID DeliverToSubID (129)
String
DeliverToSubID
fix.Designation Designation (494)
String
Designation
fix.DeskID DeskID (284)
String
DeskID
fix.DiscretionInst DiscretionInst (388)
String
DiscretionInst
fix.DiscretionOffset DiscretionOffset (389)
String
DiscretionOffset
fix.DistribPaymentMethod DistribPaymentMethod (477)
String
DistribPaymentMethod
fix.DistribPercentage DistribPercentage (512)
String
DistribPercentage
fix.DlvyInst DlvyInst (86)
String
DlvyInst
fix.DueToRelated DueToRelated (329)
String
DueToRelated
fix.EFPTrackingError EFPTrackingError (405)
String
EFPTrackingError
fix.EffectiveTime EffectiveTime (168)
String
EffectiveTime
fix.EmailThreadID EmailThreadID (164)
String
EmailThreadID
fix.EmailType EmailType (94)
String
EmailType
fix.EncodedAllocText EncodedAllocText (361)
String
EncodedAllocText
fix.EncodedAllocTextLen EncodedAllocTextLen (360)
String
EncodedAllocTextLen
fix.EncodedHeadline EncodedHeadline (359)
String
EncodedHeadline
fix.EncodedHeadlineLen EncodedHeadlineLen (358)
String
EncodedHeadlineLen
fix.EncodedIssuer EncodedIssuer (349)
String
EncodedIssuer
fix.EncodedIssuerLen EncodedIssuerLen (348)
String
EncodedIssuerLen
fix.EncodedLegIssuer EncodedLegIssuer (619)
String
EncodedLegIssuer
fix.EncodedLegIssuerLen EncodedLegIssuerLen (618)
String
EncodedLegIssuerLen
fix.EncodedLegSecurityDesc EncodedLegSecurityDesc (622)
String
EncodedLegSecurityDesc
fix.EncodedLegSecurityDescLen EncodedLegSecurityDescLen (621)
String
EncodedLegSecurityDescLen
fix.EncodedListExecInst EncodedListExecInst (353)
String
EncodedListExecInst
fix.EncodedListExecInstLen EncodedListExecInstLen (352)
String
EncodedListExecInstLen
fix.EncodedListStatusText EncodedListStatusText (446)
String
EncodedListStatusText
fix.EncodedListStatusTextLen EncodedListStatusTextLen (445)
String
EncodedListStatusTextLen
fix.EncodedSecurityDesc EncodedSecurityDesc (351)
String
EncodedSecurityDesc
fix.EncodedSecurityDescLen EncodedSecurityDescLen (350)
String
EncodedSecurityDescLen
fix.EncodedSubject EncodedSubject (357)
String
EncodedSubject
fix.EncodedSubjectLen EncodedSubjectLen (356)
String
EncodedSubjectLen
fix.EncodedText EncodedText (355)
String
EncodedText
fix.EncodedTextLen EncodedTextLen (354)
String
EncodedTextLen
fix.EncodedUnderlyingIssuer EncodedUnderlyingIssuer (363)
String
EncodedUnderlyingIssuer
fix.EncodedUnderlyingIssuerLen EncodedUnderlyingIssuerLen (362)
String
EncodedUnderlyingIssuerLen
fix.EncodedUnderlyingSecurityDesc EncodedUnderlyingSecurityDesc (365)
String
EncodedUnderlyingSecurityDesc
fix.EncodedUnderlyingSecurityDescLen EncodedUnderlyingSecurityDescLen (364)
String
EncodedUnderlyingSecurityDescLen
fix.EncryptMethod EncryptMethod (98)
String
EncryptMethod
fix.EndSeqNo EndSeqNo (16)
String
EndSeqNo
fix.ExDate ExDate (230)
String
ExDate
fix.ExDestination ExDestination (100)
String
ExDestination
fix.ExchangeForPhysical ExchangeForPhysical (411)
String
ExchangeForPhysical
fix.ExecBroker ExecBroker (76)
String
ExecBroker
fix.ExecID ExecID (17)
String
ExecID
fix.ExecInst ExecInst (18)
String
ExecInst
fix.ExecPriceAdjustment ExecPriceAdjustment (485)
String
ExecPriceAdjustment
fix.ExecPriceType ExecPriceType (484)
String
ExecPriceType
fix.ExecRefID ExecRefID (19)
String
ExecRefID
fix.ExecRestatementReason ExecRestatementReason (378)
String
ExecRestatementReason
fix.ExecTransType ExecTransType (20)
String
ExecTransType
fix.ExecType ExecType (150)
String
ExecType
fix.ExecValuationPoint ExecValuationPoint (515)
String
ExecValuationPoint
fix.ExpireDate ExpireDate (432)
String
ExpireDate
fix.ExpireTime ExpireTime (126)
String
ExpireTime
fix.Factor Factor (228)
String
Factor
fix.FairValue FairValue (406)
String
FairValue
fix.FinancialStatus FinancialStatus (291)
String
FinancialStatus
fix.ForexReq ForexReq (121)
String
ForexReq
fix.FundRenewWaiv FundRenewWaiv (497)
String
FundRenewWaiv
fix.FutSettDate FutSettDate (64)
String
FutSettDate
fix.FutSettDate2 FutSettDate2 (193)
String
FutSettDate2
fix.GTBookingInst GTBookingInst (427)
String
GTBookingInst
fix.GapFillFlag GapFillFlag (123)
String
GapFillFlag
fix.GrossTradeAmt GrossTradeAmt (381)
String
GrossTradeAmt
fix.HaltReason HaltReason (327)
String
HaltReason
fix.HandlInst HandlInst (21)
String
HandlInst
fix.Headline Headline (148)
String
Headline
fix.HeartBtInt HeartBtInt (108)
String
HeartBtInt
fix.HighPx HighPx (332)
String
HighPx
fix.HopCompID HopCompID (628)
String
HopCompID
fix.HopRefID HopRefID (630)
String
HopRefID
fix.HopSendingTime HopSendingTime (629)
String
HopSendingTime
fix.IOINaturalFlag IOINaturalFlag (130)
String
IOINaturalFlag
fix.IOIOthSvc IOIOthSvc (24)
String
IOIOthSvc
fix.IOIQltyInd IOIQltyInd (25)
String
IOIQltyInd
fix.IOIQty IOIQty (27)
String
IOIQty
fix.IOIQualifier IOIQualifier (104)
String
IOIQualifier
fix.IOIRefID IOIRefID (26)
String
IOIRefID
fix.IOITransType IOITransType (28)
String
IOITransType
fix.IOIid IOIid (23)
String
IOIid
fix.InViewOfCommon InViewOfCommon (328)
String
InViewOfCommon
fix.IncTaxInd IncTaxInd (416)
String
IncTaxInd
fix.IndividualAllocID IndividualAllocID (467)
String
IndividualAllocID
fix.InstrAttribType InstrAttribType (871)
String
InstrAttribType
fix.InstrAttribValue InstrAttribValue (872)
String
InstrAttribValue
fix.InstrRegistry InstrRegistry (543)
String
InstrRegistry
fix.InvestorCountryOfResidence InvestorCountryOfResidence (475)
String
InvestorCountryOfResidence
fix.IssueDate IssueDate (225)
String
IssueDate
fix.Issuer Issuer (106)
String
Issuer
fix.LastCapacity LastCapacity (29)
String
LastCapacity
fix.LastForwardPoints LastForwardPoints (195)
String
LastForwardPoints
fix.LastForwardPoints2 LastForwardPoints2 (641)
String
LastForwardPoints2
fix.LastFragment LastFragment (893)
String
LastFragment
fix.LastMkt LastMkt (30)
String
LastMkt
fix.LastMsgSeqNumProcessed LastMsgSeqNumProcessed (369)
String
LastMsgSeqNumProcessed
fix.LastPx LastPx (31)
String
LastPx
fix.LastQty LastQty (32)
String
LastQty
fix.LastSpotRate LastSpotRate (194)
String
LastSpotRate
fix.LeavesQty LeavesQty (151)
String
LeavesQty
fix.LegCFICode LegCFICode (608)
String
LegCFICode
fix.LegContractMultiplier LegContractMultiplier (614)
String
LegContractMultiplier
fix.LegCountryOfIssue LegCountryOfIssue (596)
String
LegCountryOfIssue
fix.LegCouponPaymentDate LegCouponPaymentDate (248)
String
LegCouponPaymentDate
fix.LegCouponRate LegCouponRate (615)
String
LegCouponRate
fix.LegCoveredOrUncovered LegCoveredOrUncovered (565)
String
LegCoveredOrUncovered
fix.LegCreditRating LegCreditRating (257)
String
LegCreditRating
fix.LegCurrency LegCurrency (556)
String
LegCurrency
fix.LegFactor LegFactor (253)
String
LegFactor
fix.LegFutSettDate LegFutSettDate (588)
String
LegFutSettDate
fix.LegInstrRegistry LegInstrRegistry (599)
String
LegInstrRegistry
fix.LegIssueDate LegIssueDate (249)
String
LegIssueDate
fix.LegIssuer LegIssuer (617)
String
LegIssuer
fix.LegLastPx LegLastPx (637)
String
LegLastPx
fix.LegLocaleOfIssue LegLocaleOfIssue (598)
String
LegLocaleOfIssue
fix.LegMaturityDate LegMaturityDate (611)
String
LegMaturityDate
fix.LegMaturityMonthYear LegMaturityMonthYear (610)
String
LegMaturityMonthYear
fix.LegOptAttribute LegOptAttribute (613)
String
LegOptAttribute
fix.LegPositionEffect LegPositionEffect (564)
String
LegPositionEffect
fix.LegPrice LegPrice (566)
String
LegPrice
fix.LegProduct LegProduct (607)
String
LegProduct
fix.LegRatioQty LegRatioQty (623)
String
LegRatioQty
fix.LegRedemptionDate LegRedemptionDate (254)
String
LegRedemptionDate
fix.LegRefID LegRefID (654)
String
LegRefID
fix.LegRepoCollateralSecurityType LegRepoCollateralSecurityType (250)
String
LegRepoCollateralSecurityType
fix.LegRepurchaseRate LegRepurchaseRate (252)
String
LegRepurchaseRate
fix.LegRepurchaseTerm LegRepurchaseTerm (251)
String
LegRepurchaseTerm
fix.LegSecurityAltID LegSecurityAltID (605)
String
LegSecurityAltID
fix.LegSecurityAltIDSource LegSecurityAltIDSource (606)
String
LegSecurityAltIDSource
fix.LegSecurityDesc LegSecurityDesc (620)
String
LegSecurityDesc
fix.LegSecurityExchange LegSecurityExchange (616)
String
LegSecurityExchange
fix.LegSecurityID LegSecurityID (602)
String
LegSecurityID
fix.LegSecurityIDSource LegSecurityIDSource (603)
String
LegSecurityIDSource
fix.LegSecurityType LegSecurityType (609)
String
LegSecurityType
fix.LegSettlmntTyp LegSettlmntTyp (587)
String
LegSettlmntTyp
fix.LegSide LegSide (624)
String
LegSide
fix.LegStateOrProvinceOfIssue LegStateOrProvinceOfIssue (597)
String
LegStateOrProvinceOfIssue
fix.LegStrikePrice LegStrikePrice (612)
String
LegStrikePrice
fix.LegSymbol LegSymbol (600)
String
LegSymbol
fix.LegSymbolSfx LegSymbolSfx (601)
String
LegSymbolSfx
fix.LegalConfirm LegalConfirm (650)
String
LegalConfirm
fix.LinesOfText LinesOfText (33)
String
LinesOfText
fix.LiquidityIndType LiquidityIndType (409)
String
LiquidityIndType
fix.LiquidityNumSecurities LiquidityNumSecurities (441)
String
LiquidityNumSecurities
fix.LiquidityPctHigh LiquidityPctHigh (403)
String
LiquidityPctHigh
fix.LiquidityPctLow LiquidityPctLow (402)
String
LiquidityPctLow
fix.LiquidityValue LiquidityValue (404)
String
LiquidityValue
fix.ListExecInst ListExecInst (69)
String
ListExecInst
fix.ListExecInstType ListExecInstType (433)
String
ListExecInstType
fix.ListID ListID (66)
String
ListID
fix.ListName ListName (392)
String
ListName
fix.ListOrderStatus ListOrderStatus (431)
String
ListOrderStatus
fix.ListSeqNo ListSeqNo (67)
String
ListSeqNo
fix.ListStatusText ListStatusText (444)
String
ListStatusText
fix.ListStatusType ListStatusType (429)
String
ListStatusType
fix.LocaleOfIssue LocaleOfIssue (472)
String
LocaleOfIssue
fix.LocateReqd LocateReqd (114)
String
LocateReqd
fix.LocationID LocationID (283)
String
LocationID
fix.LowPx LowPx (333)
String
LowPx
fix.MDEntryBuyer MDEntryBuyer (288)
String
MDEntryBuyer
fix.MDEntryDate MDEntryDate (272)
String
MDEntryDate
fix.MDEntryID MDEntryID (278)
String
MDEntryID
fix.MDEntryOriginator MDEntryOriginator (282)
String
MDEntryOriginator
fix.MDEntryPositionNo MDEntryPositionNo (290)
String
MDEntryPositionNo
fix.MDEntryPx MDEntryPx (270)
String
MDEntryPx
fix.MDEntryRefID MDEntryRefID (280)
String
MDEntryRefID
fix.MDEntrySeller MDEntrySeller (289)
String
MDEntrySeller
fix.MDEntrySize MDEntrySize (271)
String
MDEntrySize
fix.MDEntryTime MDEntryTime (273)
String
MDEntryTime
fix.MDEntryType MDEntryType (269)
String
MDEntryType
fix.MDImplicitDelete MDImplicitDelete (547)
String
MDImplicitDelete
fix.MDMkt MDMkt (275)
String
MDMkt
fix.MDReqID MDReqID (262)
String
MDReqID
fix.MDReqRejReason MDReqRejReason (281)
String
MDReqRejReason
fix.MDUpdateAction MDUpdateAction (279)
String
MDUpdateAction
fix.MDUpdateType MDUpdateType (265)
String
MDUpdateType
fix.MailingDtls MailingDtls (474)
String
MailingDtls
fix.MailingInst MailingInst (482)
String
MailingInst
fix.MarketDepth MarketDepth (264)
String
MarketDepth
fix.MassCancelRejectReason MassCancelRejectReason (532)
String
MassCancelRejectReason
fix.MassCancelRequestType MassCancelRequestType (530)
String
MassCancelRequestType
fix.MassCancelResponse MassCancelResponse (531)
String
MassCancelResponse
fix.MassStatusReqID MassStatusReqID (584)
String
MassStatusReqID
fix.MassStatusReqType MassStatusReqType (585)
String
MassStatusReqType
fix.MatchStatus MatchStatus (573)
String
MatchStatus
fix.MatchType MatchType (574)
String
MatchType
fix.MaturityDate MaturityDate (541)
String
MaturityDate
fix.MaturityDay MaturityDay (205)
String
MaturityDay
fix.MaturityMonthYear MaturityMonthYear (200)
String
MaturityMonthYear
fix.MaxFloor MaxFloor (111)
String
MaxFloor
fix.MaxMessageSize MaxMessageSize (383)
String
MaxMessageSize
fix.MaxShow MaxShow (210)
String
MaxShow
fix.MessageEncoding MessageEncoding (347)
String
MessageEncoding
fix.MidPx MidPx (631)
String
MidPx
fix.MidYield MidYield (633)
String
MidYield
fix.MinBidSize MinBidSize (647)
String
MinBidSize
fix.MinOfferSize MinOfferSize (648)
String
MinOfferSize
fix.MinQty MinQty (110)
String
MinQty
fix.MinTradeVol MinTradeVol (562)
String
MinTradeVol
fix.MiscFeeAmt MiscFeeAmt (137)
String
MiscFeeAmt
fix.MiscFeeCurr MiscFeeCurr (138)
String
MiscFeeCurr
fix.MiscFeeType MiscFeeType (139)
String
MiscFeeType
fix.MktBidPx MktBidPx (645)
String
MktBidPx
fix.MktOfferPx MktOfferPx (646)
String
MktOfferPx
fix.MoneyLaunderingStatus MoneyLaunderingStatus (481)
String
MoneyLaunderingStatus
fix.MsgDirection MsgDirection (385)
String
MsgDirection
fix.MsgSeqNum MsgSeqNum (34)
String
MsgSeqNum
fix.MsgType MsgType (35)
String
MsgType
fix.MultiLegReportingType MultiLegReportingType (442)
String
MultiLegReportingType
fix.MultiLegRptTypeReq MultiLegRptTypeReq (563)
String
MultiLegRptTypeReq
fix.NestedPartyID NestedPartyID (524)
String
NestedPartyID
fix.NestedPartyIDSource NestedPartyIDSource (525)
String
NestedPartyIDSource
fix.NestedPartyRole NestedPartyRole (538)
String
NestedPartyRole
fix.NestedPartySubID NestedPartySubID (545)
String
NestedPartySubID
fix.NetChgPrevDay NetChgPrevDay (451)
String
NetChgPrevDay
fix.NetGrossInd NetGrossInd (430)
String
NetGrossInd
fix.NetMoney NetMoney (118)
String
NetMoney
fix.NewSeqNo NewSeqNo (36)
String
NewSeqNo
fix.NoAffectedOrders NoAffectedOrders (534)
String
NoAffectedOrders
fix.NoAllocs NoAllocs (78)
String
NoAllocs
fix.NoBidComponents NoBidComponents (420)
String
NoBidComponents
fix.NoBidDescriptors NoBidDescriptors (398)
String
NoBidDescriptors
fix.NoClearingInstructions NoClearingInstructions (576)
String
NoClearingInstructions
fix.NoContAmts NoContAmts (518)
String
NoContAmts
fix.NoContraBrokers NoContraBrokers (382)
String
NoContraBrokers
fix.NoDates NoDates (580)
String
NoDates
fix.NoDistribInsts NoDistribInsts (510)
String
NoDistribInsts
fix.NoDlvyInst NoDlvyInst (85)
String
NoDlvyInst
fix.NoExecs NoExecs (124)
String
NoExecs
fix.NoHops NoHops (627)
String
NoHops
fix.NoIOIQualifiers NoIOIQualifiers (199)
String
NoIOIQualifiers
fix.NoInstrAttrib NoInstrAttrib (870)
String
NoInstrAttrib
fix.NoLegSecurityAltID NoLegSecurityAltID (604)
String
NoLegSecurityAltID
fix.NoLegs NoLegs (555)
String
NoLegs
fix.NoMDEntries NoMDEntries (268)
String
NoMDEntries
fix.NoMDEntryTypes NoMDEntryTypes (267)
String
NoMDEntryTypes
fix.NoMiscFees NoMiscFees (136)
String
NoMiscFees
fix.NoMsgTypes NoMsgTypes (384)
String
NoMsgTypes
fix.NoNestedPartyIDs NoNestedPartyIDs (539)
String
NoNestedPartyIDs
fix.NoOrders NoOrders (73)
String
NoOrders
fix.NoPartyIDs NoPartyIDs (453)
String
NoPartyIDs
fix.NoQuoteEntries NoQuoteEntries (295)
String
NoQuoteEntries
fix.NoQuoteQualifiers NoQuoteQualifiers (735)
String
NoQuoteQualifiers
fix.NoQuoteSets NoQuoteSets (296)
String
NoQuoteSets
fix.NoRegistDtls NoRegistDtls (473)
String
NoRegistDtls
fix.NoRelatedSym NoRelatedSym (146)
String
NoRelatedSym
fix.NoRoutingIDs NoRoutingIDs (215)
String
NoRoutingIDs
fix.NoRpts NoRpts (82)
String
NoRpts
fix.NoSecurityAltID NoSecurityAltID (454)
String
NoSecurityAltID
fix.NoSecurityTypes NoSecurityTypes (558)
String
NoSecurityTypes
fix.NoSides NoSides (552)
String
NoSides
fix.NoStipulations NoStipulations (232)
String
NoStipulations
fix.NoStrikes NoStrikes (428)
String
NoStrikes
fix.NoTradingSessions NoTradingSessions (386)
String
NoTradingSessions
fix.NoUnderlyingSecurityAltID NoUnderlyingSecurityAltID (457)
String
NoUnderlyingSecurityAltID
fix.NotifyBrokerOfCredit NotifyBrokerOfCredit (208)
String
NotifyBrokerOfCredit
fix.NumBidders NumBidders (417)
String
NumBidders
fix.NumDaysInterest NumDaysInterest (157)
String
NumDaysInterest
fix.NumTickets NumTickets (395)
String
NumTickets
fix.NumberOfOrders NumberOfOrders (346)
String
NumberOfOrders
fix.OddLot OddLot (575)
String
OddLot
fix.OfferForwardPoints OfferForwardPoints (191)
String
OfferForwardPoints
fix.OfferForwardPoints2 OfferForwardPoints2 (643)
String
OfferForwardPoints2
fix.OfferPx OfferPx (133)
String
OfferPx
fix.OfferSize OfferSize (135)
String
OfferSize
fix.OfferSpotRate OfferSpotRate (190)
String
OfferSpotRate
fix.OfferYield OfferYield (634)
String
OfferYield
fix.OnBehalfOfCompID OnBehalfOfCompID (115)
String
OnBehalfOfCompID
fix.OnBehalfOfLocationID OnBehalfOfLocationID (144)
String
OnBehalfOfLocationID
fix.OnBehalfOfSendingTime OnBehalfOfSendingTime (370)
String
OnBehalfOfSendingTime
fix.OnBehalfOfSubID OnBehalfOfSubID (116)
String
OnBehalfOfSubID
fix.OpenCloseSettleFlag OpenCloseSettleFlag (286)
String
OpenCloseSettleFlag
fix.OptAttribute OptAttribute (206)
String
OptAttribute
fix.OrdRejReason OrdRejReason (103)
String
OrdRejReason
fix.OrdStatus OrdStatus (39)
String
OrdStatus
fix.OrdType OrdType (40)
String
OrdType
fix.OrderCapacity OrderCapacity (528)
String
OrderCapacity
fix.OrderID OrderID (37)
String
OrderID
fix.OrderPercent OrderPercent (516)
String
OrderPercent
fix.OrderQty OrderQty (38)
String
OrderQty
fix.OrderQty2 OrderQty2 (192)
String
OrderQty2
fix.OrderRestrictions OrderRestrictions (529)
String
OrderRestrictions
fix.OrigClOrdID OrigClOrdID (41)
String
OrigClOrdID
fix.OrigCrossID OrigCrossID (551)
String
OrigCrossID
fix.OrigOrdModTime OrigOrdModTime (586)
String
OrigOrdModTime
fix.OrigSendingTime OrigSendingTime (122)
String
OrigSendingTime
fix.OrigTime OrigTime (42)
String
OrigTime
fix.OutMainCntryUIndex OutMainCntryUIndex (412)
String
OutMainCntryUIndex
fix.OutsideIndexPct OutsideIndexPct (407)
String
OutsideIndexPct
fix.OwnerType OwnerType (522)
String
OwnerType
fix.OwnershipType OwnershipType (517)
String
OwnershipType
fix.PartyID PartyID (448)
String
PartyID
fix.PartyIDSource PartyIDSource (447)
String
PartyIDSource
fix.PartyRole PartyRole (452)
String
PartyRole
fix.PartySubID PartySubID (523)
String
PartySubID
fix.Password Password (554)
String
Password
fix.PaymentDate PaymentDate (504)
String
PaymentDate
fix.PaymentMethod PaymentMethod (492)
String
PaymentMethod
fix.PaymentRef PaymentRef (476)
String
PaymentRef
fix.PaymentRemitterID PaymentRemitterID (505)
String
PaymentRemitterID
fix.PegDifference PegDifference (211)
String
PegDifference
fix.Pool Pool (691)
String
Pool
fix.PositionEffect PositionEffect (77)
String
PositionEffect
fix.PossDupFlag PossDupFlag (43)
String
PossDupFlag
fix.PossResend PossResend (97)
String
PossResend
fix.PreallocMethod PreallocMethod (591)
String
PreallocMethod
fix.PrevClosePx PrevClosePx (140)
String
PrevClosePx
fix.PreviouslyReported PreviouslyReported (570)
String
PreviouslyReported
fix.Price Price (44)
String
Price
fix.Price2 Price2 (640)
String
Price2
fix.PriceImprovement PriceImprovement (639)
String
PriceImprovement
fix.PriceType PriceType (423)
String
PriceType
fix.PriorityIndicator PriorityIndicator (638)
String
PriorityIndicator
fix.ProcessCode ProcessCode (81)
String
ProcessCode
fix.Product Product (460)
String
Product
fix.ProgPeriodInterval ProgPeriodInterval (415)
String
ProgPeriodInterval
fix.ProgRptReqs ProgRptReqs (414)
String
ProgRptReqs
fix.PutOrCall PutOrCall (201)
String
PutOrCall
fix.Quantity Quantity (53)
String
Quantity
fix.QuantityType QuantityType (465)
String
QuantityType
fix.QuoteCancelType QuoteCancelType (298)
String
QuoteCancelType
fix.QuoteCondition QuoteCondition (276)
String
QuoteCondition
fix.QuoteEntryID QuoteEntryID (299)
String
QuoteEntryID
fix.QuoteEntryRejectReason QuoteEntryRejectReason (368)
String
QuoteEntryRejectReason
fix.QuoteID QuoteID (117)
String
QuoteID
fix.QuoteQualifier QuoteQualifier (695)
String
QuoteQualifier
fix.QuoteRejectReason QuoteRejectReason (300)
String
QuoteRejectReason
fix.QuoteReqID QuoteReqID (131)
String
QuoteReqID
fix.QuoteRequestRejectReason QuoteRequestRejectReason (658)
String
QuoteRequestRejectReason
fix.QuoteRequestType QuoteRequestType (303)
String
QuoteRequestType
fix.QuoteRespID QuoteRespID (693)
String
QuoteRespID
fix.QuoteRespType QuoteRespType (694)
String
QuoteRespType
fix.QuoteResponseLevel QuoteResponseLevel (301)
String
QuoteResponseLevel
fix.QuoteSetID QuoteSetID (302)
String
QuoteSetID
fix.QuoteSetValidUntilTime QuoteSetValidUntilTime (367)
String
QuoteSetValidUntilTime
fix.QuoteStatus QuoteStatus (297)
String
QuoteStatus
fix.QuoteStatusReqID QuoteStatusReqID (649)
String
QuoteStatusReqID
fix.QuoteType QuoteType (537)
String
QuoteType
fix.RFQReqID RFQReqID (644)
String
RFQReqID
fix.RatioQty RatioQty (319)
String
RatioQty
fix.RawData RawData (96)
String
RawData
fix.RawDataLength RawDataLength (95)
String
RawDataLength
fix.RedemptionDate RedemptionDate (240)
String
RedemptionDate
fix.RefAllocID RefAllocID (72)
String
RefAllocID
fix.RefMsgType RefMsgType (372)
String
RefMsgType
fix.RefSeqNum RefSeqNum (45)
String
RefSeqNum
fix.RefTagID RefTagID (371)
String
RefTagID
fix.RegistAcctType RegistAcctType (493)
String
RegistAcctType
fix.RegistDetls RegistDetls (509)
String
RegistDetls
fix.RegistEmail RegistEmail (511)
String
RegistEmail
fix.RegistID RegistID (513)
String
RegistID
fix.RegistRefID RegistRefID (508)
String
RegistRefID
fix.RegistRejReasonCode RegistRejReasonCode (507)
String
RegistRejReasonCode
fix.RegistRejReasonText RegistRejReasonText (496)
String
RegistRejReasonText
fix.RegistStatus RegistStatus (506)
String
RegistStatus
fix.RegistTransType RegistTransType (514)
String
RegistTransType
fix.RelatdSym RelatdSym (46)
String
RelatdSym
fix.RepoCollateralSecurityType RepoCollateralSecurityType (239)
String
RepoCollateralSecurityType
fix.ReportToExch ReportToExch (113)
String
ReportToExch
fix.RepurchaseRate RepurchaseRate (227)
String
RepurchaseRate
fix.RepurchaseTerm RepurchaseTerm (226)
String
RepurchaseTerm
fix.ReservedAllocated ReservedAllocated (261)
String
ReservedAllocated
fix.ResetSeqNumFlag ResetSeqNumFlag (141)
String
ResetSeqNumFlag
fix.RoundLot RoundLot (561)
String
RoundLot
fix.RoundingDirection RoundingDirection (468)
String
RoundingDirection
fix.RoundingModulus RoundingModulus (469)
String
RoundingModulus
fix.RoutingID RoutingID (217)
String
RoutingID
fix.RoutingType RoutingType (216)
String
RoutingType
fix.RptSeq RptSeq (83)
String
RptSeq
fix.Rule80A Rule80A (47)
String
Rule80A
fix.Scope Scope (546)
String
Scope
fix.SecDefStatus SecDefStatus (653)
String
SecDefStatus
fix.SecondaryClOrdID SecondaryClOrdID (526)
String
SecondaryClOrdID
fix.SecondaryExecID SecondaryExecID (527)
String
SecondaryExecID
fix.SecondaryOrderID SecondaryOrderID (198)
String
SecondaryOrderID
fix.SecureData SecureData (91)
String
SecureData
fix.SecureDataLen SecureDataLen (90)
String
SecureDataLen
fix.SecurityAltID SecurityAltID (455)
String
SecurityAltID
fix.SecurityAltIDSource SecurityAltIDSource (456)
String
SecurityAltIDSource
fix.SecurityDesc SecurityDesc (107)
String
SecurityDesc
fix.SecurityExchange SecurityExchange (207)
String
SecurityExchange
fix.SecurityID SecurityID (48)
String
SecurityID
fix.SecurityIDSource SecurityIDSource (22)
String
SecurityIDSource
fix.SecurityListRequestType SecurityListRequestType (559)
String
SecurityListRequestType
fix.SecurityReqID SecurityReqID (320)
String
SecurityReqID
fix.SecurityRequestResult SecurityRequestResult (560)
String
SecurityRequestResult
fix.SecurityRequestType SecurityRequestType (321)
String
SecurityRequestType
fix.SecurityResponseID SecurityResponseID (322)
String
SecurityResponseID
fix.SecurityResponseType SecurityResponseType (323)
String
SecurityResponseType
fix.SecuritySettlAgentAcctName SecuritySettlAgentAcctName (179)
String
SecuritySettlAgentAcctName
fix.SecuritySettlAgentAcctNum SecuritySettlAgentAcctNum (178)
String
SecuritySettlAgentAcctNum
fix.SecuritySettlAgentCode SecuritySettlAgentCode (177)
String
SecuritySettlAgentCode
fix.SecuritySettlAgentContactName SecuritySettlAgentContactName (180)
String
SecuritySettlAgentContactName
fix.SecuritySettlAgentContactPhone SecuritySettlAgentContactPhone (181)
String
SecuritySettlAgentContactPhone
fix.SecuritySettlAgentName SecuritySettlAgentName (176)
String
SecuritySettlAgentName
fix.SecurityStatusReqID SecurityStatusReqID (324)
String
SecurityStatusReqID
fix.SecuritySubType SecuritySubType (762)
String
SecuritySubType
fix.SecurityTradingStatus SecurityTradingStatus (326)
String
SecurityTradingStatus
fix.SecurityType SecurityType (167)
String
SecurityType
fix.SellVolume SellVolume (331)
String
SellVolume
fix.SellerDays SellerDays (287)
String
SellerDays
fix.SenderCompID SenderCompID (49)
String
SenderCompID
fix.SenderLocationID SenderLocationID (142)
String
SenderLocationID
fix.SenderSubID SenderSubID (50)
String
SenderSubID
fix.SendingDate SendingDate (51)
String
SendingDate
fix.SendingTime SendingTime (52)
String
SendingTime
fix.SessionRejectReason SessionRejectReason (373)
String
SessionRejectReason
fix.SettlBrkrCode SettlBrkrCode (174)
String
SettlBrkrCode
fix.SettlCurrAmt SettlCurrAmt (119)
String
SettlCurrAmt
fix.SettlCurrBidFxRate SettlCurrBidFxRate (656)
String
SettlCurrBidFxRate
fix.SettlCurrFxRate SettlCurrFxRate (155)
String
SettlCurrFxRate
fix.SettlCurrFxRateCalc SettlCurrFxRateCalc (156)
String
SettlCurrFxRateCalc
fix.SettlCurrOfferFxRate SettlCurrOfferFxRate (657)
String
SettlCurrOfferFxRate
fix.SettlCurrency SettlCurrency (120)
String
SettlCurrency
fix.SettlDeliveryType SettlDeliveryType (172)
String
SettlDeliveryType
fix.SettlDepositoryCode SettlDepositoryCode (173)
String
SettlDepositoryCode
fix.SettlInstCode SettlInstCode (175)
String
SettlInstCode
fix.SettlInstID SettlInstID (162)
String
SettlInstID
fix.SettlInstMode SettlInstMode (160)
String
SettlInstMode
fix.SettlInstRefID SettlInstRefID (214)
String
SettlInstRefID
fix.SettlInstSource SettlInstSource (165)
String
SettlInstSource
fix.SettlInstTransType SettlInstTransType (163)
String
SettlInstTransType
fix.SettlLocation SettlLocation (166)
String
SettlLocation
fix.SettlmntTyp SettlmntTyp (63)
String
SettlmntTyp
fix.Side Side (54)
String
Side
fix.SideComplianceID SideComplianceID (659)
String
SideComplianceID
fix.SideValue1 SideValue1 (396)
String
SideValue1
fix.SideValue2 SideValue2 (397)
String
SideValue2
fix.SideValueInd SideValueInd (401)
String
SideValueInd
fix.Signature Signature (89)
String
Signature
fix.SignatureLength SignatureLength (93)
String
SignatureLength
fix.SolicitedFlag SolicitedFlag (377)
String
SolicitedFlag
fix.Spread Spread (218)
String
Spread
fix.StandInstDbID StandInstDbID (171)
String
StandInstDbID
fix.StandInstDbName StandInstDbName (170)
String
StandInstDbName
fix.StandInstDbType StandInstDbType (169)
String
StandInstDbType
fix.StateOrProvinceOfIssue StateOrProvinceOfIssue (471)
String
StateOrProvinceOfIssue
fix.StipulationType StipulationType (233)
String
StipulationType
fix.StipulationValue StipulationValue (234)
String
StipulationValue
fix.StopPx StopPx (99)
String
StopPx
fix.StrikePrice StrikePrice (202)
String
StrikePrice
fix.StrikeTime StrikeTime (443)
String
StrikeTime
fix.Subject Subject (147)
String
Subject
fix.SubscriptionRequestType SubscriptionRequestType (263)
String
SubscriptionRequestType
fix.Symbol Symbol (55)
String
Symbol
fix.SymbolSfx SymbolSfx (65)
String
SymbolSfx
fix.TargetCompID TargetCompID (56)
String
TargetCompID
fix.TargetLocationID TargetLocationID (143)
String
TargetLocationID
fix.TargetSubID TargetSubID (57)
String
TargetSubID
fix.TaxAdvantageType TaxAdvantageType (495)
String
TaxAdvantageType
fix.TestMessageIndicator TestMessageIndicator (464)
String
TestMessageIndicator
fix.TestReqID TestReqID (112)
String
TestReqID
fix.Text Text (58)
String
Text
fix.TickDirection TickDirection (274)
String
TickDirection
fix.TimeInForce TimeInForce (59)
String
TimeInForce
fix.TotNoOrders TotNoOrders (68)
String
TotNoOrders
fix.TotNoStrikes TotNoStrikes (422)
String
TotNoStrikes
fix.TotQuoteEntries TotQuoteEntries (304)
String
TotQuoteEntries
fix.TotalAccruedInterestAmt TotalAccruedInterestAmt (540)
String
TotalAccruedInterestAmt
fix.TotalAffectedOrders TotalAffectedOrders (533)
String
TotalAffectedOrders
fix.TotalNumSecurities TotalNumSecurities (393)
String
TotalNumSecurities
fix.TotalNumSecurityTypes TotalNumSecurityTypes (557)
String
TotalNumSecurityTypes
fix.TotalTakedown TotalTakedown (237)
String
TotalTakedown
fix.TotalVolumeTraded TotalVolumeTraded (387)
String
TotalVolumeTraded
fix.TotalVolumeTradedDate TotalVolumeTradedDate (449)
String
TotalVolumeTradedDate
fix.TotalVolumeTradedTime TotalVolumeTradedTime (450)
String
TotalVolumeTradedTime
fix.TradSesCloseTime TradSesCloseTime (344)
String
TradSesCloseTime
fix.TradSesEndTime TradSesEndTime (345)
String
TradSesEndTime
fix.TradSesMethod TradSesMethod (338)
String
TradSesMethod
fix.TradSesMode TradSesMode (339)
String
TradSesMode
fix.TradSesOpenTime TradSesOpenTime (342)
String
TradSesOpenTime
fix.TradSesPreCloseTime TradSesPreCloseTime (343)
String
TradSesPreCloseTime
fix.TradSesReqID TradSesReqID (335)
String
TradSesReqID
fix.TradSesStartTime TradSesStartTime (341)
String
TradSesStartTime
fix.TradSesStatus TradSesStatus (340)
String
TradSesStatus
fix.TradSesStatusRejReason TradSesStatusRejReason (567)
String
TradSesStatusRejReason
fix.TradeCondition TradeCondition (277)
String
TradeCondition
fix.TradeDate TradeDate (75)
String
TradeDate
fix.TradeInputDevice TradeInputDevice (579)
String
TradeInputDevice
fix.TradeInputSource TradeInputSource (578)
String
TradeInputSource
fix.TradeOriginationDate TradeOriginationDate (229)
String
TradeOriginationDate
fix.TradeReportID TradeReportID (571)
String
TradeReportID
fix.TradeReportRefID TradeReportRefID (572)
String
TradeReportRefID
fix.TradeReportTransType TradeReportTransType (487)
String
TradeReportTransType
fix.TradeRequestID TradeRequestID (568)
String
TradeRequestID
fix.TradeRequestType TradeRequestType (569)
String
TradeRequestType
fix.TradeType TradeType (418)
String
TradeType
fix.TradedFlatSwitch TradedFlatSwitch (258)
String
TradedFlatSwitch
fix.TradingSessionID TradingSessionID (336)
String
TradingSessionID
fix.TradingSessionSubID TradingSessionSubID (625)
String
TradingSessionSubID
fix.TransBkdTime TransBkdTime (483)
String
TransBkdTime
fix.TransactTime TransactTime (60)
String
TransactTime
fix.URLLink URLLink (149)
String
URLLink
fix.Underlying Underlying (318)
String
Underlying
fix.UnderlyingCFICode UnderlyingCFICode (463)
String
UnderlyingCFICode
fix.UnderlyingContractMultiplier UnderlyingContractMultiplier (436)
String
UnderlyingContractMultiplier
fix.UnderlyingCountryOfIssue UnderlyingCountryOfIssue (592)
String
UnderlyingCountryOfIssue
fix.UnderlyingCouponPaymentDate UnderlyingCouponPaymentDate (241)
String
UnderlyingCouponPaymentDate
fix.UnderlyingCouponRate UnderlyingCouponRate (435)
String
UnderlyingCouponRate
fix.UnderlyingCreditRating UnderlyingCreditRating (256)
String
UnderlyingCreditRating
fix.UnderlyingFactor UnderlyingFactor (246)
String
UnderlyingFactor
fix.UnderlyingInstrRegistry UnderlyingInstrRegistry (595)
String
UnderlyingInstrRegistry
fix.UnderlyingIssueDate UnderlyingIssueDate (242)
String
UnderlyingIssueDate
fix.UnderlyingIssuer UnderlyingIssuer (306)
String
UnderlyingIssuer
fix.UnderlyingLastPx UnderlyingLastPx (651)
String
UnderlyingLastPx
fix.UnderlyingLastQty UnderlyingLastQty (652)
String
UnderlyingLastQty
fix.UnderlyingLocaleOfIssue UnderlyingLocaleOfIssue (594)
String
UnderlyingLocaleOfIssue
fix.UnderlyingMaturityDate UnderlyingMaturityDate (542)
String
UnderlyingMaturityDate
fix.UnderlyingMaturityDay UnderlyingMaturityDay (314)
String
UnderlyingMaturityDay
fix.UnderlyingMaturityMonthYear UnderlyingMaturityMonthYear (313)
String
UnderlyingMaturityMonthYear
fix.UnderlyingOptAttribute UnderlyingOptAttribute (317)
String
UnderlyingOptAttribute
fix.UnderlyingProduct UnderlyingProduct (462)
String
UnderlyingProduct
fix.UnderlyingPutOrCall UnderlyingPutOrCall (315)
String
UnderlyingPutOrCall
fix.UnderlyingRedemptionDate UnderlyingRedemptionDate (247)
String
UnderlyingRedemptionDate
fix.UnderlyingRepoCollateralSecurityType UnderlyingRepoCollateralSecurityType (243)
String
UnderlyingRepoCollateralSecurityType
fix.UnderlyingRepurchaseRate UnderlyingRepurchaseRate (245)
String
UnderlyingRepurchaseRate
fix.UnderlyingRepurchaseTerm UnderlyingRepurchaseTerm (244)
String
UnderlyingRepurchaseTerm
fix.UnderlyingSecurityAltID UnderlyingSecurityAltID (458)
String
UnderlyingSecurityAltID
fix.UnderlyingSecurityAltIDSource UnderlyingSecurityAltIDSource (459)
String
UnderlyingSecurityAltIDSource
fix.UnderlyingSecurityDesc UnderlyingSecurityDesc (307)
String
UnderlyingSecurityDesc
fix.UnderlyingSecurityExchange UnderlyingSecurityExchange (308)
String
UnderlyingSecurityExchange
fix.UnderlyingSecurityID UnderlyingSecurityID (309)
String
UnderlyingSecurityID
fix.UnderlyingSecurityIDSource UnderlyingSecurityIDSource (305)
String
UnderlyingSecurityIDSource
fix.UnderlyingSecurityType UnderlyingSecurityType (310)
String
UnderlyingSecurityType
fix.UnderlyingStateOrProvinceOfIssue UnderlyingStateOrProvinceOfIssue (593)
String
UnderlyingStateOrProvinceOfIssue
fix.UnderlyingStrikePrice UnderlyingStrikePrice (316)
String
UnderlyingStrikePrice
fix.UnderlyingSymbol UnderlyingSymbol (311)
String
UnderlyingSymbol
fix.UnderlyingSymbolSfx UnderlyingSymbolSfx (312)
String
UnderlyingSymbolSfx
fix.UnsolicitedIndicator UnsolicitedIndicator (325)
String
UnsolicitedIndicator
fix.Urgency Urgency (61)
String
Urgency
fix.Username Username (553)
String
Username
fix.ValidUntilTime ValidUntilTime (62)
String
ValidUntilTime
fix.ValueOfFutures ValueOfFutures (408)
String
ValueOfFutures
fix.WaveNo WaveNo (105)
String
WaveNo
fix.WorkingIndicator WorkingIndicator (636)
String
WorkingIndicator
fix.WtAverageLiquidity WtAverageLiquidity (410)
String
WtAverageLiquidity
fix.XmlData XmlData (213)
String
XmlData
fix.XmlDataLen XmlDataLen (212)
String
XmlDataLen
fix.Yield Yield (236)
String
Yield
fix.YieldType YieldType (235)
String
YieldType
gdsdb.accept.arch Architecture
Unsigned 32-bit integer
gdsdb.accept.version Version
Unsigned 32-bit integer
gdsdb.attach.database Database
Unsigned 32-bit integer
gdsdb.attach.dpblength Database parameter block
Unsigned 32-bit integer
gdsdb.attach.filename Filename
String
gdsdb.compile.blr BLR
String
gdsdb.compile.filename Database
Unsigned 32-bit integer
gdsdb.connect.client Client Architecture
Unsigned 32-bit integer
gdsdb.connect.count Version option count
Unsigned 32-bit integer
gdsdb.connect.filename Filename
String
gdsdb.connect.object Object
Unsigned 32-bit integer
gdsdb.connect.operation Operation
Unsigned 32-bit integer
gdsdb.connect.partner Partner
Unsigned 64-bit integer
gdsdb.connect.pref Prefered version
No value
gdsdb.connect.pref.arch Architecture
Unsigned 32-bit integer
gdsdb.connect.pref.maxtype Maximum type
Unsigned 32-bit integer
gdsdb.connect.pref.mintype Minimum type
Unsigned 32-bit integer
gdsdb.connect.pref.version Version
Unsigned 32-bit integer
gdsdb.connect.pref.weight Prefference weight
Unsigned 32-bit integer
gdsdb.connect.type Type
Unsigned 32-bit integer
gdsdb.connect.userid User ID
String
gdsdb.connect.version Version
Unsigned 32-bit integer
gdsdb.cursor.statement Statement
Unsigned 32-bit integer
gdsdb.cursor.type Type
Unsigned 32-bit integer
gdsdb.ddl.blr BLR
String
gdsdb.ddl.database Database
Unsigned 32-bit integer
gdsdb.ddl.transaction Transaction
Unsigned 32-bit integer
gdsdb.event.arg Argument to ast routine
Unsigned 32-bit integer
gdsdb.event.ast ast routine
Unsigned 32-bit integer
gdsdb.event.database Database
Unsigned 32-bit integer
gdsdb.event.id ID
Unsigned 32-bit integer
gdsdb.event.items Event description block
String
gdsdb.execute.messagenumber Message number
Unsigned 32-bit integer
gdsdb.execute.messages Number of messages
Unsigned 32-bit integer
gdsdb.execute.outblr Output BLR
Unsigned 32-bit integer
gdsdb.execute.outmsgnr Output Message number
Unsigned 32-bit integer
gdsdb.execute.statement Statement
Unsigned 32-bit integer
gdsdb.execute.transaction Transaction
Unsigned 32-bit integer
gdsdb.fetch.messagenr Message number
Unsigned 32-bit integer
gdsdb.fetch.messages Number of messages
Unsigned 32-bit integer
gdsdb.fetch.statement Statement
Unsigned 32-bit integer
gdsdb.fetchresponse.messages Number of messages
Unsigned 32-bit integer
gdsdb.fetchresponse.option Option
Unsigned 32-bit integer
gdsdb.fetchresponse.statement Statement
Unsigned 32-bit integer
gdsdb.fetchresponse.status Status
Unsigned 32-bit integer
gdsdb.info.bufferlength Buffer length
Unsigned 32-bit integer
gdsdb.info.items Items
String
gdsdb.info.object Object
Unsigned 32-bit integer
gdsdb.insert.messagenr Message number
Unsigned 32-bit integer
gdsdb.insert.messages Number of messages
Unsigned 32-bit integer
gdsdb.insert.statement Statement
Unsigned 32-bit integer
gdsdb.opcode Opcode
Unsigned 32-bit integer
gdsdb.openblob.id ID
Unsigned 64-bit integer
gdsdb.openblob2.bpb Blob parameter block
String
gdsdb.openblob2.transaction Transaction
Unsigned 32-bit integer
gdsdb.prepare.blr BLR
Unsigned 32-bit integer
gdsdb.prepare.bufferlen Prepare, Bufferlength
Unsigned 32-bit integer
gdsdb.prepare.dialect Prepare, Dialect
Unsigned 32-bit integer
gdsdb.prepare.items Prepare, Information items
Unsigned 32-bit integer
gdsdb.prepare.querystr Prepare, Query
String
gdsdb.prepare.statement Prepare, Statement
Unsigned 32-bit integer
gdsdb.prepare.transaction Prepare, Transaction
Unsigned 32-bit integer
gdsdb.prepare2.messagenumber Message number
Unsigned 32-bit integer
gdsdb.prepare2.messages Number of messages
Unsigned 32-bit integer
gdsdb.prepare2.outblr Output BLR
Unsigned 32-bit integer
gdsdb.prepare2.outmsgnr Output Message number
Unsigned 32-bit integer
gdsdb.prepare2.transaction Transaction
Unsigned 32-bit integer
gdsdb.receive.direction Scroll direction
Unsigned 32-bit integer
gdsdb.receive.incarnation Incarnation
Unsigned 32-bit integer
gdsdb.receive.msgcount Message Count
Unsigned 32-bit integer
gdsdb.receive.msgnr Message number
Unsigned 32-bit integer
gdsdb.receive.offset Scroll offset
Unsigned 32-bit integer
gdsdb.receive.request Request
Unsigned 32-bit integer
gdsdb.receive.transation Transaction
Unsigned 32-bit integer
gdsdb.reconnect.database Database
Unsigned 32-bit integer
gdsdb.release.object Object
Unsigned 32-bit integer
gdsdb.response.blobid Blob ID
Unsigned 64-bit integer
gdsdb.response.data Data
String
gdsdb.response.object Response object
Unsigned 32-bit integer
gdsdb.response.status Status vector
No value
gdsdb.seekblob.blob Blob
Unsigned 32-bit integer
gdsdb.seekblob.mode Mode
Unsigned 32-bit integer
gdsdb.segment.blob Blob
Unsigned 32-bit integer
gdsdb.segment.length Length
Unsigned 32-bit integer
gdsdb.segment.segment Segment
String
gdsdb.send.incarnation Send request
Unsigned 32-bit integer
gdsdb.send.messages Send request
Unsigned 32-bit integer
gdsdb.send.msgnr Send request
Unsigned 32-bit integer
gdsdb.send.request Send request
Unsigned 32-bit integer
gdsdb.send.transaction Send request
Unsigned 32-bit integer
gdsdb.slice.id ID
Unsigned 64-bit integer
gdsdb.slice.parameters Parameters
Unsigned 32-bit integer
gdsdb.slice.sdl Slice description language
String
gdsdb.slice.transaction Transaction
Unsigned 32-bit integer
gdsdb.sliceresponse.length Length
Unsigned 32-bit integer
gdsdb.sqlresponse.msgcount SQL Response, Message Count
Unsigned 32-bit integer
gdsdb.transact.database Database
Unsigned 32-bit integer
gdsdb.transact.messages Messages
Unsigned 32-bit integer
gdsdb.transact.transaction Database
Unsigned 32-bit integer
gdsdb.transactresponse.messages Messages
Unsigned 32-bit integer
fractalgeneratorprotocol.buffer Buffer
Byte array
fractalgeneratorprotocol.data_points Points
Unsigned 32-bit integer
fractalgeneratorprotocol.data_start_x StartX
Unsigned 32-bit integer
fractalgeneratorprotocol.data_start_y StartY
Unsigned 32-bit integer
fractalgeneratorprotocol.message_flags Flags
Unsigned 8-bit integer
fractalgeneratorprotocol.message_length Length
Unsigned 16-bit integer
fractalgeneratorprotocol.message_type Type
Unsigned 8-bit integer
fractalgeneratorprotocol.parameter_algorithmid AlgorithmID
Unsigned 32-bit integer
fractalgeneratorprotocol.parameter_c1imag C1Imag
Double-precision floating point
fractalgeneratorprotocol.parameter_c1real C1Real
Double-precision floating point
fractalgeneratorprotocol.parameter_c2imag C2Imag
Double-precision floating point
fractalgeneratorprotocol.parameter_c2real C2Real
Double-precision floating point
fractalgeneratorprotocol.parameter_height Height
Unsigned 32-bit integer
fractalgeneratorprotocol.parameter_maxiterations MaxIterations
Unsigned 32-bit integer
fractalgeneratorprotocol.parameter_n N
Double-precision floating point
fractalgeneratorprotocol.parameter_width Width
Unsigned 32-bit integer
frame.cap_len Frame length stored into the capture file
Unsigned 32-bit integer
frame.coloring_rule.name Coloring Rule Name
String
The frame matched the coloring rule with this name
frame.coloring_rule.string Coloring Rule String
String
The frame matched this coloring rule string
frame.file_off File Offset
Signed 64-bit integer
frame.len Frame length on the wire
Unsigned 32-bit integer
frame.link_nr Link Number
Unsigned 16-bit integer
frame.marked Frame is marked
Boolean
Frame is marked in the GUI
frame.number Frame Number
Unsigned 32-bit integer
frame.p2p_dir Point-to-Point Direction
Unsigned 8-bit integer
frame.pkt_len Frame length on the wire
Unsigned 32-bit integer
frame.protocols Protocols in frame
String
Protocols carried by this frame
frame.ref_time This is a Time Reference frame
No value
This frame is a Time Reference frame
frame.time Arrival Time
Date/Time stamp
Absolute time when this frame was captured
frame.time_delta Time delta from previous captured frame
Time duration
Time delta from previous captured frame
frame.time_delta_displayed Time delta from previous displayed frame
Time duration
Time delta from previous displayed frame
frame.time_invalid Arrival Timestamp invalid
No value
The timestamp from the capture is out of the valid range
frame.time_relative Time since reference or first frame
Time duration
Time relative to time reference or first frame
fr.becn BECN
Boolean
Backward Explicit Congestion Notification
fr.chdlctype Type
Unsigned 16-bit integer
Frame Relay Cisco HDLC Encapsulated Protocol
fr.control Control Field
Unsigned 8-bit integer
Control field
fr.control.f Final
Boolean
fr.control.ftype Frame type
Unsigned 16-bit integer
fr.control.n_r N(R)
Unsigned 16-bit integer
fr.control.n_s N(S)
Unsigned 16-bit integer
fr.control.p Poll
Boolean
fr.control.s_ftype Supervisory frame type
Unsigned 16-bit integer
fr.control.u_modifier_cmd Command
Unsigned 8-bit integer
fr.control.u_modifier_resp Response
Unsigned 8-bit integer
fr.cr CR
Boolean
Command/Response
fr.dc DC
Boolean
Address/Control
fr.de DE
Boolean
Discard Eligibility
fr.dlci DLCI
Unsigned 32-bit integer
Data-Link Connection Identifier
fr.dlcore_control DL-CORE Control
Unsigned 8-bit integer
DL-Core control bits
fr.ea EA
Boolean
Extended Address
fr.fecn FECN
Boolean
Forward Explicit Congestion Notification
fr.lower_dlci Lower DLCI
Unsigned 8-bit integer
Lower bits of DLCI
fr.nlpid NLPID
Unsigned 8-bit integer
Frame Relay Encapsulated Protocol NLPID
fr.second_dlci Second DLCI
Unsigned 8-bit integer
Bits below upper bits of DLCI
fr.snap.oui Organization Code
Unsigned 24-bit integer
fr.snap.pid Protocol ID
Unsigned 16-bit integer
fr.snaptype Type
Unsigned 16-bit integer
Frame Relay SNAP Encapsulated Protocol
fr.third_dlci Third DLCI
Unsigned 8-bit integer
Additional bits of DLCI
fr.upper_dlci Upper DLCI
Unsigned 8-bit integer
Upper bits of DLCI
g723.frame_size_and_codec Frame size and codec type
Unsigned 8-bit integer
RATEFLAG_B0
g723.lpc.b5b0 LPC_B5...LPC_B0
Unsigned 8-bit integer
LPC_B5...LPC_B0
gmrp.attribute_event Event
Unsigned 8-bit integer
gmrp.attribute_length Length
Unsigned 8-bit integer
gmrp.attribute_type Type
Unsigned 8-bit integer
gmrp.attribute_value_group_membership Value
6-byte Hardware (MAC) Address
gmrp.attribute_value_service_requirement Value
Unsigned 8-bit integer
gmrp.protocol_id Protocol ID
Unsigned 16-bit integer
gvrp.attribute_event Event
Unsigned 8-bit integer
gvrp.attribute_length Length
Unsigned 8-bit integer
gvrp.attribute_type Type
Unsigned 8-bit integer
gvrp.attribute_value Value
Unsigned 16-bit integer
gvrp.protocol_id Protocol ID
Unsigned 16-bit integer
gprs_ns.bvci BVCI
Unsigned 16-bit integer
Cell ID
gprs_ns.cause Cause
Unsigned 8-bit integer
Cause
gprs_ns.ielength IE Length
Unsigned 16-bit integer
IE Length
gprs_ns.ietype IE Type
Unsigned 8-bit integer
IE Type
gprs_ns.nsei NSEI
Unsigned 16-bit integer
Network Service Entity Id
gprs_ns.nsvci NSVCI
Unsigned 16-bit integer
Network Service Virtual Connection id
gprs_ns.pdutype PDU Type
Unsigned 8-bit integer
NS Command
gprs_ns.spare Spare octet
Unsigned 8-bit integer
gtp.apn APN
String
Access Point Name
gtp.bssgp_cause BSSGP Cause
Unsigned 8-bit integer
BSSGP Cause
gtp.cause Cause
Unsigned 8-bit integer
Cause of operation
gtp.chrg_char Charging characteristics
Unsigned 16-bit integer
Charging characteristics
gtp.chrg_char_f Flat rate charging
Unsigned 16-bit integer
Flat rate charging
gtp.chrg_char_h Hot billing charging
Unsigned 16-bit integer
Hot billing charging
gtp.chrg_char_n Normal charging
Unsigned 16-bit integer
Normal charging
gtp.chrg_char_p Prepaid charging
Unsigned 16-bit integer
Prepaid charging
gtp.chrg_char_r Reserved
Unsigned 16-bit integer
Reserved
gtp.chrg_char_s Spare
Unsigned 16-bit integer
Spare
gtp.chrg_id Charging ID
Unsigned 32-bit integer
Charging ID
gtp.chrg_ipv4 CG address IPv4
IPv4 address
Charging Gateway address IPv4
gtp.chrg_ipv6 CG address IPv6
IPv6 address
Charging Gateway address IPv6
gtp.cksn_ksi Ciphering Key Sequence Number (CKSN)/Key Set Identifier (KSI)
Unsigned 8-bit integer
CKSN/KSI
gtp.cmn_flg.mbs_cnt_inf MBMS Counting Information
Boolean
MBMS Counting Information
gtp.cmn_flg.mbs_srv_type MBMS Service Type
Boolean
MBMS Service Type
gtp.cmn_flg.no_qos_neg No QoS negotiation
Boolean
No QoS negotiation
gtp.cmn_flg.nrsn NRSN bit field
Boolean
NRSN bit field
gtp.cmn_flg.ppc Prohibit Payload Compression
Boolean
Prohibit Payload Compression
gtp.cmn_flg.ran_pcd_rd RAN Procedures Ready
Boolean
RAN Procedures Ready
gtp.ext_apn_res Restriction Type
Unsigned 8-bit integer
Restriction Type
gtp.ext_flow_label Flow Label Data I
Unsigned 16-bit integer
Flow label data
gtp.ext_geo_loc_type Geographic Location Type
Unsigned 8-bit integer
Geographic Location Type
gtp.ext_id Extension identifier
Unsigned 16-bit integer
Extension Identifier
gtp.ext_imeisv IMEI(SV)
String
IMEI(SV)
gtp.ext_length Length
Unsigned 16-bit integer
IE Length
gtp.ext_rat_type RAT Type
Unsigned 8-bit integer
RAT Type
gtp.ext_sac SAC
Unsigned 16-bit integer
SAC
gtp.ext_val Extension value
Byte array
Extension Value
gtp.flags Flags
Unsigned 8-bit integer
Ver/PT/Spare...
gtp.flags.e Is Next Extension Header present?
Boolean
Is Next Extension Header present? (1 = yes, 0 = no)
gtp.flags.payload Protocol type
Unsigned 8-bit integer
Protocol Type
gtp.flags.pn Is N-PDU number present?
Boolean
Is N-PDU number present? (1 = yes, 0 = no)
gtp.flags.reserved Reserved
Unsigned 8-bit integer
Reserved (shall be sent as '111' )
gtp.flags.s Is Sequence Number present?
Boolean
Is Sequence Number present? (1 = yes, 0 = no)
gtp.flags.snn Is SNDCP N-PDU included?
Boolean
Is SNDCP N-PDU LLC Number included? (1 = yes, 0 = no)
gtp.flags.version Version
Unsigned 8-bit integer
GTP Version
gtp.flow_ii Flow Label Data II
Unsigned 16-bit integer
Downlink flow label data
gtp.flow_label Flow label
Unsigned 16-bit integer
Flow label
gtp.flow_sig Flow label Signalling
Unsigned 16-bit integer
Flow label signalling
gtp.gsn_addr_len GSN Address Length
Unsigned 8-bit integer
GSN Address Length
gtp.gsn_addr_type GSN Address Type
Unsigned 8-bit integer
GSN Address Type
gtp.gsn_ipv4 GSN address IPv4
IPv4 address
GSN address IPv4
gtp.gsn_ipv6 GSN address IPv6
IPv6 address
GSN address IPv6
gtp.imsi IMSI
String
International Mobile Subscriber Identity number
gtp.lac LAC
Unsigned 16-bit integer
Location Area Code
gtp.length Length
Unsigned 16-bit integer
Length (i.e. number of octets after TID or TEID)
gtp.map_cause MAP cause
Unsigned 8-bit integer
MAP cause
gtp.mbms_sa_code MBMS service area code
Unsigned 16-bit integer
MBMS service area code
gtp.mbms_ses_dur_days Estimated session duration days
Unsigned 8-bit integer
Estimated session duration days
gtp.mbms_ses_dur_s Estimated session duration seconds
Unsigned 24-bit integer
Estimated session duration seconds
gtp.mbs_2g_3g_ind MBMS 2G/3G Indicator
Unsigned 8-bit integer
MBMS 2G/3G Indicator
gtp.mcc MCC
Unsigned 16-bit integer
Mobile Country Code
gtp.message Message Type
Unsigned 8-bit integer
GTP Message Type
gtp.mnc MNC
Unsigned 8-bit integer
Mobile Network Code
gtp.ms_reason MS not reachable reason
Unsigned 8-bit integer
MS Not Reachable Reason
gtp.ms_valid MS validated
Boolean
MS validated
gtp.msisdn MSISDN
String
MS international PSTN/ISDN number
gtp.next Next extension header type
Unsigned 8-bit integer
Next Extension Header Type
gtp.no_of_mbms_sa_codes Number of MBMS service area codes
Unsigned 8-bit integer
Number N of MBMS service area codes
gtp.no_of_vectors No of Vectors
Unsigned 8-bit integer
No of Vectors
gtp.node_ipv4 Node address IPv4
IPv4 address
Recommended node address IPv4
gtp.node_ipv6 Node address IPv6
IPv6 address
Recommended node address IPv6
gtp.npdu_number N-PDU Number
Unsigned 8-bit integer
N-PDU Number
gtp.nsapi NSAPI
Unsigned 8-bit integer
Network layer Service Access Point Identifier
gtp.pkt_flow_id Packet Flow ID
Unsigned 8-bit integer
Packet Flow ID
gtp.ptmsi P-TMSI
Unsigned 32-bit integer
Packet-Temporary Mobile Subscriber Identity
gtp.ptmsi_sig P-TMSI Signature
Unsigned 24-bit integer
P-TMSI Signature
gtp.qos_al_ret_priority Allocation/Retention priority
Unsigned 8-bit integer
Allocation/Retention Priority
gtp.qos_del_err_sdu Delivery of erroneous SDU
Unsigned 8-bit integer
Delivery of Erroneous SDU
gtp.qos_del_order Delivery order
Unsigned 8-bit integer
Delivery Order
gtp.qos_delay QoS delay
Unsigned 8-bit integer
Quality of Service Delay Class
gtp.qos_guar_dl Guaranteed bit rate for downlink
Unsigned 8-bit integer
Guaranteed bit rate for downlink
gtp.qos_guar_ul Guaranteed bit rate for uplink
Unsigned 8-bit integer
Guaranteed bit rate for uplink
gtp.qos_max_dl Maximum bit rate for downlink
Unsigned 8-bit integer
Maximum bit rate for downlink
gtp.qos_max_sdu_size Maximum SDU size
Unsigned 8-bit integer
Maximum SDU size
gtp.qos_max_ul Maximum bit rate for uplink
Unsigned 8-bit integer
Maximum bit rate for uplink
gtp.qos_mean QoS mean
Unsigned 8-bit integer
Quality of Service Mean Throughput
gtp.qos_peak QoS peak
Unsigned 8-bit integer
Quality of Service Peak Throughput
gtp.qos_precedence QoS precedence
Unsigned 8-bit integer
Quality of Service Precedence Class
gtp.qos_reliabilty QoS reliability
Unsigned 8-bit integer
Quality of Service Reliability Class
gtp.qos_res_ber Residual BER
Unsigned 8-bit integer
Residual Bit Error Rate
gtp.qos_sdu_err_ratio SDU Error ratio
Unsigned 8-bit integer
SDU Error Ratio
gtp.qos_spare1 Spare
Unsigned 8-bit integer
Spare (shall be sent as '00' )
gtp.qos_spare2 Spare
Unsigned 8-bit integer
Spare (shall be sent as 0)
gtp.qos_spare3 Spare
Unsigned 8-bit integer
Spare (shall be sent as '000' )
gtp.qos_traf_class Traffic class
Unsigned 8-bit integer
Traffic Class
gtp.qos_traf_handl_prio Traffic handling priority
Unsigned 8-bit integer
Traffic Handling Priority
gtp.qos_trans_delay Transfer delay
Unsigned 8-bit integer
Transfer Delay
gtp.qos_version Version
String
Version of the QoS Profile
gtp.rab_gtp_dn Downlink GTP-U seq number
Unsigned 16-bit integer
Downlink GTP-U sequence number
gtp.rab_gtp_up Uplink GTP-U seq number
Unsigned 16-bit integer
Uplink GTP-U sequence number
gtp.rab_pdu_dn Downlink next PDCP-PDU seq number
Unsigned 16-bit integer
Downlink next PDCP-PDU sequence number
gtp.rab_pdu_up Uplink next PDCP-PDU seq number
Unsigned 16-bit integer
Uplink next PDCP-PDU sequence number
gtp.rac RAC
Unsigned 8-bit integer
Routing Area Code
gtp.ranap_cause RANAP cause
Unsigned 8-bit integer
RANAP cause
gtp.recovery Recovery
Unsigned 8-bit integer
Restart counter
gtp.reorder Reordering required
Boolean
Reordering required
gtp.rnc_ipv4 RNC address IPv4
IPv4 address
Radio Network Controller address IPv4
gtp.rnc_ipv6 RNC address IPv6
IPv6 address
Radio Network Controller address IPv6
gtp.rp Radio Priority
Unsigned 8-bit integer
Radio Priority for uplink tx
gtp.rp_nsapi NSAPI in Radio Priority
Unsigned 8-bit integer
Network layer Service Access Point Identifier in Radio Priority
gtp.rp_sms Radio Priority SMS
Unsigned 8-bit integer
Radio Priority for MO SMS
gtp.rp_spare Reserved
Unsigned 8-bit integer
Spare bit
gtp.security_mode Security Mode
Unsigned 8-bit integer
Security Mode
gtp.sel_mode Selection mode
Unsigned 8-bit integer
Selection Mode
gtp.seq_number Sequence number
Unsigned 16-bit integer
Sequence Number
gtp.sndcp_number SNDCP N-PDU LLC Number
Unsigned 8-bit integer
SNDCP N-PDU LLC Number
gtp.targetid TargetID
Unsigned 32-bit integer
TargetID
gtp.tear_ind Teardown Indicator
Boolean
Teardown Indicator
gtp.teid TEID
Unsigned 32-bit integer
Tunnel Endpoint Identifier
gtp.teid_cp TEID Control Plane
Unsigned 32-bit integer
Tunnel Endpoint Identifier Control Plane
gtp.teid_data TEID Data I
Unsigned 32-bit integer
Tunnel Endpoint Identifier Data I
gtp.teid_ii TEID Data II
Unsigned 32-bit integer
Tunnel Endpoint Identifier Data II
gtp.tft_code TFT operation code
Unsigned 8-bit integer
TFT operation code
gtp.tft_eval Evaluation precedence
Unsigned 8-bit integer
Evaluation precedence
gtp.tft_number Number of packet filters
Unsigned 8-bit integer
Number of packet filters
gtp.tft_spare TFT spare bit
Unsigned 8-bit integer
TFT spare bit
gtp.tid TID
String
Tunnel Identifier
gtp.time_2_dta_tr Time to MBMS Data Transfer
Unsigned 8-bit integer
Time to MBMS Data Transfer
gtp.tlli TLLI
Unsigned 32-bit integer
Temporary Logical Link Identity
gtp.tr_comm Packet transfer command
Unsigned 8-bit integer
Packat transfer command
gtp.trace_ref Trace reference
Unsigned 16-bit integer
Trace reference
gtp.trace_type Trace type
Unsigned 16-bit integer
Trace type
gtp.ulink_teid_cp Uplink TEID Control Plane
Unsigned 32-bit integer
Uplink Tunnel Endpoint Identifier Control Plane
gtp.ulink_teid_data Uplink TEID Data I
Unsigned 32-bit integer
UplinkTunnel Endpoint Identifier Data I
gtp.unknown Unknown data (length)
Unsigned 16-bit integer
Unknown data
gtp.user_addr_pdp_org PDP type organization
Unsigned 8-bit integer
PDP type organization
gtp.user_addr_pdp_type PDP type number
Unsigned 8-bit integer
PDP type
gtp.user_ipv4 End user address IPv4
IPv4 address
End user address IPv4
gtp.user_ipv6 End user address IPv6
IPv6 address
End user address IPv6
gsm_a.A5_2_algorithm_sup A5/2 algorithm supported
Unsigned 8-bit integer
A5/2 algorithm supported
gsm_a.A5_3_algorithm_sup A5/3 algorithm supported
Unsigned 8-bit integer
A5/3 algorithm supported
gsm_a.CM3 CM3
Unsigned 8-bit integer
CM3
gsm_a.CMSP CMSP: CM Service Prompt
Unsigned 8-bit integer
CMSP: CM Service Prompt
gsm_a.FC_frequency_cap FC Frequency Capability
Unsigned 8-bit integer
FC Frequency Capability
gsm_a.L3_protocol_discriminator Protocol discriminator
Unsigned 8-bit integer
Protocol discriminator
gsm_a.LCS_VA_cap LCS VA capability (LCS value added location request notification capability)
Unsigned 8-bit integer
LCS VA capability (LCS value added location request notification capability)
gsm_a.MSC2_rev Revision Level
Unsigned 8-bit integer
Revision level
gsm_a.SM_cap SM capability (MT SMS pt to pt capability)
Unsigned 8-bit integer
SM capability (MT SMS pt to pt capability)
gsm_a.SS_screening_indicator SS Screening Indicator
Unsigned 8-bit integer
SS Screening Indicator
gsm_a.SoLSA SoLSA
Unsigned 8-bit integer
SoLSA
gsm_a.UCS2_treatment UCS2 treatment
Unsigned 8-bit integer
UCS2 treatment
gsm_a.VBS_notification_rec VBS notification reception
Unsigned 8-bit integer
VBS notification reception
gsm_a.VGCS_notification_rec VGCS notification reception
Unsigned 8-bit integer
VGCS notification reception
gsm_a.algorithm_identifier Algorithm identifier
Unsigned 8-bit integer
Algorithm_identifier
gsm_a.apdu_protocol_id Protocol ID
Unsigned 8-bit integer
APDU embedded protocol id
gsm_a.bcc BCC
Unsigned 8-bit integer
BCC
gsm_a.bcch_arfcn BCCH ARFCN(RF channel number)
Unsigned 16-bit integer
BCCH ARFCN
gsm_a.be.cell_id_disc Cell identification discriminator
Unsigned 8-bit integer
Cell identificationdiscriminator
gsm_a.be.rnc_id RNC-ID
Unsigned 16-bit integer
RNC-ID
gsm_a.bssmap_msgtype BSSMAP Message Type
Unsigned 8-bit integer
gsm_a.call_prio Call priority
Unsigned 8-bit integer
Call priority
gsm_a.cell_ci Cell CI
Unsigned 16-bit integer
gsm_a.cell_lac Cell LAC
Unsigned 16-bit integer
gsm_a.cld_party_bcd_num Called Party BCD Number
String
gsm_a.clg_party_bcd_num Calling Party BCD Number
String
gsm_a.dtap_msg_cc_type DTAP Call Control Message Type
Unsigned 8-bit integer
gsm_a.dtap_msg_gmm_type DTAP GPRS Mobility Management Message Type
Unsigned 8-bit integer
gsm_a.dtap_msg_mm_type DTAP Mobility Management Message Type
Unsigned 8-bit integer
gsm_a.dtap_msg_rr_type DTAP Radio Resources Management Message Type
Unsigned 8-bit integer
gsm_a.dtap_msg_sm_type DTAP GPRS Session Management Message Type
Unsigned 8-bit integer
gsm_a.dtap_msg_sms_type DTAP Short Message Service Message Type
Unsigned 8-bit integer
gsm_a.dtap_msg_ss_type DTAP Non call Supplementary Service Message Type
Unsigned 8-bit integer
gsm_a.extension Extension
Boolean
Extension
gsm_a.gmm.cn_spec_drs_cycle_len_coef CN Specific DRX cycle length coefficient
Unsigned 8-bit integer
CN Specific DRX cycle length coefficient
gsm_a.gmm.non_drx_timer Non-DRX timer
Unsigned 8-bit integer
Non-DRX timer
gsm_a.gmm.split_on_ccch SPLIT on CCCH
Boolean
SPLIT on CCCH
gsm_a.ie.mobileid.type Mobile Identity Type
Unsigned 8-bit integer
Mobile Identity Type
gsm_a.imei IMEI
String
gsm_a.imeisv IMEISV
String
gsm_a.imsi IMSI
String
gsm_a.len Length
Unsigned 8-bit integer
gsm_a.lsa_id LSA Identifier
Unsigned 24-bit integer
LSA Identifier
gsm_a.mbs_service_id MBMS Service ID
Byte array
MBMS Service ID
gsm_a.ncc NCC
Unsigned 8-bit integer
NCC
gsm_a.none Sub tree
No value
gsm_a.numbering_plan_id Numbering plan identification
Unsigned 8-bit integer
Numbering plan identification
gsm_a.oddevenind Odd/even indication
Unsigned 8-bit integer
Mobile Identity
gsm_a.ps_sup_cap PS capability (pseudo-synchronization capability)
Unsigned 8-bit integer
PS capability (pseudo-synchronization capability)
gsm_a.ptmsi_sig P-TMSI Signature
Unsigned 24-bit integer
P-TMSI Signature
gsm_a.ptmsi_sig2 P-TMSI Signature 2
Unsigned 24-bit integer
P-TMSI Signature 2
gsm_a.qos.ber Residual Bit Error Rate (BER)
Unsigned 8-bit integer
Residual Bit Error Rate (BER)
gsm_a.qos.del_of_err_sdu Delivery of erroneous SDUs
Unsigned 8-bit integer
Delivery of erroneous SDUs
gsm_a.qos.del_order Delivery order
Unsigned 8-bit integer
Delivery order
gsm_a.qos.delay_cls Delay class
Unsigned 8-bit integer
Quality of Service Delay Class
gsm_a.qos.sdu_err_rat SDU error ratio
Unsigned 8-bit integer
SDU error ratio
gsm_a.qos.traff_hdl_pri Traffic handling priority
Unsigned 8-bit integer
Traffic handling priority
gsm_a.qos.traffic_cls Traffic class
Unsigned 8-bit integer
Traffic class
gsm_a.rp_msg_type RP Message Type
Unsigned 8-bit integer
gsm_a.rr.Group_cipher_key_number Group cipher key number
Unsigned 8-bit integer
Group cipher key number
gsm_a.rr.ICMI ICMI: Initial Codec Mode Indicator
Unsigned 8-bit integer
ICMI: Initial Codec Mode Indicator
gsm_a.rr.MBMS_broadcast MBMS Broadcast
Boolean
MBMS Broadcast
gsm_a.rr.MBMS_multicast MBMS Multicast
Boolean
MBMS Multicast
gsm_a.rr.NCSB NSCB: Noise Suppression Control Bit
Unsigned 8-bit integer
NSCB: Noise Suppression Control Bit
gsm_a.rr.RRcause RR cause value
Unsigned 8-bit integer
RR cause value
gsm_a.rr.SC SC
Unsigned 8-bit integer
SC
gsm_a.rr.T1prim T1'
Unsigned 8-bit integer
T1'
gsm_a.rr.T2 T2
Unsigned 8-bit integer
T2
gsm_a.rr.T3 T3
Unsigned 16-bit integer
T3
gsm_a.rr.channel_mode Channel Mode
Unsigned 8-bit integer
Channel Mode
gsm_a.rr.channel_mode2 Channel Mode 2
Unsigned 8-bit integer
Channel Mode 2
gsm_a.rr.dedicated_mode_or_tbf Dedicated mode or TBF
Unsigned 8-bit integer
Dedicated mode or TBF
gsm_a.rr.ho_ref_val Handover reference value
Unsigned 8-bit integer
Handover reference value
gsm_a.rr.last_segment Last Segment
Boolean
Last Segment
gsm_a.rr.multirate_speech_ver Multirate speech version
Unsigned 8-bit integer
Multirate speech version
gsm_a.rr.page_mode Page Mode
Unsigned 8-bit integer
Page Mode
gsm_a.rr.pow_cmd_atc Spare
Boolean
Spare
gsm_a.rr.pow_cmd_epc EPC_mode
Boolean
EPC_mode
gsm_a.rr.pow_cmd_fpcepc FPC_EPC
Boolean
FPC_EPC
gsm_a.rr.pow_cmd_pow POWER LEVEL
Unsigned 8-bit integer
POWER LEVEL
gsm_a.rr.rr_2_pseudo_len L2 Pseudo Length value
Unsigned 8-bit integer
L2 Pseudo Length value
gsm_a.rr.set_of_amr_codec_modes_v1b1 4,75 kbit/s codec rate
Boolean
4,75 kbit/s codec rate
gsm_a.rr.set_of_amr_codec_modes_v1b2 5,15 kbit/s codec rate
Boolean
5,15 kbit/s codec rate
gsm_a.rr.set_of_amr_codec_modes_v1b3 5,90 kbit/s codec rate
Boolean
5,90 kbit/s codec rate
gsm_a.rr.set_of_amr_codec_modes_v1b4 6,70 kbit/s codec rate
Boolean
6,70 kbit/s codec rate
gsm_a.rr.set_of_amr_codec_modes_v1b5 7,40 kbit/s codec rate
Boolean
7,40 kbit/s codec rate
gsm_a.rr.set_of_amr_codec_modes_v1b6 7,95 kbit/s codec rate
Boolean
7,95 kbit/s codec rate
gsm_a.rr.set_of_amr_codec_modes_v1b7 10,2 kbit/s codec rate
Boolean
10,2 kbit/s codec rate
gsm_a.rr.set_of_amr_codec_modes_v1b8 12,2 kbit/s codec rate
Boolean
12,2 kbit/s codec rate
gsm_a.rr.set_of_amr_codec_modes_v2b1 6,60 kbit/s codec rate
Boolean
6,60 kbit/s codec rate
gsm_a.rr.set_of_amr_codec_modes_v2b2 8,85 kbit/s codec rate
Boolean
8,85 kbit/s codec rate
gsm_a.rr.set_of_amr_codec_modes_v2b3 12,65 kbit/s codec rate
Boolean
12,65 kbit/s codec rate
gsm_a.rr.set_of_amr_codec_modes_v2b4 15,85 kbit/s codec rate
Boolean
15,85 kbit/s codec rate
gsm_a.rr.set_of_amr_codec_modes_v2b5 23,85 kbit/s codec rate
Boolean
23,85 kbit/s codec rate
gsm_a.rr.start_mode Start Mode
Unsigned 8-bit integer
Start Mode
gsm_a.rr.suspension_cause Suspension cause value
Unsigned 8-bit integer
Suspension cause value
gsm_a.rr.sync_ind_nci Normal cell indication(NCI)
Boolean
Normal cell indication(NCI)
gsm_a.rr.sync_ind_rot Report Observed Time Difference(ROT)
Boolean
Report Observed Time Difference(ROT)
gsm_a.rr.target_mode Target mode
Unsigned 8-bit integer
Target mode
gsm_a.rr.time_diff Time difference value
Unsigned 8-bit integer
Time difference value
gsm_a.rr.timing_adv Timing advance value
Unsigned 8-bit integer
Timing advance value
gsm_a.rr.tlli TLLI
Unsigned 32-bit integer
TLLI
gsm_a.rr_cdma200_cm_cng_msg_req CDMA2000 CLASSMARK CHANGE
Boolean
CDMA2000 CLASSMARK CHANGE
gsm_a.rr_chnl_needed_ch1 Channel 1
Unsigned 8-bit integer
Channel 1
gsm_a.rr_cm_cng_msg_req CLASSMARK CHANGE
Boolean
CLASSMARK CHANGE
gsm_a.rr_format_id Format Identifier
Unsigned 8-bit integer
Format Identifier
gsm_a.rr_geran_iu_cm_cng_msg_req GERAN IU MODE CLASSMARK CHANGE
Boolean
GERAN IU MODE CLASSMARK CHANGE
gsm_a.rr_sync_ind_si Synchronization indication(SI)
Unsigned 8-bit integer
Synchronization indication(SI)
gsm_a.rr_utran_cm_cng_msg_req UTRAN CLASSMARK CHANGE
Unsigned 8-bit integer
UTRAN CLASSMARK CHANGE
gsm_a.skip.ind Skip Indicator
Unsigned 8-bit integer
Skip Indicator
gsm_a.spareb7 Spare
Unsigned 8-bit integer
Spare
gsm_a.spareb8 Spare
Unsigned 8-bit integer
Spare
gsm_a.tft.e_bit E bit
Boolean
E bit
gsm_a.tft.flow IPv6 flow label
Unsigned 24-bit integer
IPv6 flow label
gsm_a.tft.ip4_address IPv4 adress
IPv4 address
IPv4 address
gsm_a.tft.ip4_mask IPv4 address mask
IPv4 address
IPv4 address mask
gsm_a.tft.ip6_address IPv6 adress
IPv6 address
IPv6 address
gsm_a.tft.ip6_mask IPv6 adress mask
IPv6 address
IPv6 address mask
gsm_a.tft.op_code TFT operation code
Unsigned 8-bit integer
TFT operation code
gsm_a.tft.pkt_flt Number of packet filters
Unsigned 8-bit integer
Number of packet filters
gsm_a.tft.port Port
Unsigned 16-bit integer
Port
gsm_a.tft.port_high High limit port
Unsigned 16-bit integer
High limit port
gsm_a.tft.port_low Low limit port
Unsigned 16-bit integer
Low limit port
gsm_a.tft.protocol_header Protocol/header
Unsigned 8-bit integer
Protocol/header
gsm_a.tft.security IPSec security parameter index
Unsigned 32-bit integer
IPSec security parameter index
gsm_a.tft.traffic_mask Mask field
Unsigned 8-bit integer
Mask field
gsm_a.tmgi_mcc_mnc_ind MCC/MNC indication
Boolean
MCC/MNC indication
gsm_a.tmsi TMSI/P-TMSI
Unsigned 32-bit integer
gsm_a.type_of_number Type of number
Unsigned 8-bit integer
Type of number
gsm_a_bssmap.cause BSSMAP Cause
Unsigned 8-bit integer
gsm_a_bssmap.elem_id Element ID
Unsigned 8-bit integer
gsm_a_dtap.cause DTAP Cause
Unsigned 8-bit integer
gsm_a_dtap.elem_id Element ID
Unsigned 8-bit integer
gsm_a_rr_ra Random Access Information (RA)
Unsigned 8-bit integer
Random Access Information (RA)
Remote-Operations-Information-Objects.global global
Remote_Operations_Information_Objects.OBJECT_IDENTIFIER
Remote-Operations-Information-Objects.local local
Signed 32-bit integer
Remote_Operations_Information_Objects.INTEGER
gsm_map.HLR_List_item Item
Byte array
gsm_map.HLR_Id
gsm_map.PlmnContainer PlmnContainer
No value
gsm_map.PlmnContainer
gsm_map.PrivateExtensionList_item Item
No value
gsm_map.PrivateExtension
gsm_map.accessNetworkProtocolId accessNetworkProtocolId
Unsigned 32-bit integer
gsm_map.AccessNetworkProtocolId
gsm_map.address.digits Address digits
String
Address digits
gsm_map.bearerService bearerService
Unsigned 8-bit integer
gsm_map.BearerServiceCode
gsm_map.cbs.cbs_coding_grp15_mess_code Message coding
Unsigned 8-bit integer
Message coding
gsm_map.cbs.coding_grp Coding Group
Unsigned 8-bit integer
Coding Group
gsm_map.cbs.coding_grp0_lang Language
Unsigned 8-bit integer
Language
gsm_map.cbs.coding_grp1_lang Language
Unsigned 8-bit integer
Language
gsm_map.cbs.coding_grp2_lang Language
Unsigned 8-bit integer
Language
gsm_map.cbs.coding_grp3_lang Language
Unsigned 8-bit integer
Language
gsm_map.cbs.coding_grp4_7_char_set Character set being used
Unsigned 8-bit integer
Character set being used
gsm_map.cbs.coding_grp4_7_class Message Class
Unsigned 8-bit integer
Message Class
gsm_map.cbs.coding_grp4_7_class_ind Message Class present
Boolean
Message Class present
gsm_map.cbs.coding_grp4_7_comp Compressed indicator
Boolean
Compressed indicator
gsm_map.cbs.gsm_map_cbs_coding_grp15_class Message Class
Unsigned 8-bit integer
Message Class
gsm_map.cellGlobalIdOrServiceAreaIdFixedLength cellGlobalIdOrServiceAreaIdFixedLength
Byte array
gsm_map.CellGlobalIdOrServiceAreaIdFixedLength
gsm_map.ch.additionalSignalInfo additionalSignalInfo
No value
gsm_map.Ext_ExternalSignalInfo
gsm_map.ch.alertingPattern alertingPattern
Byte array
gsm_map.AlertingPattern
gsm_map.ch.allInformationSent allInformationSent
No value
gsm_map_ch.NULL
gsm_map.ch.allowedServices allowedServices
Byte array
gsm_map_ch.AllowedServices
gsm_map.ch.basicService basicService
Unsigned 32-bit integer
gsm_map.Ext_BasicServiceCode
gsm_map.ch.basicService2 basicService2
Unsigned 32-bit integer
gsm_map.Ext_BasicServiceCode
gsm_map.ch.basicServiceGroup basicServiceGroup
Unsigned 32-bit integer
gsm_map.Ext_BasicServiceCode
gsm_map.ch.basicServiceGroup2 basicServiceGroup2
Unsigned 32-bit integer
gsm_map.Ext_BasicServiceCode
gsm_map.ch.callDiversionTreatmentIndicator callDiversionTreatmentIndicator
Byte array
gsm_map_ch.CallDiversionTreatmentIndicator
gsm_map.ch.callInfo callInfo
No value
gsm_map.ExternalSignalInfo
gsm_map.ch.callOutcome callOutcome
Unsigned 32-bit integer
gsm_map_ch.CallOutcome
gsm_map.ch.callReferenceNumber callReferenceNumber
Byte array
gsm_map_ch.CallReferenceNumber
gsm_map.ch.callReportdata callReportdata
No value
gsm_map_ch.CallReportData
gsm_map.ch.callTerminationIndicator callTerminationIndicator
Unsigned 32-bit integer
gsm_map_ch.CallTerminationIndicator
gsm_map.ch.camelInfo camelInfo
No value
gsm_map_ch.CamelInfo
gsm_map.ch.camelRoutingInfo camelRoutingInfo
No value
gsm_map_ch.CamelRoutingInfo
gsm_map.ch.ccbs_Call ccbs-Call
No value
gsm_map_ch.NULL
gsm_map.ch.ccbs_Feature ccbs-Feature
No value
gsm_map_ss.CCBS_Feature
gsm_map.ch.ccbs_Indicators ccbs-Indicators
No value
gsm_map_ch.CCBS_Indicators
gsm_map.ch.ccbs_Monitoring ccbs-Monitoring
Unsigned 32-bit integer
gsm_map_ch.ReportingState
gsm_map.ch.ccbs_Possible ccbs-Possible
No value
gsm_map_ch.NULL
gsm_map.ch.ccbs_SubscriberStatus ccbs-SubscriberStatus
Unsigned 32-bit integer
gsm_map_ch.CCBS_SubscriberStatus
gsm_map.ch.cugSubscriptionFlag cugSubscriptionFlag
No value
gsm_map_ch.NULL
gsm_map.ch.cug_CheckInfo cug-CheckInfo
No value
gsm_map_ch.CUG_CheckInfo
gsm_map.ch.cug_Interlock cug-Interlock
Byte array
gsm_map_ms.CUG_Interlock
gsm_map.ch.cug_OutgoingAccess cug-OutgoingAccess
No value
gsm_map_ch.NULL
gsm_map.ch.d_csi d-csi
No value
gsm_map_ms.D_CSI
gsm_map.ch.eventReportData eventReportData
No value
gsm_map_ch.EventReportData
gsm_map.ch.extendedRoutingInfo extendedRoutingInfo
Unsigned 32-bit integer
gsm_map_ch.ExtendedRoutingInfo
gsm_map.ch.extensionContainer extensionContainer
No value
gsm_map.ExtensionContainer
gsm_map.ch.firstServiceAllowed firstServiceAllowed
Boolean
gsm_map.ch.forwardedToNumber forwardedToNumber
Byte array
gsm_map.ISDN_AddressString
gsm_map.ch.forwardedToSubaddress forwardedToSubaddress
Byte array
gsm_map.ISDN_SubaddressString
gsm_map.ch.forwardingData forwardingData
No value
gsm_map_ch.ForwardingData
gsm_map.ch.forwardingInterrogationRequired forwardingInterrogationRequired
No value
gsm_map_ch.NULL
gsm_map.ch.forwardingOptions forwardingOptions
Byte array
gsm_map_ss.ForwardingOptions
gsm_map.ch.forwardingReason forwardingReason
Unsigned 32-bit integer
gsm_map_ch.ForwardingReason
gsm_map.ch.gmscCamelSubscriptionInfo gmscCamelSubscriptionInfo
No value
gsm_map_ch.GmscCamelSubscriptionInfo
gsm_map.ch.gmsc_Address gmsc-Address
Byte array
gsm_map.ISDN_AddressString
gsm_map.ch.gmsc_OrGsmSCF_Address gmsc-OrGsmSCF-Address
Byte array
gsm_map.ISDN_AddressString
gsm_map.ch.gsmSCF_InitiatedCall gsmSCF-InitiatedCall
No value
gsm_map_ch.NULL
gsm_map.ch.gsm_BearerCapability gsm-BearerCapability
No value
gsm_map.ExternalSignalInfo
gsm_map.ch.imsi imsi
Byte array
gsm_map.IMSI
gsm_map.ch.interrogationType interrogationType
Unsigned 32-bit integer
gsm_map_ch.InterrogationType
gsm_map.ch.istAlertTimer istAlertTimer
Unsigned 32-bit integer
gsm_map_ms.IST_AlertTimerValue
gsm_map.ch.istInformationWithdraw istInformationWithdraw
No value
gsm_map_ch.NULL
gsm_map.ch.istSupportIndicator istSupportIndicator
Unsigned 32-bit integer
gsm_map_ms.IST_SupportIndicator
gsm_map.ch.keepCCBS_CallIndicator keepCCBS-CallIndicator
No value
gsm_map_ch.NULL
gsm_map.ch.lmsi lmsi
Byte array
gsm_map.LMSI
gsm_map.ch.longFTN_Supported longFTN-Supported
No value
gsm_map_ch.NULL
gsm_map.ch.longForwardedToNumber longForwardedToNumber
Byte array
gsm_map.FTN_AddressString
gsm_map.ch.monitoringMode monitoringMode
Unsigned 32-bit integer
gsm_map_ch.MonitoringMode
gsm_map.ch.msc_Number msc-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.ch.msisdn msisdn
Byte array
gsm_map.ISDN_AddressString
gsm_map.ch.msrn msrn
Byte array
gsm_map.ISDN_AddressString
gsm_map.ch.mtRoamingRetry mtRoamingRetry
No value
gsm_map_ch.NULL
gsm_map.ch.mtRoamingRetrySupported mtRoamingRetrySupported
No value
gsm_map_ch.NULL
gsm_map.ch.naea_PreferredCI naea-PreferredCI
No value
gsm_map.NAEA_PreferredCI
gsm_map.ch.networkSignalInfo networkSignalInfo
No value
gsm_map.ExternalSignalInfo
gsm_map.ch.networkSignalInfo2 networkSignalInfo2
No value
gsm_map.ExternalSignalInfo
gsm_map.ch.numberOfForwarding numberOfForwarding
Unsigned 32-bit integer
gsm_map_ch.NumberOfForwarding
gsm_map.ch.numberPortabilityStatus numberPortabilityStatus
Unsigned 32-bit integer
gsm_map_ms.NumberPortabilityStatus
gsm_map.ch.o_BcsmCamelTDPCriteriaList o-BcsmCamelTDPCriteriaList
Unsigned 32-bit integer
gsm_map_ms.O_BcsmCamelTDPCriteriaList
gsm_map.ch.o_BcsmCamelTDP_CriteriaList o-BcsmCamelTDP-CriteriaList
Unsigned 32-bit integer
gsm_map_ms.O_BcsmCamelTDPCriteriaList
gsm_map.ch.o_CSI o-CSI
No value
gsm_map_ms.O_CSI
gsm_map.ch.offeredCamel4CSIs offeredCamel4CSIs
Byte array
gsm_map_ms.OfferedCamel4CSIs
gsm_map.ch.offeredCamel4CSIsInInterrogatingNode offeredCamel4CSIsInInterrogatingNode
Byte array
gsm_map_ms.OfferedCamel4CSIs
gsm_map.ch.offeredCamel4CSIsInVMSC offeredCamel4CSIsInVMSC
Byte array
gsm_map_ms.OfferedCamel4CSIs
gsm_map.ch.orNotSupportedInGMSC orNotSupportedInGMSC
No value
gsm_map_ch.NULL
gsm_map.ch.or_Capability or-Capability
Unsigned 32-bit integer
gsm_map_ch.OR_Phase
gsm_map.ch.or_Interrogation or-Interrogation
No value
gsm_map_ch.NULL
gsm_map.ch.pre_pagingSupported pre-pagingSupported
No value
gsm_map_ch.NULL
gsm_map.ch.releaseResourcesSupported releaseResourcesSupported
No value
gsm_map_ch.NULL
gsm_map.ch.replaceB_Number replaceB-Number
No value
gsm_map_ch.NULL
gsm_map.ch.roamingNumber roamingNumber
Byte array
gsm_map.ISDN_AddressString
gsm_map.ch.routingInfo routingInfo
Unsigned 32-bit integer
gsm_map_ch.RoutingInfo
gsm_map.ch.routingInfo2 routingInfo2
Unsigned 32-bit integer
gsm_map_ch.RoutingInfo
gsm_map.ch.ruf_Outcome ruf-Outcome
Unsigned 32-bit integer
gsm_map_ch.RUF_Outcome
gsm_map.ch.secondServiceAllowed secondServiceAllowed
Boolean
gsm_map.ch.ss_List ss-List
Unsigned 32-bit integer
gsm_map_ss.SS_List
gsm_map.ch.ss_List2 ss-List2
Unsigned 32-bit integer
gsm_map_ss.SS_List
gsm_map.ch.subscriberInfo subscriberInfo
No value
gsm_map_ms.SubscriberInfo
gsm_map.ch.supportedCCBS_Phase supportedCCBS-Phase
Unsigned 32-bit integer
gsm_map_ch.SupportedCCBS_Phase
gsm_map.ch.supportedCamelPhases supportedCamelPhases
Byte array
gsm_map_ms.SupportedCamelPhases
gsm_map.ch.supportedCamelPhasesInInterrogatingNode supportedCamelPhasesInInterrogatingNode
Byte array
gsm_map_ms.SupportedCamelPhases
gsm_map.ch.supportedCamelPhasesInVMSC supportedCamelPhasesInVMSC
Byte array
gsm_map_ms.SupportedCamelPhases
gsm_map.ch.suppressCCBS suppressCCBS
Boolean
gsm_map.ch.suppressCUG suppressCUG
Boolean
gsm_map.ch.suppressIncomingCallBarring suppressIncomingCallBarring
No value
gsm_map_ch.NULL
gsm_map.ch.suppressMTSS suppressMTSS
Byte array
gsm_map_ch.SuppressMTSS
gsm_map.ch.suppress_T_CSI suppress-T-CSI
No value
gsm_map_ch.NULL
gsm_map.ch.suppress_VT_CSI suppress-VT-CSI
No value
gsm_map_ch.NULL
gsm_map.ch.suppressionOfAnnouncement suppressionOfAnnouncement
No value
gsm_map_ch.SuppressionOfAnnouncement
gsm_map.ch.t_BCSM_CAMEL_TDP_CriteriaList t-BCSM-CAMEL-TDP-CriteriaList
Unsigned 32-bit integer
gsm_map_ms.T_BCSM_CAMEL_TDP_CriteriaList
gsm_map.ch.t_CSI t-CSI
No value
gsm_map_ms.T_CSI
gsm_map.ch.translatedB_Number translatedB-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.ch.unavailabilityCause unavailabilityCause
Unsigned 32-bit integer
gsm_map_ch.UnavailabilityCause
gsm_map.ch.uuIndicator uuIndicator
Byte array
gsm_map_ch.UUIndicator
gsm_map.ch.uu_Data uu-Data
No value
gsm_map_ch.UU_Data
gsm_map.ch.uui uui
Byte array
gsm_map_ch.UUI
gsm_map.ch.uusCFInteraction uusCFInteraction
No value
gsm_map_ch.NULL
gsm_map.ch.vmsc_Address vmsc-Address
Byte array
gsm_map.ISDN_AddressString
gsm_map.currentPassword currentPassword
String
gsm_map.defaultPriority defaultPriority
Unsigned 32-bit integer
gsm_map.EMLPP_Priority
gsm_map.dialogue.MAP_DialoguePDU MAP-DialoguePDU
Unsigned 32-bit integer
gsm_map_dialogue.MAP_DialoguePDU
gsm_map.dialogue.alternativeApplicationContext alternativeApplicationContext
gsm_map_dialogue.OBJECT_IDENTIFIER
gsm_map.dialogue.applicationProcedureCancellation applicationProcedureCancellation
Unsigned 32-bit integer
gsm_map_dialogue.ProcedureCancellationReason
gsm_map.dialogue.destinationReference destinationReference
Byte array
gsm_map.AddressString
gsm_map.dialogue.extensionContainer extensionContainer
No value
gsm_map.ExtensionContainer
gsm_map.dialogue.map_ProviderAbortReason map-ProviderAbortReason
Unsigned 32-bit integer
gsm_map_dialogue.MAP_ProviderAbortReason
gsm_map.dialogue.map_UserAbortChoice map-UserAbortChoice
Unsigned 32-bit integer
gsm_map_dialogue.MAP_UserAbortChoice
gsm_map.dialogue.map_accept map-accept
No value
gsm_map_dialogue.MAP_AcceptInfo
gsm_map.dialogue.map_close map-close
No value
gsm_map_dialogue.MAP_CloseInfo
gsm_map.dialogue.map_open map-open
No value
gsm_map_dialogue.MAP_OpenInfo
gsm_map.dialogue.map_providerAbort map-providerAbort
No value
gsm_map_dialogue.MAP_ProviderAbortInfo
gsm_map.dialogue.map_refuse map-refuse
No value
gsm_map_dialogue.MAP_RefuseInfo
gsm_map.dialogue.map_userAbort map-userAbort
No value
gsm_map_dialogue.MAP_UserAbortInfo
gsm_map.dialogue.originationReference originationReference
Byte array
gsm_map.AddressString
gsm_map.dialogue.reason reason
Unsigned 32-bit integer
gsm_map_dialogue.Reason
gsm_map.dialogue.resourceUnavailable resourceUnavailable
Unsigned 32-bit integer
gsm_map_dialogue.ResourceUnavailableReason
gsm_map.dialogue.userResourceLimitation userResourceLimitation
No value
gsm_map_dialogue.NULL
gsm_map.dialogue.userSpecificReason userSpecificReason
No value
gsm_map_dialogue.NULL
gsm_map.er.absentSubscriberDiagnosticSM absentSubscriberDiagnosticSM
Unsigned 32-bit integer
gsm_map_er.AbsentSubscriberDiagnosticSM
gsm_map.er.absentSubscriberReason absentSubscriberReason
Unsigned 32-bit integer
gsm_map_er.AbsentSubscriberReason
gsm_map.er.additionalAbsentSubscriberDiagnosticSM additionalAbsentSubscriberDiagnosticSM
Unsigned 32-bit integer
gsm_map_er.AbsentSubscriberDiagnosticSM
gsm_map.er.additionalNetworkResource additionalNetworkResource
Unsigned 32-bit integer
gsm_map.AdditionalNetworkResource
gsm_map.er.additionalRoamingNotAllowedCause additionalRoamingNotAllowedCause
Unsigned 32-bit integer
gsm_map_er.AdditionalRoamingNotAllowedCause
gsm_map.er.basicService basicService
Unsigned 32-bit integer
gsm_map.BasicServiceCode
gsm_map.er.callBarringCause callBarringCause
Unsigned 32-bit integer
gsm_map_er.CallBarringCause
gsm_map.er.ccbs_Busy ccbs-Busy
No value
gsm_map_er.NULL
gsm_map.er.ccbs_Possible ccbs-Possible
No value
gsm_map_er.NULL
gsm_map.er.cug_RejectCause cug-RejectCause
Unsigned 32-bit integer
gsm_map_er.CUG_RejectCause
gsm_map.er.diagnosticInfo diagnosticInfo
Byte array
gsm_map.SignalInfo
gsm_map.er.extensibleCallBarredParam extensibleCallBarredParam
No value
gsm_map_er.ExtensibleCallBarredParam
gsm_map.er.extensibleSystemFailureParam extensibleSystemFailureParam
No value
gsm_map_er.ExtensibleSystemFailureParam
gsm_map.er.extensionContainer extensionContainer
No value
gsm_map.ExtensionContainer
gsm_map.er.failureCauseParam failureCauseParam
Unsigned 32-bit integer
gsm_map_er.FailureCauseParam
gsm_map.er.gprsConnectionSuspended gprsConnectionSuspended
No value
gsm_map_er.NULL
gsm_map.er.neededLcsCapabilityNotSupportedInServingNode neededLcsCapabilityNotSupportedInServingNode
No value
gsm_map_er.NULL
gsm_map.er.networkResource networkResource
Unsigned 32-bit integer
gsm_map.NetworkResource
gsm_map.er.positionMethodFailure_Diagnostic positionMethodFailure-Diagnostic
Unsigned 32-bit integer
gsm_map_er.PositionMethodFailure_Diagnostic
gsm_map.er.roamingNotAllowedCause roamingNotAllowedCause
Unsigned 32-bit integer
gsm_map_er.RoamingNotAllowedCause
gsm_map.er.shapeOfLocationEstimateNotSupported shapeOfLocationEstimateNotSupported
No value
gsm_map_er.NULL
gsm_map.er.sm_EnumeratedDeliveryFailureCause sm-EnumeratedDeliveryFailureCause
Unsigned 32-bit integer
gsm_map_er.SM_EnumeratedDeliveryFailureCause
gsm_map.er.ss_Code ss-Code
Unsigned 8-bit integer
gsm_map.SS_Code
gsm_map.er.ss_Status ss-Status
Byte array
gsm_map_ss.SS_Status
gsm_map.er.unauthorisedMessageOriginator unauthorisedMessageOriginator
No value
gsm_map_er.NULL
gsm_map.er.unauthorizedLCSClient_Diagnostic unauthorizedLCSClient-Diagnostic
Unsigned 32-bit integer
gsm_map_er.UnauthorizedLCSClient_Diagnostic
gsm_map.er.unknownSubscriberDiagnostic unknownSubscriberDiagnostic
Unsigned 32-bit integer
gsm_map_er.UnknownSubscriberDiagnostic
gsm_map.extId extId
gsm_map.T_extId
gsm_map.extType extType
No value
gsm_map.T_extType
gsm_map.ext_BearerService ext-BearerService
Unsigned 8-bit integer
gsm_map.Ext_BearerServiceCode
gsm_map.ext_ProtocolId ext-ProtocolId
Unsigned 32-bit integer
gsm_map.Ext_ProtocolId
gsm_map.ext_Teleservice ext-Teleservice
Unsigned 8-bit integer
gsm_map.Ext_TeleserviceCode
gsm_map.ext_qos_subscribed_pri Allocation/Retention priority
Unsigned 8-bit integer
Allocation/Retention priority
gsm_map.extension Extension
Boolean
Extension
gsm_map.extensionContainer extensionContainer
No value
gsm_map.ExtensionContainer
gsm_map.externalAddress externalAddress
Byte array
gsm_map.ISDN_AddressString
gsm_map.forwarding_reason Forwarding reason
Unsigned 8-bit integer
forwarding reason
gsm_map.gad.D D: Direction of Altitude
Unsigned 16-bit integer
D: Direction of Altitude
gsm_map.gad.altitude Altitude in meters
Unsigned 16-bit integer
Altitude
gsm_map.gad.confidence Confidence(%)
Unsigned 8-bit integer
Confidence(%)
gsm_map.gad.included_angle Included angle
Unsigned 8-bit integer
Included angle
gsm_map.gad.location_estimate Location estimate
Unsigned 8-bit integer
Location estimate
gsm_map.gad.no_of_points Number of points
Unsigned 8-bit integer
Number of points
gsm_map.gad.offset_angle Offset angle
Unsigned 8-bit integer
Offset angle
gsm_map.gad.orientation_of_major_axis Orientation of major axis
Unsigned 8-bit integer
Orientation of major axis
gsm_map.gad.sign_of_latitude Sign of latitude
Unsigned 8-bit integer
Sign of latitude
gsm_map.gad.sign_of_longitude Degrees of longitude
Unsigned 24-bit integer
Degrees of longitude
gsm_map.gad.uncertainty_altitude Uncertainty Altitude
Unsigned 8-bit integer
Uncertainty Altitude
gsm_map.gad.uncertainty_code Uncertainty code
Unsigned 8-bit integer
Uncertainty code
gsm_map.gad.uncertainty_semi_major Uncertainty semi-major
Unsigned 8-bit integer
Uncertainty semi-major
gsm_map.gad.uncertainty_semi_minor Uncertainty semi-minor
Unsigned 8-bit integer
Uncertainty semi-minor
gsm_map.gr.additionalInfo additionalInfo
Byte array
gsm_map_ms.AdditionalInfo
gsm_map.gr.additionalSubscriptions additionalSubscriptions
Byte array
gsm_map_ms.AdditionalSubscriptions
gsm_map.gr.an_APDU an-APDU
No value
gsm_map.AccessNetworkSignalInfo
gsm_map.gr.anchorMSC_Address anchorMSC-Address
Byte array
gsm_map.ISDN_AddressString
gsm_map.gr.asciCallReference asciCallReference
Byte array
gsm_map.ASCI_CallReference
gsm_map.gr.callOriginator callOriginator
No value
gsm_map_gr.NULL
gsm_map.gr.cellId cellId
Byte array
gsm_map.GlobalCellId
gsm_map.gr.cipheringAlgorithm cipheringAlgorithm
Byte array
gsm_map_gr.CipheringAlgorithm
gsm_map.gr.cksn cksn
Byte array
gsm_map_ms.Cksn
gsm_map.gr.codec_Info codec-Info
Byte array
gsm_map_gr.CODEC_Info
gsm_map.gr.downlinkAttached downlinkAttached
No value
gsm_map_gr.NULL
gsm_map.gr.dualCommunication dualCommunication
No value
gsm_map_gr.NULL
gsm_map.gr.emergencyModeResetCommandFlag emergencyModeResetCommandFlag
No value
gsm_map_gr.NULL
gsm_map.gr.extensionContainer extensionContainer
No value
gsm_map.ExtensionContainer
gsm_map.gr.groupCallNumber groupCallNumber
Byte array
gsm_map.ISDN_AddressString
gsm_map.gr.groupId groupId
Byte array
gsm_map_ms.Long_GroupId
gsm_map.gr.groupKey groupKey
Byte array
gsm_map_ms.Kc
gsm_map.gr.groupKeyNumber_Vk_Id groupKeyNumber-Vk-Id
Unsigned 32-bit integer
gsm_map_gr.GroupKeyNumber
gsm_map.gr.imsi imsi
Byte array
gsm_map.IMSI
gsm_map.gr.kc kc
Byte array
gsm_map_ms.Kc
gsm_map.gr.priority priority
Unsigned 32-bit integer
gsm_map.EMLPP_Priority
gsm_map.gr.releaseGroupCall releaseGroupCall
No value
gsm_map_gr.NULL
gsm_map.gr.requestedInfo requestedInfo
Unsigned 32-bit integer
gsm_map_gr.RequestedInfo
gsm_map.gr.sm_RP_UI sm-RP-UI
Byte array
gsm_map.SignalInfo
gsm_map.gr.stateAttributes stateAttributes
No value
gsm_map_gr.StateAttributes
gsm_map.gr.talkerChannelParameter talkerChannelParameter
No value
gsm_map_gr.NULL
gsm_map.gr.talkerPriority talkerPriority
Unsigned 32-bit integer
gsm_map_gr.TalkerPriority
gsm_map.gr.teleservice teleservice
Unsigned 8-bit integer
gsm_map.Ext_TeleserviceCode
gsm_map.gr.tmsi tmsi
Byte array
gsm_map.TMSI
gsm_map.gr.uplinkAttached uplinkAttached
No value
gsm_map_gr.NULL
gsm_map.gr.uplinkFree uplinkFree
No value
gsm_map_gr.NULL
gsm_map.gr.uplinkRejectCommand uplinkRejectCommand
No value
gsm_map_gr.NULL
gsm_map.gr.uplinkReleaseCommand uplinkReleaseCommand
No value
gsm_map_gr.NULL
gsm_map.gr.uplinkReleaseIndication uplinkReleaseIndication
No value
gsm_map_gr.NULL
gsm_map.gr.uplinkRequest uplinkRequest
No value
gsm_map_gr.NULL
gsm_map.gr.uplinkRequestAck uplinkRequestAck
No value
gsm_map_gr.NULL
gsm_map.gr.uplinkSeizedCommand uplinkSeizedCommand
No value
gsm_map_gr.NULL
gsm_map.gr.vstk vstk
Byte array
gsm_map_gr.VSTK
gsm_map.gr.vstk_rand vstk-rand
Byte array
gsm_map_gr.VSTK_RAND
gsm_map.gsnaddress_ipv4 GSN-Address IPv4
IPv4 address
IPAddress IPv4
gsm_map.gsnaddress_ipv6 GSN Address IPv6
IPv4 address
IPAddress IPv6
gsm_map.ietf_pdp_type_number PDP Type Number
Unsigned 8-bit integer
IETF PDP Type Number
gsm_map.imsi imsi
Byte array
gsm_map.IMSI
gsm_map.imsi_WithLMSI imsi-WithLMSI
No value
gsm_map.IMSI_WithLMSI
gsm_map.imsi_digits IMSI digits
String
IMSI digits
gsm_map.isdn.address.digits ISDN Address digits
String
ISDN Address digits
gsm_map.laiFixedLength laiFixedLength
Byte array
gsm_map.LAIFixedLength
gsm_map.lcs.AreaList_item Item
No value
gsm_map_lcs.Area
gsm_map.lcs.PLMNList_item Item
No value
gsm_map_lcs.ReportingPLMN
gsm_map.lcs.accuracyFulfilmentIndicator accuracyFulfilmentIndicator
Unsigned 32-bit integer
gsm_map_lcs.AccuracyFulfilmentIndicator
gsm_map.lcs.add_LocationEstimate add-LocationEstimate
Byte array
gsm_map_lcs.Add_GeographicalInformation
gsm_map.lcs.additional_LCS_CapabilitySets additional-LCS-CapabilitySets
Byte array
gsm_map_ms.SupportedLCS_CapabilitySets
gsm_map.lcs.additional_Number additional-Number
Unsigned 32-bit integer
gsm_map_sm.Additional_Number
gsm_map.lcs.additional_v_gmlc_Address additional-v-gmlc-Address
Byte array
gsm_map_ms.GSN_Address
gsm_map.lcs.ageOfLocationEstimate ageOfLocationEstimate
Unsigned 32-bit integer
gsm_map.AgeOfLocationInformation
gsm_map.lcs.areaDefinition areaDefinition
No value
gsm_map_lcs.AreaDefinition
gsm_map.lcs.areaEventInfo areaEventInfo
No value
gsm_map_lcs.AreaEventInfo
gsm_map.lcs.areaIdentification areaIdentification
Byte array
gsm_map_lcs.AreaIdentification
gsm_map.lcs.areaList areaList
Unsigned 32-bit integer
gsm_map_lcs.AreaList
gsm_map.lcs.areaType areaType
Unsigned 32-bit integer
gsm_map_lcs.AreaType
gsm_map.lcs.beingInsideArea beingInsideArea
Boolean
gsm_map.lcs.callSessionRelated callSessionRelated
Unsigned 32-bit integer
gsm_map_lcs.PrivacyCheckRelatedAction
gsm_map.lcs.callSessionUnrelated callSessionUnrelated
Unsigned 32-bit integer
gsm_map_lcs.PrivacyCheckRelatedAction
gsm_map.lcs.cellIdOrSai cellIdOrSai
Unsigned 32-bit integer
gsm_map.CellGlobalIdOrServiceAreaIdOrLAI
gsm_map.lcs.dataCodingScheme dataCodingScheme
Byte array
gsm_map_ss.USSD_DataCodingScheme
gsm_map.lcs.deferredLocationEventType deferredLocationEventType
Byte array
gsm_map_lcs.DeferredLocationEventType
gsm_map.lcs.deferredmt_lrData deferredmt-lrData
No value
gsm_map_lcs.Deferredmt_lrData
gsm_map.lcs.deferredmt_lrResponseIndicator deferredmt-lrResponseIndicator
No value
gsm_map_lcs.NULL
gsm_map.lcs.ellipsoidArc ellipsoidArc
Boolean
gsm_map.lcs.ellipsoidPoint ellipsoidPoint
Boolean
gsm_map.lcs.ellipsoidPointWithAltitude ellipsoidPointWithAltitude
Boolean
gsm_map.lcs.ellipsoidPointWithAltitudeAndUncertaintyElipsoid ellipsoidPointWithAltitudeAndUncertaintyElipsoid
Boolean
gsm_map.lcs.ellipsoidPointWithUncertaintyCircle ellipsoidPointWithUncertaintyCircle
Boolean
gsm_map.lcs.ellipsoidPointWithUncertaintyEllipse ellipsoidPointWithUncertaintyEllipse
Boolean
gsm_map.lcs.enteringIntoArea enteringIntoArea
Boolean
gsm_map.lcs.extensionContainer extensionContainer
No value
gsm_map.ExtensionContainer
gsm_map.lcs.geranPositioningData geranPositioningData
Byte array
gsm_map_lcs.PositioningDataInformation
gsm_map.lcs.gprsNodeIndicator gprsNodeIndicator
No value
gsm_map_lcs.NULL
gsm_map.lcs.h_gmlc_Address h-gmlc-Address
Byte array
gsm_map_ms.GSN_Address
gsm_map.lcs.horizontal_accuracy horizontal-accuracy
Byte array
gsm_map_lcs.Horizontal_Accuracy
gsm_map.lcs.imei imei
Byte array
gsm_map.IMEI
gsm_map.lcs.imsi imsi
Byte array
gsm_map.IMSI
gsm_map.lcs.intervalTime intervalTime
Unsigned 32-bit integer
gsm_map_lcs.IntervalTime
gsm_map.lcs.lcsAPN lcsAPN
Byte array
gsm_map_ms.APN
gsm_map.lcs.lcsClientDialedByMS lcsClientDialedByMS
Byte array
gsm_map.AddressString
gsm_map.lcs.lcsClientExternalID lcsClientExternalID
No value
gsm_map.LCSClientExternalID
gsm_map.lcs.lcsClientInternalID lcsClientInternalID
Unsigned 32-bit integer
gsm_map.LCSClientInternalID
gsm_map.lcs.lcsClientName lcsClientName
No value
gsm_map_lcs.LCSClientName
gsm_map.lcs.lcsClientType lcsClientType
Unsigned 32-bit integer
gsm_map_lcs.LCSClientType
gsm_map.lcs.lcsCodeword lcsCodeword
No value
gsm_map_lcs.LCSCodeword
gsm_map.lcs.lcsCodewordString lcsCodewordString
Byte array
gsm_map_lcs.LCSCodewordString
gsm_map.lcs.lcsLocationInfo lcsLocationInfo
No value
gsm_map_lcs.LCSLocationInfo
gsm_map.lcs.lcsRequestorID lcsRequestorID
No value
gsm_map_lcs.LCSRequestorID
gsm_map.lcs.lcsServiceTypeID lcsServiceTypeID
Unsigned 32-bit integer
gsm_map.LCSServiceTypeID
gsm_map.lcs.lcs_ClientID lcs-ClientID
No value
gsm_map_lcs.LCS_ClientID
gsm_map.lcs.lcs_Event lcs-Event
Unsigned 32-bit integer
gsm_map_lcs.LCS_Event
gsm_map.lcs.lcs_FormatIndicator lcs-FormatIndicator
Unsigned 32-bit integer
gsm_map_lcs.LCS_FormatIndicator
gsm_map.lcs.lcs_Priority lcs-Priority
Byte array
gsm_map_lcs.LCS_Priority
gsm_map.lcs.lcs_PrivacyCheck lcs-PrivacyCheck
No value
gsm_map_lcs.LCS_PrivacyCheck
gsm_map.lcs.lcs_QoS lcs-QoS
No value
gsm_map_lcs.LCS_QoS
gsm_map.lcs.lcs_ReferenceNumber lcs-ReferenceNumber
Byte array
gsm_map_lcs.LCS_ReferenceNumber
gsm_map.lcs.leavingFromArea leavingFromArea
Boolean
gsm_map.lcs.lmsi lmsi
Byte array
gsm_map.LMSI
gsm_map.lcs.locationEstimate locationEstimate
Byte array
gsm_map_lcs.Ext_GeographicalInformation
gsm_map.lcs.locationEstimateType locationEstimateType
Unsigned 32-bit integer
gsm_map_lcs.LocationEstimateType
gsm_map.lcs.locationType locationType
No value
gsm_map_lcs.LocationType
gsm_map.lcs.mlcNumber mlcNumber
Byte array
gsm_map.ISDN_AddressString
gsm_map.lcs.mlc_Number mlc-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.lcs.mo_lrShortCircuitIndicator mo-lrShortCircuitIndicator
No value
gsm_map_lcs.NULL
gsm_map.lcs.msAvailable msAvailable
Boolean
gsm_map.lcs.msisdn msisdn
Byte array
gsm_map.ISDN_AddressString
gsm_map.lcs.na_ESRD na-ESRD
Byte array
gsm_map.ISDN_AddressString
gsm_map.lcs.na_ESRK na-ESRK
Byte array
gsm_map.ISDN_AddressString
gsm_map.lcs.nameString nameString
Byte array
gsm_map_lcs.NameString
gsm_map.lcs.networkNode_Number networkNode-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.lcs.occurrenceInfo occurrenceInfo
Unsigned 32-bit integer
gsm_map_lcs.OccurrenceInfo
gsm_map.lcs.periodicLDR periodicLDR
Boolean
gsm_map.lcs.periodicLDRInfo periodicLDRInfo
No value
gsm_map_lcs.PeriodicLDRInfo
gsm_map.lcs.plmn_Id plmn-Id
Byte array
gsm_map.PLMN_Id
gsm_map.lcs.plmn_List plmn-List
Unsigned 32-bit integer
gsm_map_lcs.PLMNList
gsm_map.lcs.plmn_ListPrioritized plmn-ListPrioritized
No value
gsm_map_lcs.NULL
gsm_map.lcs.polygon polygon
Boolean
gsm_map.lcs.ppr_Address ppr-Address
Byte array
gsm_map_ms.GSN_Address
gsm_map.lcs.privacyOverride privacyOverride
No value
gsm_map_lcs.NULL
gsm_map.lcs.pseudonymIndicator pseudonymIndicator
No value
gsm_map_lcs.NULL
gsm_map.lcs.ran_PeriodicLocationSupport ran-PeriodicLocationSupport
No value
gsm_map_lcs.NULL
gsm_map.lcs.ran_Technology ran-Technology
Unsigned 32-bit integer
gsm_map_lcs.RAN_Technology
gsm_map.lcs.reportingAmount reportingAmount
Unsigned 32-bit integer
gsm_map_lcs.ReportingAmount
gsm_map.lcs.reportingInterval reportingInterval
Unsigned 32-bit integer
gsm_map_lcs.ReportingInterval
gsm_map.lcs.reportingPLMNList reportingPLMNList
No value
gsm_map_lcs.ReportingPLMNList
gsm_map.lcs.requestorIDString requestorIDString
Byte array
gsm_map_lcs.RequestorIDString
gsm_map.lcs.responseTime responseTime
No value
gsm_map_lcs.ResponseTime
gsm_map.lcs.responseTimeCategory responseTimeCategory
Unsigned 32-bit integer
gsm_map_lcs.ResponseTimeCategory
gsm_map.lcs.sai_Present sai-Present
No value
gsm_map_lcs.NULL
gsm_map.lcs.sequenceNumber sequenceNumber
Unsigned 32-bit integer
gsm_map_lcs.SequenceNumber
gsm_map.lcs.slr_ArgExtensionContainer slr-ArgExtensionContainer
No value
gsm_map.SLR_ArgExtensionContainer
gsm_map.lcs.supportedGADShapes supportedGADShapes
Byte array
gsm_map_lcs.SupportedGADShapes
gsm_map.lcs.supportedLCS_CapabilitySets supportedLCS-CapabilitySets
Byte array
gsm_map_ms.SupportedLCS_CapabilitySets
gsm_map.lcs.targetMS targetMS
Unsigned 32-bit integer
gsm_map.SubscriberIdentity
gsm_map.lcs.terminationCause terminationCause
Unsigned 32-bit integer
gsm_map_lcs.TerminationCause
gsm_map.lcs.utranPositioningData utranPositioningData
Byte array
gsm_map_lcs.UtranPositioningDataInfo
gsm_map.lcs.v_gmlc_Address v-gmlc-Address
Byte array
gsm_map_ms.GSN_Address
gsm_map.lcs.velocityEstimate velocityEstimate
Byte array
gsm_map_lcs.VelocityEstimate
gsm_map.lcs.velocityRequest velocityRequest
No value
gsm_map_lcs.NULL
gsm_map.lcs.verticalCoordinateRequest verticalCoordinateRequest
No value
gsm_map_lcs.NULL
gsm_map.lcs.vertical_accuracy vertical-accuracy
Byte array
gsm_map_lcs.Vertical_Accuracy
gsm_map.lmsi lmsi
Byte array
gsm_map.LMSI
gsm_map.maximumentitledPriority maximumentitledPriority
Unsigned 32-bit integer
gsm_map.EMLPP_Priority
gsm_map.ms.BSSMAP_ServiceHandoverList_item Item
No value
gsm_map_ms.BSSMAP_ServiceHandoverInfo
gsm_map.ms.BasicServiceCriteria_item Item
Unsigned 32-bit integer
gsm_map.Ext_BasicServiceCode
gsm_map.ms.BasicServiceList_item Item
Unsigned 32-bit integer
gsm_map.Ext_BasicServiceCode
gsm_map.ms.BearerServiceList_item Item
Unsigned 8-bit integer
gsm_map.Ext_BearerServiceCode
gsm_map.ms.CUG_FeatureList_item Item
No value
gsm_map_ms.CUG_Feature
gsm_map.ms.CUG_SubscriptionList_item Item
No value
gsm_map_ms.CUG_Subscription
gsm_map.ms.ContextIdList_item Item
Unsigned 32-bit integer
gsm_map_ms.ContextId
gsm_map.ms.DP_AnalysedInfoCriteriaList_item Item
No value
gsm_map_ms.DP_AnalysedInfoCriterium
gsm_map.ms.DestinationNumberLengthList_item Item
Unsigned 32-bit integer
gsm_map_ms.INTEGER_1_maxNumOfISDN_AddressDigits
gsm_map.ms.DestinationNumberList_item Item
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.Ext_BasicServiceGroupList_item Item
Unsigned 32-bit integer
gsm_map.Ext_BasicServiceCode
gsm_map.ms.Ext_CallBarFeatureList_item Item
No value
gsm_map_ms.Ext_CallBarringFeature
gsm_map.ms.Ext_ExternalClientList_item Item
No value
gsm_map_ms.ExternalClient
gsm_map.ms.Ext_ForwFeatureList_item Item
No value
gsm_map_ms.Ext_ForwFeature
gsm_map.ms.Ext_SS_InfoList_item Item
Unsigned 32-bit integer
gsm_map_ms.Ext_SS_Info
gsm_map.ms.ExternalClientList_item Item
No value
gsm_map_ms.ExternalClient
gsm_map.ms.GMLC_List_item Item
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.GPRSDataList_item Item
No value
gsm_map_ms.PDP_Context
gsm_map.ms.GPRS_CamelTDPDataList_item Item
No value
gsm_map_ms.GPRS_CamelTDPData
gsm_map.ms.LCS_PrivacyExceptionList_item Item
No value
gsm_map_ms.LCS_PrivacyClass
gsm_map.ms.LSADataList_item Item
No value
gsm_map_ms.LSAData
gsm_map.ms.LSAIdentityList_item Item
Byte array
gsm_map_ms.LSAIdentity
gsm_map.ms.MOLR_List_item Item
No value
gsm_map_ms.MOLR_Class
gsm_map.ms.MSISDN_BS_List_item Item
No value
gsm_map_ms.MSISDN_BS
gsm_map.ms.MT_smsCAMELTDP_CriteriaList_item Item
No value
gsm_map_ms.MT_smsCAMELTDP_Criteria
gsm_map.ms.MobilityTriggers_item Item
Byte array
gsm_map_ms.MM_Code
gsm_map.ms.O_BcsmCamelTDPCriteriaList_item Item
No value
gsm_map_ms.O_BcsmCamelTDP_Criteria
gsm_map.ms.O_BcsmCamelTDPDataList_item Item
No value
gsm_map_ms.O_BcsmCamelTDPData
gsm_map.ms.O_CauseValueCriteria_item Item
Byte array
gsm_map_ms.CauseValue
gsm_map.ms.PDP_ContextInfoList_item Item
No value
gsm_map_ms.PDP_ContextInfo
gsm_map.ms.PLMNClientList_item Item
Unsigned 32-bit integer
gsm_map.LCSClientInternalID
gsm_map.ms.QuintupletList_item Item
No value
gsm_map_ms.AuthenticationQuintuplet
gsm_map.ms.RadioResourceList_item Item
No value
gsm_map_ms.RadioResource
gsm_map.ms.RelocationNumberList_item Item
No value
gsm_map_ms.RelocationNumber
gsm_map.ms.SMS_CAMEL_TDP_DataList_item Item
No value
gsm_map_ms.SMS_CAMEL_TDP_Data
gsm_map.ms.SS_EventList_item Item
Unsigned 8-bit integer
gsm_map.SS_Code
gsm_map.ms.ServiceTypeList_item Item
No value
gsm_map_ms.ServiceType
gsm_map.ms.TPDU_TypeCriterion_item Item
Unsigned 32-bit integer
gsm_map_ms.MT_SMS_TPDU_Type
gsm_map.ms.T_BCSM_CAMEL_TDP_CriteriaList_item Item
No value
gsm_map_ms.T_BCSM_CAMEL_TDP_Criteria
gsm_map.ms.T_BcsmCamelTDPDataList_item Item
No value
gsm_map_ms.T_BcsmCamelTDPData
gsm_map.ms.T_CauseValueCriteria_item Item
Byte array
gsm_map_ms.CauseValue
gsm_map.ms.TeleserviceList_item Item
Unsigned 8-bit integer
gsm_map.Ext_TeleserviceCode
gsm_map.ms.TripletList_item Item
No value
gsm_map_ms.AuthenticationTriplet
gsm_map.ms.VBSDataList_item Item
No value
gsm_map_ms.VoiceBroadcastData
gsm_map.ms.VGCSDataList_item Item
No value
gsm_map_ms.VoiceGroupCallData
gsm_map.ms.ZoneCodeList_item Item
Byte array
gsm_map_ms.ZoneCode
gsm_map.ms.accessRestrictionData accessRestrictionData
Byte array
gsm_map_ms.AccessRestrictionData
gsm_map.ms.accessType accessType
Unsigned 32-bit integer
gsm_map_ms.AccessType
gsm_map.ms.add_Capability add-Capability
No value
gsm_map_ms.NULL
gsm_map.ms.add_info add-info
No value
gsm_map_ms.ADD_Info
gsm_map.ms.add_lcs_PrivacyExceptionList add-lcs-PrivacyExceptionList
Unsigned 32-bit integer
gsm_map_ms.LCS_PrivacyExceptionList
gsm_map.ms.additionalInfo additionalInfo
Byte array
gsm_map_ms.AdditionalInfo
gsm_map.ms.additionalRequestedCAMEL_SubscriptionInfo additionalRequestedCAMEL-SubscriptionInfo
Unsigned 32-bit integer
gsm_map_ms.AdditionalRequestedCAMEL_SubscriptionInfo
gsm_map.ms.additionalSubscriptions additionalSubscriptions
Byte array
gsm_map_ms.AdditionalSubscriptions
gsm_map.ms.ageOfLocationInformation ageOfLocationInformation
Unsigned 32-bit integer
gsm_map.AgeOfLocationInformation
gsm_map.ms.alertingDP alertingDP
Boolean
gsm_map.ms.allECT-Barred allECT-Barred
Boolean
gsm_map.ms.allGPRSData allGPRSData
No value
gsm_map_ms.NULL
gsm_map.ms.allIC-CallsBarred allIC-CallsBarred
Boolean
gsm_map.ms.allInformationSent allInformationSent
No value
gsm_map_ms.NULL
gsm_map.ms.allLSAData allLSAData
No value
gsm_map_ms.NULL
gsm_map.ms.allOG-CallsBarred allOG-CallsBarred
Boolean
gsm_map.ms.allPacketOrientedServicesBarred allPacketOrientedServicesBarred
Boolean
gsm_map.ms.allowedGSM_Algorithms allowedGSM-Algorithms
Byte array
gsm_map_ms.AllowedGSM_Algorithms
gsm_map.ms.allowedUMTS_Algorithms allowedUMTS-Algorithms
No value
gsm_map_ms.AllowedUMTS_Algorithms
gsm_map.ms.alternativeChannelType alternativeChannelType
Byte array
gsm_map_ms.RadioResourceInformation
gsm_map.ms.an_APDU an-APDU
No value
gsm_map.AccessNetworkSignalInfo
gsm_map.ms.apn apn
Byte array
gsm_map_ms.APN
gsm_map.ms.apn_InUse apn-InUse
Byte array
gsm_map_ms.APN
gsm_map.ms.apn_Subscribed apn-Subscribed
Byte array
gsm_map_ms.APN
gsm_map.ms.asciCallReference asciCallReference
Byte array
gsm_map.ASCI_CallReference
gsm_map.ms.assumedIdle assumedIdle
No value
gsm_map_ms.NULL
gsm_map.ms.authenticationSetList authenticationSetList
Unsigned 32-bit integer
gsm_map_ms.AuthenticationSetList
gsm_map.ms.autn autn
Byte array
gsm_map_ms.AUTN
gsm_map.ms.auts auts
Byte array
gsm_map_ms.AUTS
gsm_map.ms.basicService basicService
Unsigned 32-bit integer
gsm_map.Ext_BasicServiceCode
gsm_map.ms.basicServiceCriteria basicServiceCriteria
Unsigned 32-bit integer
gsm_map_ms.BasicServiceCriteria
gsm_map.ms.basicServiceGroupList basicServiceGroupList
Unsigned 32-bit integer
gsm_map_ms.Ext_BasicServiceGroupList
gsm_map.ms.basicServiceList basicServiceList
Unsigned 32-bit integer
gsm_map_ms.BasicServiceList
gsm_map.ms.bearerServiceList bearerServiceList
Unsigned 32-bit integer
gsm_map_ms.BearerServiceList
gsm_map.ms.bmuef bmuef
No value
gsm_map_ms.UESBI_Iu
gsm_map.ms.broadcastInitEntitlement broadcastInitEntitlement
No value
gsm_map_ms.NULL
gsm_map.ms.bssmap_ServiceHandover bssmap-ServiceHandover
Byte array
gsm_map_ms.BSSMAP_ServiceHandover
gsm_map.ms.bssmap_ServiceHandoverList bssmap-ServiceHandoverList
Unsigned 32-bit integer
gsm_map_ms.BSSMAP_ServiceHandoverList
gsm_map.ms.callBarringData callBarringData
No value
gsm_map_ms.CallBarringData
gsm_map.ms.callBarringFeatureList callBarringFeatureList
Unsigned 32-bit integer
gsm_map_ms.Ext_CallBarFeatureList
gsm_map.ms.callBarringInfo callBarringInfo
No value
gsm_map_ms.Ext_CallBarInfo
gsm_map.ms.callBarringInfoFor_CSE callBarringInfoFor-CSE
No value
gsm_map_ms.Ext_CallBarringInfoFor_CSE
gsm_map.ms.callForwardingData callForwardingData
No value
gsm_map_ms.CallForwardingData
gsm_map.ms.callTypeCriteria callTypeCriteria
Unsigned 32-bit integer
gsm_map_ms.CallTypeCriteria
gsm_map.ms.camelBusy camelBusy
No value
gsm_map_ms.NULL
gsm_map.ms.camelCapabilityHandling camelCapabilityHandling
Unsigned 32-bit integer
gsm_map_ms.CamelCapabilityHandling
gsm_map.ms.camelSubscriptionInfoWithdraw camelSubscriptionInfoWithdraw
No value
gsm_map_ms.NULL
gsm_map.ms.camel_SubscriptionInfo camel-SubscriptionInfo
No value
gsm_map_ms.CAMEL_SubscriptionInfo
gsm_map.ms.cancellationType cancellationType
Unsigned 32-bit integer
gsm_map_ms.CancellationType
gsm_map.ms.category category
Byte array
gsm_map_ms.Category
gsm_map.ms.cellGlobalIdOrServiceAreaIdOrLAI cellGlobalIdOrServiceAreaIdOrLAI
Unsigned 32-bit integer
gsm_map.CellGlobalIdOrServiceAreaIdOrLAI
gsm_map.ms.cf-Enhancements cf-Enhancements
Boolean
gsm_map.ms.changeOfPositionDP changeOfPositionDP
Boolean
gsm_map.ms.chargeableECT-Barred chargeableECT-Barred
Boolean
gsm_map.ms.chargingCharacteristics chargingCharacteristics
Unsigned 16-bit integer
gsm_map_ms.ChargingCharacteristics
gsm_map.ms.chargingCharacteristicsWithdraw chargingCharacteristicsWithdraw
No value
gsm_map_ms.NULL
gsm_map.ms.chargingId chargingId
Byte array
gsm_map_ms.GPRSChargingID
gsm_map.ms.chargingIndicator chargingIndicator
Boolean
gsm_map.ms.chosenChannelInfo chosenChannelInfo
Byte array
gsm_map_ms.ChosenChannelInfo
gsm_map.ms.chosenRadioResourceInformation chosenRadioResourceInformation
No value
gsm_map_ms.ChosenRadioResourceInformation
gsm_map.ms.chosenSpeechVersion chosenSpeechVersion
Byte array
gsm_map_ms.ChosenSpeechVersion
gsm_map.ms.ck ck
Byte array
gsm_map_ms.CK
gsm_map.ms.cksn cksn
Byte array
gsm_map_ms.Cksn
gsm_map.ms.clientIdentity clientIdentity
No value
gsm_map.LCSClientExternalID
gsm_map.ms.codec1 codec1
Byte array
gsm_map_ms.Codec
gsm_map.ms.codec2 codec2
Byte array
gsm_map_ms.Codec
gsm_map.ms.codec3 codec3
Byte array
gsm_map_ms.Codec
gsm_map.ms.codec4 codec4
Byte array
gsm_map_ms.Codec
gsm_map.ms.codec5 codec5
Byte array
gsm_map_ms.Codec
gsm_map.ms.codec6 codec6
Byte array
gsm_map_ms.Codec
gsm_map.ms.codec7 codec7
Byte array
gsm_map_ms.Codec
gsm_map.ms.codec8 codec8
Byte array
gsm_map_ms.Codec
gsm_map.ms.collectInformation collectInformation
Boolean
gsm_map.ms.completeDataListIncluded completeDataListIncluded
No value
gsm_map_ms.NULL
gsm_map.ms.contextIdList contextIdList
Unsigned 32-bit integer
gsm_map_ms.ContextIdList
gsm_map.ms.criteriaForChangeOfPositionDP criteriaForChangeOfPositionDP
Boolean
gsm_map.ms.cs_AllocationRetentionPriority cs-AllocationRetentionPriority
Byte array
gsm_map_ms.CS_AllocationRetentionPriority
gsm_map.ms.cs_LCS_NotSupportedByUE cs-LCS-NotSupportedByUE
No value
gsm_map_ms.NULL
gsm_map.ms.csiActive csiActive
No value
gsm_map_ms.NULL
gsm_map.ms.csi_Active csi-Active
No value
gsm_map_ms.NULL
gsm_map.ms.cug_FeatureList cug-FeatureList
Unsigned 32-bit integer
gsm_map_ms.CUG_FeatureList
gsm_map.ms.cug_Index cug-Index
Unsigned 32-bit integer
gsm_map_ms.CUG_Index
gsm_map.ms.cug_Info cug-Info
No value
gsm_map_ms.CUG_Info
gsm_map.ms.cug_Interlock cug-Interlock
Byte array
gsm_map_ms.CUG_Interlock
gsm_map.ms.cug_SubscriptionList cug-SubscriptionList
Unsigned 32-bit integer
gsm_map_ms.CUG_SubscriptionList
gsm_map.ms.currentLocation currentLocation
No value
gsm_map_ms.NULL
gsm_map.ms.currentLocationRetrieved currentLocationRetrieved
No value
gsm_map_ms.NULL
gsm_map.ms.currentSecurityContext currentSecurityContext
Unsigned 32-bit integer
gsm_map_ms.CurrentSecurityContext
gsm_map.ms.currentlyUsedCodec currentlyUsedCodec
Byte array
gsm_map_ms.Codec
gsm_map.ms.d-IM-CSI d-IM-CSI
Boolean
gsm_map.ms.d-csi d-csi
Boolean
gsm_map.ms.d_CSI d-CSI
No value
gsm_map_ms.D_CSI
gsm_map.ms.d_IM_CSI d-IM-CSI
No value
gsm_map_ms.D_CSI
gsm_map.ms.defaultCallHandling defaultCallHandling
Unsigned 32-bit integer
gsm_map_ms.DefaultCallHandling
gsm_map.ms.defaultSMS_Handling defaultSMS-Handling
Unsigned 32-bit integer
gsm_map_ms.DefaultSMS_Handling
gsm_map.ms.defaultSessionHandling defaultSessionHandling
Unsigned 32-bit integer
gsm_map_ms.DefaultGPRS_Handling
gsm_map.ms.destinationNumberCriteria destinationNumberCriteria
No value
gsm_map_ms.DestinationNumberCriteria
gsm_map.ms.destinationNumberLengthList destinationNumberLengthList
Unsigned 32-bit integer
gsm_map_ms.DestinationNumberLengthList
gsm_map.ms.destinationNumberList destinationNumberList
Unsigned 32-bit integer
gsm_map_ms.DestinationNumberList
gsm_map.ms.dfc-WithArgument dfc-WithArgument
Boolean
gsm_map.ms.dialledNumber dialledNumber
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.disconnectLeg disconnectLeg
Boolean
gsm_map.ms.doublyChargeableECT-Barred doublyChargeableECT-Barred
Boolean
gsm_map.ms.dp_AnalysedInfoCriteriaList dp-AnalysedInfoCriteriaList
Unsigned 32-bit integer
gsm_map_ms.DP_AnalysedInfoCriteriaList
gsm_map.ms.dtmf-MidCall dtmf-MidCall
Boolean
gsm_map.ms.emergencyReset emergencyReset
Boolean
gsm_map.ms.emergencyUplinkRequest emergencyUplinkRequest
Boolean
gsm_map.ms.emlpp_Info emlpp-Info
No value
gsm_map.EMLPP_Info
gsm_map.ms.encryptionAlgorithm encryptionAlgorithm
Byte array
gsm_map_ms.ChosenEncryptionAlgorithm
gsm_map.ms.encryptionAlgorithms encryptionAlgorithms
Byte array
gsm_map_ms.PermittedEncryptionAlgorithms
gsm_map.ms.encryptionInfo encryptionInfo
Byte array
gsm_map_ms.EncryptionInformation
gsm_map.ms.entityReleased entityReleased
Boolean
gsm_map.ms.equipmentStatus equipmentStatus
Unsigned 32-bit integer
gsm_map_ms.EquipmentStatus
gsm_map.ms.eventMet eventMet
Byte array
gsm_map_ms.MM_Code
gsm_map.ms.ext2_QoS_Subscribed ext2-QoS-Subscribed
Byte array
gsm_map_ms.Ext2_QoS_Subscribed
gsm_map.ms.ext3_QoS_Subscribed ext3-QoS-Subscribed
Byte array
gsm_map_ms.Ext3_QoS_Subscribed
gsm_map.ms.ext_QoS_Subscribed ext-QoS-Subscribed
Byte array
gsm_map_ms.Ext_QoS_Subscribed
gsm_map.ms.ext_externalClientList ext-externalClientList
Unsigned 32-bit integer
gsm_map_ms.Ext_ExternalClientList
gsm_map.ms.extensionContainer extensionContainer
No value
gsm_map.ExtensionContainer
gsm_map.ms.externalClientList externalClientList
Unsigned 32-bit integer
gsm_map_ms.ExternalClientList
gsm_map.ms.failureCause failureCause
Unsigned 32-bit integer
gsm_map_ms.FailureCause
gsm_map.ms.forwardedToNumber forwardedToNumber
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.forwardedToSubaddress forwardedToSubaddress
Byte array
gsm_map.ISDN_SubaddressString
gsm_map.ms.forwardingFeatureList forwardingFeatureList
Unsigned 32-bit integer
gsm_map_ms.Ext_ForwFeatureList
gsm_map.ms.forwardingInfo forwardingInfo
No value
gsm_map_ms.Ext_ForwInfo
gsm_map.ms.forwardingInfoFor_CSE forwardingInfoFor-CSE
No value
gsm_map_ms.Ext_ForwardingInfoFor_CSE
gsm_map.ms.forwardingOptions forwardingOptions
Byte array
gsm_map_ms.T_forwardingOptions
gsm_map.ms.freezeP_TMSI freezeP-TMSI
No value
gsm_map_ms.NULL
gsm_map.ms.freezeTMSI freezeTMSI
No value
gsm_map_ms.NULL
gsm_map.ms.geodeticInformation geodeticInformation
Byte array
gsm_map_ms.GeodeticInformation
gsm_map.ms.geographicalInformation geographicalInformation
Byte array
gsm_map_ms.GeographicalInformation
gsm_map.ms.geran geran
Boolean
gsm_map.ms.geranCodecList geranCodecList
No value
gsm_map_ms.CodecList
gsm_map.ms.geranNotAllowed geranNotAllowed
Boolean
gsm_map.ms.geran_classmark geran-classmark
Byte array
gsm_map_ms.GERAN_Classmark
gsm_map.ms.ggsn_Address ggsn-Address
Byte array
gsm_map_ms.GSN_Address
gsm_map.ms.ggsn_Number ggsn-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.gmlc_List gmlc-List
Unsigned 32-bit integer
gsm_map_ms.GMLC_List
gsm_map.ms.gmlc_ListWithdraw gmlc-ListWithdraw
No value
gsm_map_ms.NULL
gsm_map.ms.gmlc_Restriction gmlc-Restriction
Unsigned 32-bit integer
gsm_map_ms.GMLC_Restriction
gsm_map.ms.gprs-csi gprs-csi
Boolean
gsm_map.ms.gprsDataList gprsDataList
Unsigned 32-bit integer
gsm_map_ms.GPRSDataList
gsm_map.ms.gprsEnhancementsSupportIndicator gprsEnhancementsSupportIndicator
No value
gsm_map_ms.NULL
gsm_map.ms.gprsSubscriptionData gprsSubscriptionData
No value
gsm_map_ms.GPRSSubscriptionData
gsm_map.ms.gprsSubscriptionDataWithdraw gprsSubscriptionDataWithdraw
Unsigned 32-bit integer
gsm_map_ms.GPRSSubscriptionDataWithdraw
gsm_map.ms.gprs_CSI gprs-CSI
No value
gsm_map_ms.GPRS_CSI
gsm_map.ms.gprs_CamelTDPDataList gprs-CamelTDPDataList
Unsigned 32-bit integer
gsm_map_ms.GPRS_CamelTDPDataList
gsm_map.ms.gprs_MS_Class gprs-MS-Class
No value
gsm_map_ms.GPRSMSClass
gsm_map.ms.gprs_TriggerDetectionPoint gprs-TriggerDetectionPoint
Unsigned 32-bit integer
gsm_map_ms.GPRS_TriggerDetectionPoint
gsm_map.ms.groupId groupId
Byte array
gsm_map_ms.GroupId
gsm_map.ms.groupid groupid
Byte array
gsm_map_ms.GroupId
gsm_map.ms.gsmSCF_Address gsmSCF-Address
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.gsm_SecurityContextData gsm-SecurityContextData
No value
gsm_map_ms.GSM_SecurityContextData
gsm_map.ms.handoverNumber handoverNumber
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.hlr_List hlr-List
Unsigned 32-bit integer
gsm_map.HLR_List
gsm_map.ms.hlr_Number hlr-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.ho_NumberNotRequired ho-NumberNotRequired
No value
gsm_map_ms.NULL
gsm_map.ms.hopCounter hopCounter
Unsigned 32-bit integer
gsm_map_ms.HopCounter
gsm_map.ms.iUSelectedCodec iUSelectedCodec
Byte array
gsm_map_ms.Codec
gsm_map.ms.identity identity
Unsigned 32-bit integer
gsm_map.Identity
gsm_map.ms.ik ik
Byte array
gsm_map_ms.IK
gsm_map.ms.imei imei
Byte array
gsm_map.IMEI
gsm_map.ms.imeisv imeisv
Byte array
gsm_map.IMEI
gsm_map.ms.immediateResponsePreferred immediateResponsePreferred
No value
gsm_map_ms.NULL
gsm_map.ms.imsi imsi
Byte array
gsm_map.IMSI
gsm_map.ms.informPreviousNetworkEntity informPreviousNetworkEntity
No value
gsm_map_ms.NULL
gsm_map.ms.initiateCallAttempt initiateCallAttempt
Boolean
gsm_map.ms.integrityProtectionAlgorithm integrityProtectionAlgorithm
Byte array
gsm_map_ms.ChosenIntegrityProtectionAlgorithm
gsm_map.ms.integrityProtectionAlgorithms integrityProtectionAlgorithms
Byte array
gsm_map_ms.PermittedIntegrityProtectionAlgorithms
gsm_map.ms.integrityProtectionInfo integrityProtectionInfo
Byte array
gsm_map_ms.IntegrityProtectionInformation
gsm_map.ms.interCUG_Restrictions interCUG-Restrictions
Byte array
gsm_map_ms.InterCUG_Restrictions
gsm_map.ms.internationalECT-Barred internationalECT-Barred
Boolean
gsm_map.ms.internationalOGCallsBarred internationalOGCallsBarred
Boolean
gsm_map.ms.internationalOGCallsNotToHPLMN-CountryBarred internationalOGCallsNotToHPLMN-CountryBarred
Boolean
gsm_map.ms.interzonalECT-Barred interzonalECT-Barred
Boolean
gsm_map.ms.interzonalOGCallsAndInternationalOGCallsNotToHPLMN-CountryBarred interzonalOGCallsAndInternationalOGCallsNotToHPLMN-CountryBarred
Boolean
gsm_map.ms.interzonalOGCallsBarred interzonalOGCallsBarred
Boolean
gsm_map.ms.interzonalOGCallsNotToHPLMN-CountryBarred interzonalOGCallsNotToHPLMN-CountryBarred
Boolean
gsm_map.ms.intraCUG_Options intraCUG-Options
Unsigned 32-bit integer
gsm_map_ms.IntraCUG_Options
gsm_map.ms.istAlertTimer istAlertTimer
Unsigned 32-bit integer
gsm_map_ms.IST_AlertTimerValue
gsm_map.ms.istInformationWithdraw istInformationWithdraw
No value
gsm_map_ms.NULL
gsm_map.ms.istSupportIndicator istSupportIndicator
Unsigned 32-bit integer
gsm_map_ms.IST_SupportIndicator
gsm_map.ms.iuAvailableCodecsList iuAvailableCodecsList
No value
gsm_map_ms.CodecList
gsm_map.ms.iuCurrentlyUsedCodec iuCurrentlyUsedCodec
Byte array
gsm_map_ms.Codec
gsm_map.ms.iuSelectedCodec iuSelectedCodec
Byte array
gsm_map_ms.Codec
gsm_map.ms.iuSupportedCodecsList iuSupportedCodecsList
No value
gsm_map_ms.SupportedCodecsList
gsm_map.ms.kc kc
Byte array
gsm_map_ms.Kc
gsm_map.ms.keyStatus keyStatus
Unsigned 32-bit integer
gsm_map_ms.KeyStatus
gsm_map.ms.ksi ksi
Byte array
gsm_map_ms.KSI
gsm_map.ms.lcsCapabilitySet1 lcsCapabilitySet1
Boolean
gsm_map.ms.lcsCapabilitySet2 lcsCapabilitySet2
Boolean
gsm_map.ms.lcsCapabilitySet3 lcsCapabilitySet3
Boolean
gsm_map.ms.lcsCapabilitySet4 lcsCapabilitySet4
Boolean
gsm_map.ms.lcsCapabilitySet5 lcsCapabilitySet5
Boolean
gsm_map.ms.lcsInformation lcsInformation
No value
gsm_map_ms.LCSInformation
gsm_map.ms.lcs_PrivacyExceptionList lcs-PrivacyExceptionList
Unsigned 32-bit integer
gsm_map_ms.LCS_PrivacyExceptionList
gsm_map.ms.lmsi lmsi
Byte array
gsm_map.LMSI
gsm_map.ms.lmu_Indicator lmu-Indicator
No value
gsm_map_ms.NULL
gsm_map.ms.locationAtAlerting locationAtAlerting
Boolean
gsm_map.ms.locationInformation locationInformation
No value
gsm_map_ms.LocationInformation
gsm_map.ms.locationInformationGPRS locationInformationGPRS
No value
gsm_map_ms.LocationInformationGPRS
gsm_map.ms.locationNumber locationNumber
Byte array
gsm_map_ms.LocationNumber
gsm_map.ms.longFTN_Supported longFTN-Supported
No value
gsm_map_ms.NULL
gsm_map.ms.longForwardedToNumber longForwardedToNumber
Byte array
gsm_map.FTN_AddressString
gsm_map.ms.longGroupID_Supported longGroupID-Supported
No value
gsm_map_ms.NULL
gsm_map.ms.longGroupId longGroupId
Byte array
gsm_map_ms.Long_GroupId
gsm_map.ms.lsaActiveModeIndicator lsaActiveModeIndicator
No value
gsm_map_ms.NULL
gsm_map.ms.lsaAttributes lsaAttributes
Byte array
gsm_map_ms.LSAAttributes
gsm_map.ms.lsaDataList lsaDataList
Unsigned 32-bit integer
gsm_map_ms.LSADataList
gsm_map.ms.lsaIdentity lsaIdentity
Byte array
gsm_map_ms.LSAIdentity
gsm_map.ms.lsaIdentityList lsaIdentityList
Unsigned 32-bit integer
gsm_map_ms.LSAIdentityList
gsm_map.ms.lsaInformation lsaInformation
No value
gsm_map_ms.LSAInformation
gsm_map.ms.lsaInformationWithdraw lsaInformationWithdraw
Unsigned 32-bit integer
gsm_map_ms.LSAInformationWithdraw
gsm_map.ms.lsaOnlyAccessIndicator lsaOnlyAccessIndicator
Unsigned 32-bit integer
gsm_map_ms.LSAOnlyAccessIndicator
gsm_map.ms.m-csi m-csi
Boolean
gsm_map.ms.mSNetworkCapability mSNetworkCapability
Byte array
gsm_map_ms.MSNetworkCapability
gsm_map.ms.mSRadioAccessCapability mSRadioAccessCapability
Byte array
gsm_map_ms.MSRadioAccessCapability
gsm_map.ms.m_CSI m-CSI
No value
gsm_map_ms.M_CSI
gsm_map.ms.matchType matchType
Unsigned 32-bit integer
gsm_map_ms.MatchType
gsm_map.ms.mc_SS_Info mc-SS-Info
No value
gsm_map.MC_SS_Info
gsm_map.ms.mg-csi mg-csi
Boolean
gsm_map.ms.mg_csi mg-csi
No value
gsm_map_ms.MG_CSI
gsm_map.ms.mnpInfoRes mnpInfoRes
No value
gsm_map_ms.MNPInfoRes
gsm_map.ms.mnpRequestedInfo mnpRequestedInfo
No value
gsm_map_ms.NULL
gsm_map.ms.mo-sms-csi mo-sms-csi
Boolean
gsm_map.ms.mo_sms_CSI mo-sms-CSI
No value
gsm_map_ms.SMS_CSI
gsm_map.ms.mobileNotReachableReason mobileNotReachableReason
Unsigned 32-bit integer
gsm_map_er.AbsentSubscriberDiagnosticSM
gsm_map.ms.mobilityTriggers mobilityTriggers
Unsigned 32-bit integer
gsm_map_ms.MobilityTriggers
gsm_map.ms.modificationRequestFor_CB_Info modificationRequestFor-CB-Info
No value
gsm_map_ms.ModificationRequestFor_CB_Info
gsm_map.ms.modificationRequestFor_CF_Info modificationRequestFor-CF-Info
No value
gsm_map_ms.ModificationRequestFor_CF_Info
gsm_map.ms.modificationRequestFor_CSI modificationRequestFor-CSI
No value
gsm_map_ms.ModificationRequestFor_CSI
gsm_map.ms.modificationRequestFor_IP_SM_GW_Data modificationRequestFor-IP-SM-GW-Data
No value
gsm_map_ms.ModificationRequestFor_IP_SM_GW_Data
gsm_map.ms.modificationRequestFor_ODB_data modificationRequestFor-ODB-data
No value
gsm_map_ms.ModificationRequestFor_ODB_data
gsm_map.ms.modifyCSI_State modifyCSI-State
Unsigned 32-bit integer
gsm_map_ms.ModificationInstruction
gsm_map.ms.modifyNotificationToCSE modifyNotificationToCSE
Unsigned 32-bit integer
gsm_map_ms.ModificationInstruction
gsm_map.ms.modifyRegistrationStatus modifyRegistrationStatus
Unsigned 32-bit integer
gsm_map_ms.ModificationInstruction
gsm_map.ms.molr_List molr-List
Unsigned 32-bit integer
gsm_map_ms.MOLR_List
gsm_map.ms.moveLeg moveLeg
Boolean
gsm_map.ms.msNotReachable msNotReachable
No value
gsm_map_ms.NULL
gsm_map.ms.ms_Classmark2 ms-Classmark2
Byte array
gsm_map_ms.MS_Classmark2
gsm_map.ms.ms_classmark ms-classmark
No value
gsm_map_ms.NULL
gsm_map.ms.msc_Number msc-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.msisdn msisdn
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.msisdn_BS_List msisdn-BS-List
Unsigned 32-bit integer
gsm_map_ms.MSISDN_BS_List
gsm_map.ms.mt-sms-csi mt-sms-csi
Boolean
gsm_map.ms.mt_smsCAMELTDP_CriteriaList mt-smsCAMELTDP-CriteriaList
Unsigned 32-bit integer
gsm_map_ms.MT_smsCAMELTDP_CriteriaList
gsm_map.ms.mt_sms_CSI mt-sms-CSI
No value
gsm_map_ms.SMS_CSI
gsm_map.ms.multicallBearerInfo multicallBearerInfo
Unsigned 32-bit integer
gsm_map_ms.MulticallBearerInfo
gsm_map.ms.multipleBearerNotSupported multipleBearerNotSupported
No value
gsm_map_ms.NULL
gsm_map.ms.multipleBearerRequested multipleBearerRequested
No value
gsm_map_ms.NULL
gsm_map.ms.multipleECT-Barred multipleECT-Barred
Boolean
gsm_map.ms.naea_PreferredCI naea-PreferredCI
No value
gsm_map.NAEA_PreferredCI
gsm_map.ms.netDetNotReachable netDetNotReachable
Unsigned 32-bit integer
gsm_map_ms.NotReachableReason
gsm_map.ms.networkAccessMode networkAccessMode
Unsigned 32-bit integer
gsm_map_ms.NetworkAccessMode
gsm_map.ms.noReplyConditionTime noReplyConditionTime
Unsigned 32-bit integer
gsm_map_ms.Ext_NoRepCondTime
gsm_map.ms.notProvidedFromSGSN notProvidedFromSGSN
No value
gsm_map_ms.NULL
gsm_map.ms.notProvidedFromVLR notProvidedFromVLR
No value
gsm_map_ms.NULL
gsm_map.ms.notificationToCSE notificationToCSE
No value
gsm_map_ms.NULL
gsm_map.ms.notificationToMSUser notificationToMSUser
Unsigned 32-bit integer
gsm_map_ms.NotificationToMSUser
gsm_map.ms.nsapi nsapi
Unsigned 32-bit integer
gsm_map_ms.NSAPI
gsm_map.ms.numberOfRequestedVectors numberOfRequestedVectors
Unsigned 32-bit integer
gsm_map_ms.NumberOfRequestedVectors
gsm_map.ms.numberPortabilityStatus numberPortabilityStatus
Unsigned 32-bit integer
gsm_map_ms.NumberPortabilityStatus
gsm_map.ms.o-IM-CSI o-IM-CSI
Boolean
gsm_map.ms.o-csi o-csi
Boolean
gsm_map.ms.o_BcsmCamelTDPDataList o-BcsmCamelTDPDataList
Unsigned 32-bit integer
gsm_map_ms.O_BcsmCamelTDPDataList
gsm_map.ms.o_BcsmCamelTDP_CriteriaList o-BcsmCamelTDP-CriteriaList
Unsigned 32-bit integer
gsm_map_ms.O_BcsmCamelTDPCriteriaList
gsm_map.ms.o_BcsmTriggerDetectionPoint o-BcsmTriggerDetectionPoint
Unsigned 32-bit integer
gsm_map_ms.O_BcsmTriggerDetectionPoint
gsm_map.ms.o_CSI o-CSI
No value
gsm_map_ms.O_CSI
gsm_map.ms.o_CauseValueCriteria o-CauseValueCriteria
Unsigned 32-bit integer
gsm_map_ms.O_CauseValueCriteria
gsm_map.ms.o_IM_BcsmCamelTDP_CriteriaList o-IM-BcsmCamelTDP-CriteriaList
Unsigned 32-bit integer
gsm_map_ms.O_BcsmCamelTDPCriteriaList
gsm_map.ms.o_IM_CSI o-IM-CSI
No value
gsm_map_ms.O_CSI
gsm_map.ms.odb odb
No value
gsm_map_ms.NULL
gsm_map.ms.odb_Data odb-Data
No value
gsm_map_ms.ODB_Data
gsm_map.ms.odb_GeneralData odb-GeneralData
Byte array
gsm_map_ms.ODB_GeneralData
gsm_map.ms.odb_HPLMN_Data odb-HPLMN-Data
Byte array
gsm_map_ms.ODB_HPLMN_Data
gsm_map.ms.odb_Info odb-Info
No value
gsm_map_ms.ODB_Info
gsm_map.ms.odb_data odb-data
No value
gsm_map_ms.ODB_Data
gsm_map.ms.offeredCamel4CSIs offeredCamel4CSIs
Byte array
gsm_map_ms.OfferedCamel4CSIs
gsm_map.ms.offeredCamel4CSIsInSGSN offeredCamel4CSIsInSGSN
Byte array
gsm_map_ms.OfferedCamel4CSIs
gsm_map.ms.offeredCamel4CSIsInVLR offeredCamel4CSIsInVLR
Byte array
gsm_map_ms.OfferedCamel4CSIs
gsm_map.ms.offeredCamel4Functionalities offeredCamel4Functionalities
Byte array
gsm_map_ms.OfferedCamel4Functionalities
gsm_map.ms.or-Interactions or-Interactions
Boolean
gsm_map.ms.password password
String
gsm_map_ss.Password
gsm_map.ms.pdp_Address pdp-Address
Byte array
gsm_map_ms.PDP_Address
gsm_map.ms.pdp_ChargingCharacteristics pdp-ChargingCharacteristics
Unsigned 16-bit integer
gsm_map_ms.ChargingCharacteristics
gsm_map.ms.pdp_ContextActive pdp-ContextActive
No value
gsm_map_ms.NULL
gsm_map.ms.pdp_ContextId pdp-ContextId
Unsigned 32-bit integer
gsm_map_ms.ContextId
gsm_map.ms.pdp_ContextIdentifier pdp-ContextIdentifier
Unsigned 32-bit integer
gsm_map_ms.ContextId
gsm_map.ms.pdp_Type pdp-Type
Byte array
gsm_map_ms.PDP_Type
gsm_map.ms.phase1 phase1
Boolean
gsm_map.ms.phase2 phase2
Boolean
gsm_map.ms.phase3 phase3
Boolean
gsm_map.ms.phase4 phase4
Boolean
gsm_map.ms.playTone playTone
Boolean
gsm_map.ms.plmn-SpecificBarringType1 plmn-SpecificBarringType1
Boolean
gsm_map.ms.plmn-SpecificBarringType2 plmn-SpecificBarringType2
Boolean
gsm_map.ms.plmn-SpecificBarringType3 plmn-SpecificBarringType3
Boolean
gsm_map.ms.plmn-SpecificBarringType4 plmn-SpecificBarringType4
Boolean
gsm_map.ms.plmnClientList plmnClientList
Unsigned 32-bit integer
gsm_map_ms.PLMNClientList
gsm_map.ms.preferentialCUG_Indicator preferentialCUG-Indicator
Unsigned 32-bit integer
gsm_map_ms.CUG_Index
gsm_map.ms.premiumRateEntertainementOGCallsBarred premiumRateEntertainementOGCallsBarred
Boolean
gsm_map.ms.premiumRateInformationOGCallsBarred premiumRateInformationOGCallsBarred
Boolean
gsm_map.ms.previous_LAI previous-LAI
Byte array
gsm_map.LAIFixedLength
gsm_map.ms.privilegedUplinkRequest privilegedUplinkRequest
Boolean
gsm_map.ms.provisionedSS provisionedSS
Unsigned 32-bit integer
gsm_map_ms.Ext_SS_InfoList
gsm_map.ms.ps_AttachedNotReachableForPaging ps-AttachedNotReachableForPaging
No value
gsm_map_ms.NULL
gsm_map.ms.ps_AttachedReachableForPaging ps-AttachedReachableForPaging
No value
gsm_map_ms.NULL
gsm_map.ms.ps_Detached ps-Detached
No value
gsm_map_ms.NULL
gsm_map.ms.ps_LCS_NotSupportedByUE ps-LCS-NotSupportedByUE
No value
gsm_map_ms.NULL
gsm_map.ms.ps_PDP_ActiveNotReachableForPaging ps-PDP-ActiveNotReachableForPaging
Unsigned 32-bit integer
gsm_map_ms.PDP_ContextInfoList
gsm_map.ms.ps_PDP_ActiveReachableForPaging ps-PDP-ActiveReachableForPaging
Unsigned 32-bit integer
gsm_map_ms.PDP_ContextInfoList
gsm_map.ms.ps_SubscriberState ps-SubscriberState
Unsigned 32-bit integer
gsm_map_ms.PS_SubscriberState
gsm_map.ms.psi-enhancements psi-enhancements
Boolean
gsm_map.ms.qos2_Negotiated qos2-Negotiated
Byte array
gsm_map_ms.Ext2_QoS_Subscribed
gsm_map.ms.qos2_Requested qos2-Requested
Byte array
gsm_map_ms.Ext2_QoS_Subscribed
gsm_map.ms.qos2_Subscribed qos2-Subscribed
Byte array
gsm_map_ms.Ext2_QoS_Subscribed
gsm_map.ms.qos3_Negotiated qos3-Negotiated
Byte array
gsm_map_ms.Ext3_QoS_Subscribed
gsm_map.ms.qos3_Requested qos3-Requested
Byte array
gsm_map_ms.Ext3_QoS_Subscribed
gsm_map.ms.qos3_Subscribed qos3-Subscribed
Byte array
gsm_map_ms.Ext3_QoS_Subscribed
gsm_map.ms.qos_Negotiated qos-Negotiated
Byte array
gsm_map_ms.Ext_QoS_Subscribed
gsm_map.ms.qos_Requested qos-Requested
Byte array
gsm_map_ms.Ext_QoS_Subscribed
gsm_map.ms.qos_Subscribed qos-Subscribed
Byte array
gsm_map_ms.QoS_Subscribed
gsm_map.ms.quintupletList quintupletList
Unsigned 32-bit integer
gsm_map_ms.QuintupletList
gsm_map.ms.rab_ConfigurationIndicator rab-ConfigurationIndicator
No value
gsm_map_ms.NULL
gsm_map.ms.rab_Id rab-Id
Unsigned 32-bit integer
gsm_map_ms.RAB_Id
gsm_map.ms.radioResourceInformation radioResourceInformation
Byte array
gsm_map_ms.RadioResourceInformation
gsm_map.ms.radioResourceList radioResourceList
Unsigned 32-bit integer
gsm_map_ms.RadioResourceList
gsm_map.ms.ranap_ServiceHandover ranap-ServiceHandover
Byte array
gsm_map_ms.RANAP_ServiceHandover
gsm_map.ms.rand rand
Byte array
gsm_map_ms.RAND
gsm_map.ms.re_attempt re-attempt
Boolean
gsm_map_ms.BOOLEAN
gsm_map.ms.re_synchronisationInfo re-synchronisationInfo
No value
gsm_map_ms.Re_synchronisationInfo
gsm_map.ms.regionalSubscriptionData regionalSubscriptionData
Unsigned 32-bit integer
gsm_map_ms.ZoneCodeList
gsm_map.ms.regionalSubscriptionIdentifier regionalSubscriptionIdentifier
Byte array
gsm_map_ms.ZoneCode
gsm_map.ms.regionalSubscriptionResponse regionalSubscriptionResponse
Unsigned 32-bit integer
gsm_map_ms.RegionalSubscriptionResponse
gsm_map.ms.registrationAllCF-Barred registrationAllCF-Barred
Boolean
gsm_map.ms.registrationCFNotToHPLMN-Barred registrationCFNotToHPLMN-Barred
Boolean
gsm_map.ms.registrationInternationalCF-Barred registrationInternationalCF-Barred
Boolean
gsm_map.ms.registrationInterzonalCF-Barred registrationInterzonalCF-Barred
Boolean
gsm_map.ms.registrationInterzonalCFNotToHPLMN-Barred registrationInterzonalCFNotToHPLMN-Barred
Boolean
gsm_map.ms.relocationNumberList relocationNumberList
Unsigned 32-bit integer
gsm_map_ms.RelocationNumberList
gsm_map.ms.requestedCAMEL_SubscriptionInfo requestedCAMEL-SubscriptionInfo
Unsigned 32-bit integer
gsm_map_ms.RequestedCAMEL_SubscriptionInfo
gsm_map.ms.requestedCamel_SubscriptionInfo requestedCamel-SubscriptionInfo
Unsigned 32-bit integer
gsm_map_ms.RequestedCAMEL_SubscriptionInfo
gsm_map.ms.requestedDomain requestedDomain
Unsigned 32-bit integer
gsm_map_ms.DomainType
gsm_map.ms.requestedEquipmentInfo requestedEquipmentInfo
Byte array
gsm_map_ms.RequestedEquipmentInfo
gsm_map.ms.requestedInfo requestedInfo
No value
gsm_map_ms.RequestedInfo
gsm_map.ms.requestedSS_Info requestedSS-Info
No value
gsm_map_ss.SS_ForBS_Code
gsm_map.ms.requestedSubscriptionInfo requestedSubscriptionInfo
No value
gsm_map_ms.RequestedSubscriptionInfo
gsm_map.ms.requestingNodeType requestingNodeType
Unsigned 32-bit integer
gsm_map_ms.RequestingNodeType
gsm_map.ms.requestingPLMN_Id requestingPLMN-Id
Byte array
gsm_map.PLMN_Id
gsm_map.ms.rnc_Address rnc-Address
Byte array
gsm_map_ms.GSN_Address
gsm_map.ms.roamerAccessToHPLMN-AP-Barred roamerAccessToHPLMN-AP-Barred
Boolean
gsm_map.ms.roamerAccessToVPLMN-AP-Barred roamerAccessToVPLMN-AP-Barred
Boolean
gsm_map.ms.roamingOutsidePLMN-Barred roamingOutsidePLMN-Barred
Boolean
gsm_map.ms.roamingOutsidePLMN-CountryBarred roamingOutsidePLMN-CountryBarred
Boolean
gsm_map.ms.roamingOutsidePLMNIC-CallsBarred roamingOutsidePLMNIC-CallsBarred
Boolean
gsm_map.ms.roamingOutsidePLMNICountryIC-CallsBarred roamingOutsidePLMNICountryIC-CallsBarred
Boolean
gsm_map.ms.roamingOutsidePLMNOG-CallsBarred roamingOutsidePLMNOG-CallsBarred
Boolean
gsm_map.ms.roamingRestrictedInSgsnDueToUnsupportedFeature roamingRestrictedInSgsnDueToUnsupportedFeature
No value
gsm_map_ms.NULL
gsm_map.ms.roamingRestrictedInSgsnDueToUnsuppportedFeature roamingRestrictedInSgsnDueToUnsuppportedFeature
No value
gsm_map_ms.NULL
gsm_map.ms.roamingRestrictionDueToUnsupportedFeature roamingRestrictionDueToUnsupportedFeature
No value
gsm_map_ms.NULL
gsm_map.ms.routeingAreaIdentity routeingAreaIdentity
Byte array
gsm_map_ms.RAIdentity
gsm_map.ms.routeingNumber routeingNumber
Byte array
gsm_map_ms.RouteingNumber
gsm_map.ms.sai_Present sai-Present
No value
gsm_map_ms.NULL
gsm_map.ms.segmentationProhibited segmentationProhibited
No value
gsm_map_ms.NULL
gsm_map.ms.selectedGSM_Algorithm selectedGSM-Algorithm
Byte array
gsm_map_ms.SelectedGSM_Algorithm
gsm_map.ms.selectedLSAIdentity selectedLSAIdentity
Byte array
gsm_map_ms.LSAIdentity
gsm_map.ms.selectedLSA_Id selectedLSA-Id
Byte array
gsm_map_ms.LSAIdentity
gsm_map.ms.selectedRab_Id selectedRab-Id
Unsigned 32-bit integer
gsm_map_ms.RAB_Id
gsm_map.ms.selectedUMTS_Algorithms selectedUMTS-Algorithms
No value
gsm_map_ms.SelectedUMTS_Algorithms
gsm_map.ms.sendSubscriberData sendSubscriberData
No value
gsm_map_ms.NULL
gsm_map.ms.serviceChangeDP serviceChangeDP
Boolean
gsm_map.ms.serviceKey serviceKey
Unsigned 32-bit integer
gsm_map_ms.ServiceKey
gsm_map.ms.serviceTypeIdentity serviceTypeIdentity
Unsigned 32-bit integer
gsm_map.LCSServiceTypeID
gsm_map.ms.serviceTypeList serviceTypeList
Unsigned 32-bit integer
gsm_map_ms.ServiceTypeList
gsm_map.ms.servingNetworkEnhancedDialledServices servingNetworkEnhancedDialledServices
Boolean
gsm_map.ms.sgsn_Address sgsn-Address
Byte array
gsm_map_ms.GSN_Address
gsm_map.ms.sgsn_CAMEL_SubscriptionInfo sgsn-CAMEL-SubscriptionInfo
No value
gsm_map_ms.SGSN_CAMEL_SubscriptionInfo
gsm_map.ms.sgsn_Capability sgsn-Capability
No value
gsm_map_ms.SGSN_Capability
gsm_map.ms.sgsn_Number sgsn-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.skipSubscriberDataUpdate skipSubscriberDataUpdate
No value
gsm_map_ms.NULL
gsm_map.ms.smsCallBarringSupportIndicator smsCallBarringSupportIndicator
No value
gsm_map_ms.NULL
gsm_map.ms.sms_CAMEL_TDP_DataList sms-CAMEL-TDP-DataList
Unsigned 32-bit integer
gsm_map_ms.SMS_CAMEL_TDP_DataList
gsm_map.ms.sms_TriggerDetectionPoint sms-TriggerDetectionPoint
Unsigned 32-bit integer
gsm_map_ms.SMS_TriggerDetectionPoint
gsm_map.ms.solsaSupportIndicator solsaSupportIndicator
No value
gsm_map_ms.NULL
gsm_map.ms.specificCSIDeletedList specificCSIDeletedList
Byte array
gsm_map_ms.SpecificCSI_Withdraw
gsm_map.ms.specificCSI_Withdraw specificCSI-Withdraw
Byte array
gsm_map_ms.SpecificCSI_Withdraw
gsm_map.ms.splitLeg splitLeg
Boolean
gsm_map.ms.sres sres
Byte array
gsm_map_ms.SRES
gsm_map.ms.ss-AccessBarred ss-AccessBarred
Boolean
gsm_map.ms.ss-csi ss-csi
Boolean
gsm_map.ms.ss_CSI ss-CSI
No value
gsm_map_ms.SS_CSI
gsm_map.ms.ss_CamelData ss-CamelData
No value
gsm_map_ms.SS_CamelData
gsm_map.ms.ss_Code ss-Code
Unsigned 8-bit integer
gsm_map.SS_Code
gsm_map.ms.ss_Data ss-Data
No value
gsm_map_ms.Ext_SS_Data
gsm_map.ms.ss_EventList ss-EventList
Unsigned 32-bit integer
gsm_map_ms.SS_EventList
gsm_map.ms.ss_InfoFor_CSE ss-InfoFor-CSE
Unsigned 32-bit integer
gsm_map_ms.Ext_SS_InfoFor_CSE
gsm_map.ms.ss_List ss-List
Unsigned 32-bit integer
gsm_map_ss.SS_List
gsm_map.ms.ss_Status ss-Status
Byte array
gsm_map.Ext_SS_Status
gsm_map.ms.ss_SubscriptionOption ss-SubscriptionOption
Unsigned 32-bit integer
gsm_map_ss.SS_SubscriptionOption
gsm_map.ms.subscribedEnhancedDialledServices subscribedEnhancedDialledServices
Boolean
gsm_map.ms.subscriberDataStored subscriberDataStored
Byte array
gsm_map_ms.AgeIndicator
gsm_map.ms.subscriberIdentity subscriberIdentity
Unsigned 32-bit integer
gsm_map.SubscriberIdentity
gsm_map.ms.subscriberInfo subscriberInfo
No value
gsm_map_ms.SubscriberInfo
gsm_map.ms.subscriberState subscriberState
Unsigned 32-bit integer
gsm_map_ms.SubscriberState
gsm_map.ms.subscriberStatus subscriberStatus
Unsigned 32-bit integer
gsm_map_ms.SubscriberStatus
gsm_map.ms.superChargerSupportedInHLR superChargerSupportedInHLR
Byte array
gsm_map_ms.AgeIndicator
gsm_map.ms.superChargerSupportedInServingNetworkEntity superChargerSupportedInServingNetworkEntity
Unsigned 32-bit integer
gsm_map_ms.SuperChargerInfo
gsm_map.ms.supportedCAMELPhases supportedCAMELPhases
Byte array
gsm_map_ms.SupportedCamelPhases
gsm_map.ms.supportedCamelPhases supportedCamelPhases
Byte array
gsm_map_ms.SupportedCamelPhases
gsm_map.ms.supportedLCS_CapabilitySets supportedLCS-CapabilitySets
Byte array
gsm_map_ms.SupportedLCS_CapabilitySets
gsm_map.ms.supportedRAT_TypesIndicator supportedRAT-TypesIndicator
Byte array
gsm_map_ms.SupportedRAT_Types
gsm_map.ms.supportedSGSN_CAMEL_Phases supportedSGSN-CAMEL-Phases
Byte array
gsm_map_ms.SupportedCamelPhases
gsm_map.ms.supportedVLR_CAMEL_Phases supportedVLR-CAMEL-Phases
Byte array
gsm_map_ms.SupportedCamelPhases
gsm_map.ms.t-csi t-csi
Boolean
gsm_map.ms.t_BCSM_CAMEL_TDP_CriteriaList t-BCSM-CAMEL-TDP-CriteriaList
Unsigned 32-bit integer
gsm_map_ms.T_BCSM_CAMEL_TDP_CriteriaList
gsm_map.ms.t_BCSM_TriggerDetectionPoint t-BCSM-TriggerDetectionPoint
Unsigned 32-bit integer
gsm_map_ms.T_BcsmTriggerDetectionPoint
gsm_map.ms.t_BcsmCamelTDPDataList t-BcsmCamelTDPDataList
Unsigned 32-bit integer
gsm_map_ms.T_BcsmCamelTDPDataList
gsm_map.ms.t_BcsmTriggerDetectionPoint t-BcsmTriggerDetectionPoint
Unsigned 32-bit integer
gsm_map_ms.T_BcsmTriggerDetectionPoint
gsm_map.ms.t_CSI t-CSI
No value
gsm_map_ms.T_CSI
gsm_map.ms.t_CauseValueCriteria t-CauseValueCriteria
Unsigned 32-bit integer
gsm_map_ms.T_CauseValueCriteria
gsm_map.ms.targetCellId targetCellId
Byte array
gsm_map.GlobalCellId
gsm_map.ms.targetMSC_Number targetMSC-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.targetRNCId targetRNCId
Byte array
gsm_map_ms.RNCId
gsm_map.ms.teid_ForGnAndGp teid-ForGnAndGp
Byte array
gsm_map_ms.TEID
gsm_map.ms.teid_ForIu teid-ForIu
Byte array
gsm_map_ms.TEID
gsm_map.ms.teleserviceList teleserviceList
Unsigned 32-bit integer
gsm_map_ms.TeleserviceList
gsm_map.ms.tif-csi tif-csi
Boolean
gsm_map.ms.tif_CSI tif-CSI
No value
gsm_map_ms.NULL
gsm_map.ms.tif_CSI_NotificationToCSE tif-CSI-NotificationToCSE
No value
gsm_map_ms.NULL
gsm_map.ms.tmsi tmsi
Byte array
gsm_map.TMSI
gsm_map.ms.tpdu_TypeCriterion tpdu-TypeCriterion
Unsigned 32-bit integer
gsm_map_ms.TPDU_TypeCriterion
gsm_map.ms.tracePropagationList tracePropagationList
No value
gsm_map_om.TracePropagationList
gsm_map.ms.transactionId transactionId
Byte array
gsm_map_ms.TransactionId
gsm_map.ms.tripletList tripletList
Unsigned 32-bit integer
gsm_map_ms.TripletList
gsm_map.ms.uesbi_Iu uesbi-Iu
No value
gsm_map_ms.UESBI_Iu
gsm_map.ms.uesbi_IuA uesbi-IuA
Byte array
gsm_map_ms.UESBI_IuA
gsm_map.ms.uesbi_IuB uesbi-IuB
Byte array
gsm_map_ms.UESBI_IuB
gsm_map.ms.umts_SecurityContextData umts-SecurityContextData
No value
gsm_map_ms.UMTS_SecurityContextData
gsm_map.ms.utran utran
Boolean
gsm_map.ms.utranCodecList utranCodecList
No value
gsm_map_ms.CodecList
gsm_map.ms.utranNotAllowed utranNotAllowed
Boolean
gsm_map.ms.v_gmlc_Address v-gmlc-Address
Byte array
gsm_map_ms.GSN_Address
gsm_map.ms.vbsGroupIndication vbsGroupIndication
No value
gsm_map_ms.NULL
gsm_map.ms.vbsSubscriptionData vbsSubscriptionData
Unsigned 32-bit integer
gsm_map_ms.VBSDataList
gsm_map.ms.vgcsGroupIndication vgcsGroupIndication
No value
gsm_map_ms.NULL
gsm_map.ms.vgcsSubscriptionData vgcsSubscriptionData
Unsigned 32-bit integer
gsm_map_ms.VGCSDataList
gsm_map.ms.vlrCamelSubscriptionInfo vlrCamelSubscriptionInfo
No value
gsm_map_ms.VlrCamelSubscriptionInfo
gsm_map.ms.vlr_Capability vlr-Capability
No value
gsm_map_ms.VLR_Capability
gsm_map.ms.vlr_Number vlr-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.vlr_number vlr-number
Byte array
gsm_map.ISDN_AddressString
gsm_map.ms.vplmnAddressAllowed vplmnAddressAllowed
No value
gsm_map_ms.NULL
gsm_map.ms.vt-IM-CSI vt-IM-CSI
Boolean
gsm_map.ms.vt-csi vt-csi
Boolean
gsm_map.ms.vt_BCSM_CAMEL_TDP_CriteriaList vt-BCSM-CAMEL-TDP-CriteriaList
Unsigned 32-bit integer
gsm_map_ms.T_BCSM_CAMEL_TDP_CriteriaList
gsm_map.ms.vt_CSI vt-CSI
No value
gsm_map_ms.T_CSI
gsm_map.ms.vt_IM_BCSM_CAMEL_TDP_CriteriaList vt-IM-BCSM-CAMEL-TDP-CriteriaList
Unsigned 32-bit integer
gsm_map_ms.T_BCSM_CAMEL_TDP_CriteriaList
gsm_map.ms.vt_IM_CSI vt-IM-CSI
No value
gsm_map_ms.T_CSI
gsm_map.ms.warningToneEnhancements warningToneEnhancements
Boolean
gsm_map.ms.wrongPasswordAttemptsCounter wrongPasswordAttemptsCounter
Unsigned 32-bit integer
gsm_map_ms.WrongPasswordAttemptsCounter
gsm_map.ms.xres xres
Byte array
gsm_map_ms.XRES
gsm_map.msisdn msisdn
Byte array
gsm_map.ISDN_AddressString
gsm_map.na_ESRK_Request na-ESRK-Request
No value
gsm_map.NULL
gsm_map.naea_PreferredCIC naea-PreferredCIC
Byte array
gsm_map.NAEA_CIC
gsm_map.nature_of_number Nature of number
Unsigned 8-bit integer
Nature of number
gsm_map.nbrSB nbrSB
Unsigned 32-bit integer
gsm_map.MaxMC_Bearers
gsm_map.nbrUser nbrUser
Unsigned 32-bit integer
gsm_map.MC_Bearers
gsm_map.notification_to_clling_party Notification to calling party
Boolean
Notification to calling party
gsm_map.notification_to_forwarding_party Notification to forwarding party
Boolean
Notification to forwarding party
gsm_map.number_plan Number plan
Unsigned 8-bit integer
Number plan
gsm_map.old.Component Component
Unsigned 32-bit integer
gsm_map.old.Component
gsm_map.om.a a
Boolean
gsm_map.om.bm-sc bm-sc
Boolean
gsm_map.om.bmsc_List bmsc-List
Byte array
gsm_map_om.BMSC_InterfaceList
gsm_map.om.bmsc_TraceDepth bmsc-TraceDepth
Unsigned 32-bit integer
gsm_map_om.TraceDepth
gsm_map.om.cap cap
Boolean
gsm_map.om.context context
Boolean
gsm_map.om.extensionContainer extensionContainer
No value
gsm_map.ExtensionContainer
gsm_map.om.gb gb
Boolean
gsm_map.om.ge ge
Boolean
gsm_map.om.ggsn ggsn
Boolean
gsm_map.om.ggsn_List ggsn-List
Byte array
gsm_map_om.GGSN_InterfaceList
gsm_map.om.ggsn_TraceDepth ggsn-TraceDepth
Unsigned 32-bit integer
gsm_map_om.TraceDepth
gsm_map.om.gi gi
Boolean
gsm_map.om.gmb gmb
Boolean
gsm_map.om.gn gn
Boolean
gsm_map.om.gs gs
Boolean
gsm_map.om.handovers handovers
Boolean
gsm_map.om.imsi imsi
Byte array
gsm_map.IMSI
gsm_map.om.iu iu
Boolean
gsm_map.om.iu-up iu-up
Boolean
gsm_map.om.iub iub
Boolean
gsm_map.om.iur iur
Boolean
gsm_map.om.lu-imsiAttach-imsiDetach lu-imsiAttach-imsiDetach
Boolean
gsm_map.om.map-b map-b
Boolean
gsm_map.om.map-c map-c
Boolean
gsm_map.om.map-d map-d
Boolean
gsm_map.om.map-e map-e
Boolean
gsm_map.om.map-f map-f
Boolean
gsm_map.om.map-g map-g
Boolean
gsm_map.om.map-gd map-gd
Boolean
gsm_map.om.map-gf map-gf
Boolean
gsm_map.om.map-gr map-gr
Boolean
gsm_map.om.mbmsContext mbmsContext
Boolean
gsm_map.om.mbmsMulticastServiceActivation mbmsMulticastServiceActivation
Boolean
gsm_map.om.mc mc
Boolean
gsm_map.om.mgw mgw
Boolean
gsm_map.om.mgw_EventList mgw-EventList
Byte array
gsm_map_om.MGW_EventList
gsm_map.om.mgw_InterfaceList mgw-InterfaceList
Byte array
gsm_map_om.MGW_InterfaceList
gsm_map.om.mgw_List mgw-List
Byte array
gsm_map_om.MGW_InterfaceList
gsm_map.om.mgw_TraceDepth mgw-TraceDepth
Unsigned 32-bit integer
gsm_map_om.TraceDepth
gsm_map.om.mo-mt-sms mo-mt-sms
Boolean
gsm_map.om.mo-mtCall mo-mtCall
Boolean
gsm_map.om.msc-s msc-s
Boolean
gsm_map.om.msc_s_EventList msc-s-EventList
Byte array
gsm_map_om.MSC_S_EventList
gsm_map.om.msc_s_InterfaceList msc-s-InterfaceList
Byte array
gsm_map_om.MSC_S_InterfaceList
gsm_map.om.msc_s_List msc-s-List
Byte array
gsm_map_om.MSC_S_InterfaceList
gsm_map.om.msc_s_TraceDepth msc-s-TraceDepth
Unsigned 32-bit integer
gsm_map_om.TraceDepth
gsm_map.om.nb-up nb-up
Boolean
gsm_map.om.omc_Id omc-Id
Byte array
gsm_map.AddressString
gsm_map.om.pdpContext pdpContext
Boolean
gsm_map.om.rau-gprsAttach-gprsDetach rau-gprsAttach-gprsDetach
Boolean
gsm_map.om.rnc rnc
Boolean
gsm_map.om.rnc_InterfaceList rnc-InterfaceList
Byte array
gsm_map_om.RNC_InterfaceList
gsm_map.om.rnc_List rnc-List
Byte array
gsm_map_om.RNC_InterfaceList
gsm_map.om.rnc_TraceDepth rnc-TraceDepth
Unsigned 32-bit integer
gsm_map_om.TraceDepth
gsm_map.om.sgsn sgsn
Boolean
gsm_map.om.sgsn_List sgsn-List
Byte array
gsm_map_om.SGSN_InterfaceList
gsm_map.om.sgsn_TraceDepth sgsn-TraceDepth
Unsigned 32-bit integer
gsm_map_om.TraceDepth
gsm_map.om.ss ss
Boolean
gsm_map.om.traceDepthList traceDepthList
No value
gsm_map_om.TraceDepthList
gsm_map.om.traceEventList traceEventList
No value
gsm_map_om.TraceEventList
gsm_map.om.traceInterfaceList traceInterfaceList
No value
gsm_map_om.TraceInterfaceList
gsm_map.om.traceNE_TypeList traceNE-TypeList
Byte array
gsm_map_om.TraceNE_TypeList
gsm_map.om.traceRecordingSessionReference traceRecordingSessionReference
Byte array
gsm_map_om.TraceRecordingSessionReference
gsm_map.om.traceReference traceReference
Byte array
gsm_map_om.TraceReference
gsm_map.om.traceReference2 traceReference2
Byte array
gsm_map_om.TraceReference2
gsm_map.om.traceSupportIndicator traceSupportIndicator
No value
gsm_map_om.NULL
gsm_map.om.traceType traceType
Unsigned 32-bit integer
gsm_map_om.TraceType
gsm_map.om.uu uu
Boolean
gsm_map.pcs_Extensions pcs-Extensions
No value
gsm_map.PCS_Extensions
gsm_map.pdp_type_org PDP Type Organization
Unsigned 8-bit integer
PDP Type Organization
gsm_map.privateExtensionList privateExtensionList
Unsigned 32-bit integer
gsm_map.PrivateExtensionList
gsm_map.protocolId protocolId
Unsigned 32-bit integer
gsm_map.ProtocolId
gsm_map.qos.ber Residual Bit Error Rate (BER)
Unsigned 8-bit integer
Residual Bit Error Rate (BER)
gsm_map.qos.brate_dlink Guaranteed bit rate for downlink in kbit/s
Unsigned 32-bit integer
Guaranteed bit rate for downlink
gsm_map.qos.brate_ulink Guaranteed bit rate for uplink in kbit/s
Unsigned 32-bit integer
Guaranteed bit rate for uplink
gsm_map.qos.del_of_err_sdu Delivery of erroneous SDUs
Unsigned 8-bit integer
Delivery of erroneous SDUs
gsm_map.qos.del_order Delivery order
Unsigned 8-bit integer
Delivery order
gsm_map.qos.max_brate_dlink Maximum bit rate for downlink in kbit/s
Unsigned 32-bit integer
Maximum bit rate for downlink
gsm_map.qos.max_brate_ulink Maximum bit rate for uplink in kbit/s
Unsigned 32-bit integer
Maximum bit rate for uplink
gsm_map.qos.max_sdu Maximum SDU size
Unsigned 32-bit integer
Maximum SDU size
gsm_map.qos.sdu_err_rat SDU error ratio
Unsigned 8-bit integer
SDU error ratio
gsm_map.qos.traff_hdl_pri Traffic handling priority
Unsigned 8-bit integer
Traffic handling priority
gsm_map.qos.traffic_cls Traffic class
Unsigned 8-bit integer
Traffic class
gsm_map.qos.transfer_delay Transfer delay (Raw data see TS 24.008 for interpretation)
Unsigned 8-bit integer
Transfer delay
gsm_map.ranap.EncryptionInformation EncryptionInformation
No value
gsm_map.ranap.EncryptionInformation
gsm_map.ranap.IntegrityProtectionInformation IntegrityProtectionInformation
No value
gsm_map.ranap.IntegrityProtectionInformation
gsm_map.ranap.service_Handover service-Handover
Unsigned 32-bit integer
gsm_map.ranap.Service_Handover
gsm_map.redirecting_presentation Redirecting presentation
Boolean
Redirecting presentation
gsm_map.servicecentreaddress_digits ServiceCentreAddress digits
String
ServiceCentreAddress digits
gsm_map.signalInfo signalInfo
Byte array
gsm_map.SignalInfo
gsm_map.slr_Arg_PCS_Extensions slr-Arg-PCS-Extensions
No value
gsm_map.SLR_Arg_PCS_Extensions
gsm_map.sm.DispatcherList_item Item
Byte array
gsm_map.ISDN_AddressString
gsm_map.sm.absentSubscriberDiagnosticSM absentSubscriberDiagnosticSM
Unsigned 32-bit integer
gsm_map_er.AbsentSubscriberDiagnosticSM
gsm_map.sm.additionalAbsentSubscriberDiagnosticSM additionalAbsentSubscriberDiagnosticSM
Unsigned 32-bit integer
gsm_map_er.AbsentSubscriberDiagnosticSM
gsm_map.sm.additionalAlertReasonIndicator additionalAlertReasonIndicator
No value
gsm_map_sm.NULL
gsm_map.sm.additionalSM_DeliveryOutcome additionalSM-DeliveryOutcome
Unsigned 32-bit integer
gsm_map_sm.SM_DeliveryOutcome
gsm_map.sm.additional_Number additional-Number
Unsigned 32-bit integer
gsm_map_sm.Additional_Number
gsm_map.sm.alertReason alertReason
Unsigned 32-bit integer
gsm_map_sm.AlertReason
gsm_map.sm.alertReasonIndicator alertReasonIndicator
No value
gsm_map_sm.NULL
gsm_map.sm.asciCallReference asciCallReference
Byte array
gsm_map.ASCI_CallReference
gsm_map.sm.deliveryOutcomeIndicator deliveryOutcomeIndicator
No value
gsm_map_sm.NULL
gsm_map.sm.dispatcherList dispatcherList
Unsigned 32-bit integer
gsm_map_sm.DispatcherList
gsm_map.sm.extensionContainer extensionContainer
No value
gsm_map.ExtensionContainer
gsm_map.sm.gprsNodeIndicator gprsNodeIndicator
No value
gsm_map_sm.NULL
gsm_map.sm.gprsSupportIndicator gprsSupportIndicator
No value
gsm_map_sm.NULL
gsm_map.sm.imsi imsi
Byte array
gsm_map.IMSI
gsm_map.sm.ip_sm_gw_Indicator ip-sm-gw-Indicator
No value
gsm_map_sm.NULL
gsm_map.sm.ip_sm_gw_absentSubscriberDiagnosticSM ip-sm-gw-absentSubscriberDiagnosticSM
Unsigned 32-bit integer
gsm_map_er.AbsentSubscriberDiagnosticSM
gsm_map.sm.ip_sm_gw_sm_deliveryOutcome ip-sm-gw-sm-deliveryOutcome
Unsigned 32-bit integer
gsm_map_sm.SM_DeliveryOutcome
gsm_map.sm.lmsi lmsi
Byte array
gsm_map.LMSI
gsm_map.sm.locationInfoWithLMSI locationInfoWithLMSI
No value
gsm_map_sm.LocationInfoWithLMSI
gsm_map.sm.mcef-Set mcef-Set
Boolean
gsm_map.sm.mnrf-Set mnrf-Set
Boolean
gsm_map.sm.mnrg-Set mnrg-Set
Boolean
gsm_map.sm.moreMessagesToSend moreMessagesToSend
No value
gsm_map_sm.NULL
gsm_map.sm.msc_Number msc-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.sm.msisdn msisdn
Byte array
gsm_map.ISDN_AddressString
gsm_map.sm.mw_Status mw-Status
Byte array
gsm_map_sm.MW_Status
gsm_map.sm.networkNode_Number networkNode-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.sm.noSM_RP_DA noSM-RP-DA
No value
gsm_map_sm.NULL
gsm_map.sm.noSM_RP_OA noSM-RP-OA
No value
gsm_map_sm.NULL
gsm_map.sm.ongoingCall ongoingCall
No value
gsm_map_sm.NULL
gsm_map.sm.sc-AddressNotIncluded sc-AddressNotIncluded
Boolean
gsm_map.sm.serviceCentreAddress serviceCentreAddress
Byte array
gsm_map.AddressString
gsm_map.sm.serviceCentreAddressDA serviceCentreAddressDA
Byte array
gsm_map.AddressString
gsm_map.sm.serviceCentreAddressOA serviceCentreAddressOA
Byte array
gsm_map_sm.T_serviceCentreAddressOA
gsm_map.sm.sgsn_Number sgsn-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.sm.sm_DeliveryOutcome sm-DeliveryOutcome
Unsigned 32-bit integer
gsm_map_sm.SM_DeliveryOutcome
gsm_map.sm.sm_RP_DA sm-RP-DA
Unsigned 32-bit integer
gsm_map_sm.SM_RP_DA
gsm_map.sm.sm_RP_MTI sm-RP-MTI
Unsigned 32-bit integer
gsm_map_sm.SM_RP_MTI
gsm_map.sm.sm_RP_OA sm-RP-OA
Unsigned 32-bit integer
gsm_map_sm.SM_RP_OA
gsm_map.sm.sm_RP_PRI sm-RP-PRI
Boolean
gsm_map_sm.BOOLEAN
gsm_map.sm.sm_RP_SMEA sm-RP-SMEA
Byte array
gsm_map_sm.SM_RP_SMEA
gsm_map.sm.sm_RP_UI sm-RP-UI
Byte array
gsm_map.SignalInfo
gsm_map.sm.sm_deliveryNotIntended sm-deliveryNotIntended
Unsigned 32-bit integer
gsm_map_sm.SM_DeliveryNotIntended
gsm_map.sm.storedMSISDN storedMSISDN
Byte array
gsm_map.ISDN_AddressString
gsm_map.ss.BasicServiceGroupList_item Item
Unsigned 32-bit integer
gsm_map.BasicServiceCode
gsm_map.ss.CCBS_FeatureList_item Item
No value
gsm_map_ss.CCBS_Feature
gsm_map.ss.CallBarringFeatureList_item Item
No value
gsm_map_ss.CallBarringFeature
gsm_map.ss.ForwardingFeatureList_item Item
No value
gsm_map_ss.ForwardingFeature
gsm_map.ss.SS_EventSpecification_item Item
Byte array
gsm_map.AddressString
gsm_map.ss.SS_InfoList_item Item
Unsigned 32-bit integer
gsm_map_ss.SS_Info
gsm_map.ss.SS_List_item Item
Unsigned 8-bit integer
gsm_map.SS_Code
gsm_map.ss.alertingPattern alertingPattern
Byte array
gsm_map.AlertingPattern
gsm_map.ss.b_subscriberNumber b-subscriberNumber
Byte array
gsm_map.ISDN_AddressString
gsm_map.ss.b_subscriberSubaddress b-subscriberSubaddress
Byte array
gsm_map.ISDN_SubaddressString
gsm_map.ss.basicService basicService
Unsigned 32-bit integer
gsm_map.BasicServiceCode
gsm_map.ss.basicServiceGroup basicServiceGroup
Unsigned 32-bit integer
gsm_map.BasicServiceCode
gsm_map.ss.basicServiceGroupList basicServiceGroupList
Unsigned 32-bit integer
gsm_map_ss.BasicServiceGroupList
gsm_map.ss.callBarringFeatureList callBarringFeatureList
Unsigned 32-bit integer
gsm_map_ss.CallBarringFeatureList
gsm_map.ss.callBarringInfo callBarringInfo
No value
gsm_map_ss.CallBarringInfo
gsm_map.ss.callInfo callInfo
No value
gsm_map.ExternalSignalInfo
gsm_map.ss.camel-invoked camel-invoked
Boolean
gsm_map.ss.ccbs_Data ccbs-Data
No value
gsm_map_ss.CCBS_Data
gsm_map.ss.ccbs_Feature ccbs-Feature
No value
gsm_map_ss.CCBS_Feature
gsm_map.ss.ccbs_FeatureList ccbs-FeatureList
Unsigned 32-bit integer
gsm_map_ss.CCBS_FeatureList
gsm_map.ss.ccbs_Index ccbs-Index
Unsigned 32-bit integer
gsm_map_ss.CCBS_Index
gsm_map.ss.ccbs_RequestState ccbs-RequestState
Unsigned 32-bit integer
gsm_map_ss.CCBS_RequestState
gsm_map.ss.cliRestrictionOption cliRestrictionOption
Unsigned 32-bit integer
gsm_map_ss.CliRestrictionOption
gsm_map.ss.clir-invoked clir-invoked
Boolean
gsm_map.ss.defaultPriority defaultPriority
Unsigned 32-bit integer
gsm_map.EMLPP_Priority
gsm_map.ss.extensionContainer extensionContainer
No value
gsm_map.ExtensionContainer
gsm_map.ss.forwardedToNumber forwardedToNumber
Byte array
gsm_map.AddressString
gsm_map.ss.forwardedToSubaddress forwardedToSubaddress
Byte array
gsm_map.ISDN_SubaddressString
gsm_map.ss.forwardingFeatureList forwardingFeatureList
Unsigned 32-bit integer
gsm_map_ss.ForwardingFeatureList
gsm_map.ss.forwardingInfo forwardingInfo
No value
gsm_map_ss.ForwardingInfo
gsm_map.ss.forwardingOptions forwardingOptions
Byte array
gsm_map_ss.ForwardingOptions
gsm_map.ss.genericServiceInfo genericServiceInfo
No value
gsm_map_ss.GenericServiceInfo
gsm_map.ss.imsi imsi
Byte array
gsm_map.IMSI
gsm_map.ss.longFTN_Supported longFTN-Supported
No value
gsm_map_ss.NULL
gsm_map.ss.longForwardedToNumber longForwardedToNumber
Byte array
gsm_map.FTN_AddressString
gsm_map.ss.maximumEntitledPriority maximumEntitledPriority
Unsigned 32-bit integer
gsm_map.EMLPP_Priority
gsm_map.ss.msisdn msisdn
Byte array
gsm_map.ISDN_AddressString
gsm_map.ss.nbrSB nbrSB
Unsigned 32-bit integer
gsm_map.MaxMC_Bearers
gsm_map.ss.nbrSN nbrSN
Unsigned 32-bit integer
gsm_map.MC_Bearers
gsm_map.ss.nbrUser nbrUser
Unsigned 32-bit integer
gsm_map.MC_Bearers
gsm_map.ss.networkSignalInfo networkSignalInfo
No value
gsm_map.ExternalSignalInfo
gsm_map.ss.noReplyConditionTime noReplyConditionTime
Unsigned 32-bit integer
gsm_map_ss.NoReplyConditionTime
gsm_map.ss.overrideCategory overrideCategory
Unsigned 32-bit integer
gsm_map_ss.OverrideCategory
gsm_map.ss.serviceIndicator serviceIndicator
Byte array
gsm_map_ss.ServiceIndicator
gsm_map.ss.ss_Code ss-Code
Unsigned 8-bit integer
gsm_map.SS_Code
gsm_map.ss.ss_Data ss-Data
No value
gsm_map_ss.SS_Data
gsm_map.ss.ss_Event ss-Event
Unsigned 8-bit integer
gsm_map.SS_Code
gsm_map.ss.ss_EventSpecification ss-EventSpecification
Unsigned 32-bit integer
gsm_map_ss.SS_EventSpecification
gsm_map.ss.ss_Status ss-Status
Byte array
gsm_map_ss.SS_Status
gsm_map.ss.ss_SubscriptionOption ss-SubscriptionOption
Unsigned 32-bit integer
gsm_map_ss.SS_SubscriptionOption
gsm_map.ss.translatedB_Number translatedB-Number
Byte array
gsm_map.ISDN_AddressString
gsm_map.ss.ussd_DataCodingScheme ussd-DataCodingScheme
Byte array
gsm_map_ss.USSD_DataCodingScheme
gsm_map.ss.ussd_String ussd-String
Byte array
gsm_map_ss.USSD_String
gsm_map.ss_Code ss-Code
Unsigned 8-bit integer
gsm_map.SS_Code
gsm_map.ss_Status ss-Status
Byte array
gsm_map.Ext_SS_Status
gsm_map.ss_status_a_bit A bit
Boolean
A bit
gsm_map.ss_status_p_bit P bit
Boolean
P bit
gsm_map.ss_status_q_bit Q bit
Boolean
Q bit
gsm_map.ss_status_r_bit R bit
Boolean
R bit
gsm_map.teleservice teleservice
Unsigned 8-bit integer
gsm_map.TeleserviceCode
gsm_map.tmsi tmsi
Byte array
gsm_map.TMSI
gsm_map.unused Unused
Unsigned 8-bit integer
Unused
gsm_old.SendAuthenticationInfoResOld_item Item
No value
gsm_old.SendAuthenticationInfoResOld_item
gsm_old.TripletListold_item Item
No value
gsm_old.AuthenticationTriplet_v2
gsm_old.b_Subscriber_Address b-Subscriber-Address
Byte array
gsm_map.ISDN_AddressString
gsm_old.basicService basicService
Unsigned 32-bit integer
gsm_map.BasicServiceCode
gsm_old.bss_APDU bss-APDU
No value
gsm_old.Bss_APDU
gsm_old.call_Direction call-Direction
Byte array
gsm_old.CallDirection
gsm_old.category category
Byte array
gsm_old.Category
gsm_old.channelType channelType
No value
gsm_map.ExternalSignalInfo
gsm_old.chosenChannel chosenChannel
No value
gsm_map.ExternalSignalInfo
gsm_old.cug_CheckInfo cug-CheckInfo
No value
gsm_map_ch.CUG_CheckInfo
gsm_old.derivable derivable
Signed 32-bit integer
gsm_old.InvokeIdType
gsm_old.errorCode errorCode
Unsigned 32-bit integer
gsm_old.MAP_ERROR
gsm_old.extensionContainer extensionContainer
No value
gsm_map.ExtensionContainer
gsm_old.generalProblem generalProblem
Signed 32-bit integer
gsm_old.GeneralProblem
gsm_old.globalValue globalValue
gsm_old.OBJECT_IDENTIFIER
gsm_old.gsm_BearerCapability gsm-BearerCapability
No value
gsm_map.ExternalSignalInfo
gsm_old.handoverNumber handoverNumber
Byte array
gsm_map.ISDN_AddressString
gsm_old.highLayerCompatibility highLayerCompatibility
No value
gsm_map.ExternalSignalInfo
gsm_old.ho_NumberNotRequired ho-NumberNotRequired
No value
gsm_old.NULL
gsm_old.imsi imsi
Byte array
gsm_map.IMSI
gsm_old.initialisationVector initialisationVector
Byte array
gsm_old.InitialisationVector
gsm_old.invoke invoke
No value
gsm_old.Invoke
gsm_old.invokeID invokeID
Signed 32-bit integer
gsm_old.InvokeIdType
gsm_old.invokeIDRej invokeIDRej
Unsigned 32-bit integer
gsm_old.T_invokeIDRej
gsm_old.invokeProblem invokeProblem
Signed 32-bit integer
gsm_old.InvokeProblem
gsm_old.invokeparameter invokeparameter
No value
gsm_old.InvokeParameter
gsm_old.isdn_BearerCapability isdn-BearerCapability
No value
gsm_map.ExternalSignalInfo
gsm_old.kc kc
Byte array
gsm_old.Kc
gsm_old.linkedID linkedID
Signed 32-bit integer
gsm_old.InvokeIdType
gsm_old.lmsi lmsi
Byte array
gsm_map.LMSI
gsm_old.localValue localValue
Signed 32-bit integer
gsm_old.OperationLocalvalue
gsm_old.lowerLayerCompatibility lowerLayerCompatibility
No value
gsm_map.ExternalSignalInfo
gsm_old.moreMessagesToSend moreMessagesToSend
No value
gsm_old.NULL
gsm_old.msisdn msisdn
Byte array
gsm_map.ISDN_AddressString
gsm_old.networkSignalInfo networkSignalInfo
No value
gsm_map.ExternalSignalInfo
gsm_old.noSM_RP_DA noSM-RP-DA
No value
gsm_old.NULL
gsm_old.noSM_RP_OA noSM-RP-OA
No value
gsm_old.NULL
gsm_old.not_derivable not-derivable
No value
gsm_old.NULL
gsm_old.numberOfForwarding numberOfForwarding
Unsigned 32-bit integer
gsm_map_ch.NumberOfForwarding
gsm_old.opCode opCode
Unsigned 32-bit integer
gsm_old.MAP_OPERATION
gsm_old.operationCode operationCode
Unsigned 32-bit integer
gsm_old.OperationCode
gsm_old.operatorSS_Code operatorSS-Code
Unsigned 32-bit integer
gsm_old.T_operatorSS_Code
gsm_old.operatorSS_Code_item Item
Byte array
gsm_old.OCTET_STRING_SIZE_1
gsm_old.originalComponentIdentifier originalComponentIdentifier
Unsigned 32-bit integer
gsm_old.OriginalComponentIdentifier
gsm_old.parameter parameter
No value
gsm_old.ReturnErrorParameter
gsm_old.problem problem
Unsigned 32-bit integer
gsm_old.T_problem
gsm_old.protectedPayload protectedPayload
Byte array
gsm_old.ProtectedPayload
gsm_old.protocolId protocolId
Unsigned 32-bit integer
gsm_map.ProtocolId
gsm_old.rand rand
Byte array
gsm_old.RAND
gsm_old.reject reject
No value
gsm_old.Reject
gsm_old.resultretres resultretres
No value
gsm_old.T_resultretres
gsm_old.returnError returnError
No value
gsm_old.ReturnError
gsm_old.returnErrorProblem returnErrorProblem
Signed 32-bit integer
gsm_old.ReturnErrorProblem
gsm_old.returnResultLast returnResultLast
No value
gsm_old.ReturnResult
gsm_old.returnResultNotLast returnResultNotLast
No value
gsm_old.ReturnResult
gsm_old.returnResultProblem returnResultProblem
Signed 32-bit integer
gsm_old.ReturnResultProblem
gsm_old.returnparameter returnparameter
No value
gsm_old.ReturnResultParameter
gsm_old.routingInfo routingInfo
Unsigned 32-bit integer
gsm_map_ch.RoutingInfo
gsm_old.sIWFSNumber sIWFSNumber
Byte array
gsm_map.ISDN_AddressString
gsm_old.securityHeader securityHeader
No value
gsm_old.SecurityHeader
gsm_old.securityParametersIndex securityParametersIndex
Byte array
gsm_old.SecurityParametersIndex
gsm_old.serviceCentreAddressDA serviceCentreAddressDA
Byte array
gsm_map.AddressString
gsm_old.serviceCentreAddressOA serviceCentreAddressOA
Byte array
gsm_old.T_serviceCentreAddressOA
gsm_old.signalInfo signalInfo
Byte array
gsm_map.SignalInfo
gsm_old.sm_RP_DA sm-RP-DA
Unsigned 32-bit integer
gsm_old.SM_RP_DAold
gsm_old.sm_RP_OA sm-RP-OA
Unsigned 32-bit integer
gsm_old.SM_RP_OAold
gsm_old.sm_RP_UI sm-RP-UI
Byte array
gsm_map.SignalInfo
gsm_old.sres sres
Byte array
gsm_old.SRES
gsm_old.targetCellId targetCellId
Byte array
gsm_map.GlobalCellId
gsm_old.tripletList tripletList
Unsigned 32-bit integer
gsm_old.TripletListold
gsm_old.userInfo userInfo
No value
gsm_old.NULL
gsm_old.vlr_Number vlr-Number
Byte array
gsm_map.ISDN_AddressString
gsm_ss.SS_UserData SS-UserData
String
gsm_map.ss.SS_UserData
gsm_ss.add_LocationEstimate add-LocationEstimate
Byte array
gsm_map_lcs.Add_GeographicalInformation
gsm_ss.ageOfLocationInfo ageOfLocationInfo
Unsigned 32-bit integer
gsm_map.AgeOfLocationInformation
gsm_ss.alertingPattern alertingPattern
Byte array
gsm_map.AlertingPattern
gsm_ss.areaEventInfo areaEventInfo
No value
gsm_map_lcs.AreaEventInfo
gsm_ss.callIsWaiting_Indicator callIsWaiting-Indicator
No value
gsm_ss.NULL
gsm_ss.callOnHold_Indicator callOnHold-Indicator
Unsigned 32-bit integer
gsm_ss.CallOnHold_Indicator
gsm_ss.callingName callingName
Unsigned 32-bit integer
gsm_ss.Name
gsm_ss.ccbs_Feature ccbs-Feature
No value
gsm_map_ss.CCBS_Feature
gsm_ss.chargingInformation chargingInformation
No value
gsm_ss.ChargingInformation
gsm_ss.clirSuppressionRejected clirSuppressionRejected
No value
gsm_ss.NULL
gsm_ss.cug_Index cug-Index
Unsigned 32-bit integer
gsm_map_ms.CUG_Index
gsm_ss.dataCodingScheme dataCodingScheme
Byte array
gsm_map_ss.USSD_DataCodingScheme
gsm_ss.decipheringKeys decipheringKeys
Byte array
gsm_ss.DecipheringKeys
gsm_ss.deferredLocationEventType deferredLocationEventType
Byte array
gsm_map_lcs.DeferredLocationEventType
gsm_ss.deflectedToNumber deflectedToNumber
Byte array
gsm_map.AddressString
gsm_ss.deflectedToSubaddress deflectedToSubaddress
Byte array
gsm_map.ISDN_SubaddressString
gsm_ss.e1 e1
Unsigned 32-bit integer
gsm_ss.E1
gsm_ss.e2 e2
Unsigned 32-bit integer
gsm_ss.E2
gsm_ss.e3 e3
Unsigned 32-bit integer
gsm_ss.E3
gsm_ss.e4 e4
Unsigned 32-bit integer
gsm_ss.E4
gsm_ss.e5 e5
Unsigned 32-bit integer
gsm_ss.E5
gsm_ss.e6 e6
Unsigned 32-bit integer
gsm_ss.E6
gsm_ss.e7 e7
Unsigned 32-bit integer
gsm_ss.E7
gsm_ss.ect_CallState ect-CallState
Unsigned 32-bit integer
gsm_ss.ECT_CallState
gsm_ss.ect_Indicator ect-Indicator
No value
gsm_ss.ECT_Indicator
gsm_ss.ganssAssistanceData ganssAssistanceData
Byte array
gsm_ss.GANSSAssistanceData
gsm_ss.gpsAssistanceData gpsAssistanceData
Byte array
gsm_ss.GPSAssistanceData
gsm_ss.h_gmlc_address h-gmlc-address
Byte array
gsm_map_ms.GSN_Address
gsm_ss.lcsClientExternalID lcsClientExternalID
No value
gsm_map.LCSClientExternalID
gsm_ss.lcsClientName lcsClientName
No value
gsm_map_lcs.LCSClientName
gsm_ss.lcsCodeword lcsCodeword
No value
gsm_map_lcs.LCSCodeword
gsm_ss.lcsRequestorID lcsRequestorID
No value
gsm_map_lcs.LCSRequestorID
gsm_ss.lcsServiceTypeID lcsServiceTypeID
Unsigned 32-bit integer
gsm_map.LCSServiceTypeID
gsm_ss.lcs_QoS lcs-QoS
No value
gsm_map_lcs.LCS_QoS
gsm_ss.lengthInCharacters lengthInCharacters
Signed 32-bit integer
gsm_ss.INTEGER
gsm_ss.locationEstimate locationEstimate
Byte array
gsm_map_lcs.Ext_GeographicalInformation
gsm_ss.locationMethod locationMethod
Unsigned 32-bit integer
gsm_ss.LocationMethod
gsm_ss.locationType locationType
No value
gsm_map_lcs.LocationType
gsm_ss.locationUpdateRequest locationUpdateRequest
No value
gsm_ss.NULL
gsm_ss.mlc_Number mlc-Number
Byte array
gsm_map.ISDN_AddressString
gsm_ss.mo_lrShortCircuit mo-lrShortCircuit
No value
gsm_ss.NULL
gsm_ss.molr_Type molr-Type
Unsigned 32-bit integer
gsm_ss.MOLR_Type
gsm_ss.mpty_Indicator mpty-Indicator
No value
gsm_ss.NULL
gsm_ss.multicall_Indicator multicall-Indicator
Unsigned 32-bit integer
gsm_ss.Multicall_Indicator
gsm_ss.nameIndicator nameIndicator
No value
gsm_ss.NameIndicator
gsm_ss.namePresentationAllowed namePresentationAllowed
No value
gsm_ss.NameSet
gsm_ss.namePresentationRestricted namePresentationRestricted
No value
gsm_ss.NameSet
gsm_ss.nameString nameString
Byte array
gsm_map_ss.USSD_String
gsm_ss.nameUnavailable nameUnavailable
No value
gsm_ss.NULL
gsm_ss.notificationType notificationType
Unsigned 32-bit integer
gsm_map_ms.NotificationToMSUser
gsm_ss.numberNotAvailableDueToInterworking numberNotAvailableDueToInterworking
No value
gsm_ss.NULL
gsm_ss.partyNumber partyNumber
Byte array
gsm_map.ISDN_AddressString
gsm_ss.partyNumberSubaddress partyNumberSubaddress
Byte array
gsm_map.ISDN_SubaddressString
gsm_ss.periodicLDRInfo periodicLDRInfo
No value
gsm_map_lcs.PeriodicLDRInfo
gsm_ss.presentationAllowedAddress presentationAllowedAddress
No value
gsm_ss.RemotePartyNumber
gsm_ss.presentationRestricted presentationRestricted
No value
gsm_ss.NULL
gsm_ss.presentationRestrictedAddress presentationRestrictedAddress
No value
gsm_ss.RemotePartyNumber
gsm_ss.pseudonymIndicator pseudonymIndicator
No value
gsm_ss.NULL
gsm_ss.qoS qoS
No value
gsm_map_lcs.LCS_QoS
gsm_ss.rdn rdn
Unsigned 32-bit integer
gsm_ss.RDN
gsm_ss.referenceNumber referenceNumber
Byte array
gsm_map_lcs.LCS_ReferenceNumber
gsm_ss.reportingPLMNList reportingPLMNList
No value
gsm_map_lcs.ReportingPLMNList
gsm_ss.sequenceNumber sequenceNumber
Unsigned 32-bit integer
gsm_map_lcs.SequenceNumber
gsm_ss.ss_Code ss-Code
Unsigned 8-bit integer
gsm_map.SS_Code
gsm_ss.ss_Notification ss-Notification
Byte array
gsm_ss.SS_Notification
gsm_ss.ss_Status ss-Status
Byte array
gsm_map_ss.SS_Status
gsm_ss.supportedGADShapes supportedGADShapes
Byte array
gsm_map_lcs.SupportedGADShapes
gsm_ss.suppressOA suppressOA
No value
gsm_ss.NULL
gsm_ss.suppressPrefCUG suppressPrefCUG
No value
gsm_ss.NULL
gsm_ss.terminationCause terminationCause
Unsigned 32-bit integer
gsm_ss.TerminationCause
gsm_ss.uUS_Required uUS-Required
Boolean
gsm_ss.BOOLEAN
gsm_ss.uUS_Service uUS-Service
Unsigned 32-bit integer
gsm_ss.UUS_Service
gsm_ss.velocityEstimate velocityEstimate
Byte array
gsm_map_lcs.VelocityEstimate
gsm_ss.verificationResponse verificationResponse
Unsigned 32-bit integer
gsm_ss.VerificationResponse
gsm_sms.coding_group_bits2 Coding Group Bits
Unsigned 8-bit integer
Coding Group Bits
gsm_sms.coding_group_bits4 Coding Group Bits
Unsigned 8-bit integer
Coding Group Bits
gsm-sms-ud.fragment Short Message fragment
Frame number
GSM Short Message fragment
gsm-sms-ud.fragment.error Short Message defragmentation error
Frame number
GSM Short Message defragmentation error due to illegal fragments
gsm-sms-ud.fragment.multiple_tails Short Message has multiple tail fragments
Boolean
GSM Short Message fragment has multiple tail fragments
gsm-sms-ud.fragment.overlap Short Message fragment overlap
Boolean
GSM Short Message fragment overlaps with other fragment(s)
gsm-sms-ud.fragment.overlap.conflicts Short Message fragment overlapping with conflicting data
Boolean
GSM Short Message fragment overlaps with conflicting data
gsm-sms-ud.fragment.too_long_fragment Short Message fragment too long
Boolean
GSM Short Message fragment data goes beyond the packet end
gsm-sms-ud.fragments Short Message fragments
No value
GSM Short Message fragments
gsm-sms-ud.reassembled.in Reassembled in
Frame number
GSM Short Message has been reassembled in this packet.
gsm-sms-ud.udh.iei IE Id
Unsigned 8-bit integer
Name of the User Data Header Information Element.
gsm-sms-ud.udh.len UDH Length
Unsigned 8-bit integer
Length of the User Data Header (bytes)
gsm-sms-ud.udh.mm Multiple messages UDH
No value
Multiple messages User Data Header
gsm-sms-ud.udh.mm.msg_id Message identifier
Unsigned 16-bit integer
Identification of the message
gsm-sms-ud.udh.mm.msg_part Message part number
Unsigned 8-bit integer
Message part (fragment) sequence number
gsm-sms-ud.udh.mm.msg_parts Message parts
Unsigned 8-bit integer
Total number of message parts (fragments)
gsm-sms-ud.udh.ports Port number UDH
No value
Port number User Data Header
gsm-sms-ud.udh.ports.dst Destination port
Unsigned 8-bit integer
Destination port
gsm-sms-ud.udh.ports.src Source port
Unsigned 8-bit integer
Source port
gss-api.OID OID
String
This is a GSS-API Object Identifier
gss-api.reassembled_in Reassembled In
Frame number
The frame where this pdu is reassembled
gss-api.segment GSSAPI Segment
Frame number
GSSAPI Segment
gss-api.segment.error Defragmentation error
Frame number
Defragmentation error due to illegal fragments
gss-api.segment.multipletails Multiple tail fragments found
Boolean
Several tails were found when defragmenting the packet
gss-api.segment.overlap Fragment overlap
Boolean
Fragment overlaps with other fragments
gss-api.segment.overlap.conflict Conflicting data in fragment overlap
Boolean
Overlapping fragments contained conflicting data
gss-api.segment.segments GSSAPI Segments
No value
GSSAPI Segments
gss-api.segment.toolongfragment Fragment too long
Boolean
Fragment contained data past end of packet
giop.TCKind TypeCode enum
Unsigned 32-bit integer
giop.compressed ZIOP
Unsigned 8-bit integer
giop.endianess Endianess
Unsigned 8-bit integer
giop.exceptionid Exception id
String
giop.iiop.host IIOP::Profile_host
String
giop.iiop.port IIOP::Profile_port
Unsigned 16-bit integer
giop.iiop.scid SCID
Unsigned 32-bit integer
giop.iiop.vscid VSCID
Unsigned 32-bit integer
giop.iiop_vmaj IIOP Major Version
Unsigned 8-bit integer
giop.iiop_vmin IIOP Minor Version
Unsigned 8-bit integer
giop.iioptag IIOP Component TAG
Unsigned 32-bit integer
giop.iortag IOR Profile TAG
Unsigned 8-bit integer
giop.len Message size
Unsigned 32-bit integer
giop.objektkey Object Key
Byte array
giop.profid Profile ID
Unsigned 32-bit integer
giop.replystatus Reply status
Unsigned 32-bit integer
giop.repoid Repository ID
String
giop.request_id Request id
Unsigned 32-bit integer
giop.request_op Request operation
String
giop.seqlen Sequence Length
Unsigned 32-bit integer
giop.strlen String Length
Unsigned 32-bit integer
giop.tcValueModifier ValueModifier
Signed 16-bit integer
giop.tcVisibility Visibility
Signed 16-bit integer
giop.tcboolean TypeCode boolean data
Boolean
giop.tcchar TypeCode char data
Unsigned 8-bit integer
giop.tccount TypeCode count
Unsigned 32-bit integer
giop.tcdefault_used default_used
Signed 32-bit integer
giop.tcdigits Digits
Unsigned 16-bit integer
giop.tcdouble TypeCode double data
Double-precision floating point
giop.tcenumdata TypeCode enum data
Unsigned 32-bit integer
giop.tcfloat TypeCode float data
Double-precision floating point
giop.tclength Length
Unsigned 32-bit integer
giop.tclongdata TypeCode long data
Signed 32-bit integer
giop.tcmaxlen Maximum length
Unsigned 32-bit integer
giop.tcmemname TypeCode member name
String
giop.tcname TypeCode name
String
giop.tcoctet TypeCode octet data
Unsigned 8-bit integer
giop.tcscale Scale
Signed 16-bit integer
giop.tcshortdata TypeCode short data
Signed 16-bit integer
giop.tcstring TypeCode string data
String
giop.tculongdata TypeCode ulong data
Unsigned 32-bit integer
giop.tcushortdata TypeCode ushort data
Unsigned 16-bit integer
giop.type Message type
Unsigned 8-bit integer
giop.typeid IOR::type_id
String
gre.3ggp2_di Duration Indicator
Boolean
Duration Indicator
gre.3ggp2_fci Flow Control Indicator
Boolean
Flow Control Indicator
gre.3ggp2_sdi SDI/DOS
Boolean
Short Data Indicator(SDI)/Data Over Signaling (DOS)
gre.ggp2_3ggp2_seg Type
Unsigned 16-bit integer
Type
gre.ggp2_attrib_id Type
Unsigned 8-bit integer
Type
gre.ggp2_attrib_length Length
Unsigned 8-bit integer
Length
gre.ggp2_flow_disc Flow ID
Byte array
Flow ID
gre.key GRE Key
Unsigned 32-bit integer
gre.proto Protocol Type
Unsigned 16-bit integer
The protocol that is GRE encapsulated
gnutella.header Descriptor Header
No value
Gnutella Descriptor Header
gnutella.header.hops Hops
Unsigned 8-bit integer
Gnutella Descriptor Hop Count
gnutella.header.id ID
Byte array
Gnutella Descriptor ID
gnutella.header.payload Payload
Unsigned 8-bit integer
Gnutella Descriptor Payload
gnutella.header.size Length
Unsigned 8-bit integer
Gnutella Descriptor Payload Length
gnutella.header.ttl TTL
Unsigned 8-bit integer
Gnutella Descriptor Time To Live
gnutella.pong.files Files Shared
Unsigned 32-bit integer
Gnutella Pong Files Shared
gnutella.pong.ip IP
IPv4 address
Gnutella Pong IP Address
gnutella.pong.kbytes KBytes Shared
Unsigned 32-bit integer
Gnutella Pong KBytes Shared
gnutella.pong.payload Pong
No value
Gnutella Pong Payload
gnutella.pong.port Port
Unsigned 16-bit integer
Gnutella Pong TCP Port
gnutella.push.index Index
Unsigned 32-bit integer
Gnutella Push Index
gnutella.push.ip IP
IPv4 address
Gnutella Push IP Address
gnutella.push.payload Push
No value
Gnutella Push Payload
gnutella.push.port Port
Unsigned 16-bit integer
Gnutella Push Port
gnutella.push.servent_id Servent ID
Byte array
Gnutella Push Servent ID
gnutella.query.min_speed Min Speed
Unsigned 32-bit integer
Gnutella Query Minimum Speed
gnutella.query.payload Query
No value
Gnutella Query Payload
gnutella.query.search Search
String
Gnutella Query Search
gnutella.queryhit.count Count
Unsigned 8-bit integer
Gnutella QueryHit Count
gnutella.queryhit.extra Extra
Byte array
Gnutella QueryHit Extra
gnutella.queryhit.hit Hit
No value
Gnutella QueryHit
gnutella.queryhit.hit.extra Extra
Byte array
Gnutella Query Extra
gnutella.queryhit.hit.index Index
Unsigned 32-bit integer
Gnutella QueryHit Index
gnutella.queryhit.hit.name Name
String
Gnutella Query Name
gnutella.queryhit.hit.size Size
Unsigned 32-bit integer
Gnutella QueryHit Size
gnutella.queryhit.ip IP
IPv4 address
Gnutella QueryHit IP Address
gnutella.queryhit.payload QueryHit
No value
Gnutella QueryHit Payload
gnutella.queryhit.port Port
Unsigned 16-bit integer
Gnutella QueryHit Port
gnutella.queryhit.servent_id Servent ID
Byte array
Gnutella QueryHit Servent ID
gnutella.queryhit.speed Speed
Unsigned 32-bit integer
Gnutella QueryHit Speed
gnutella.stream Gnutella Upload / Download Stream
No value
Gnutella Upload / Download Stream
h248.package_3GCSD CSD Package
Byte array
Circuit Switched Data Package
h248.package_3GCSD.actprot Activate Protocol
Byte array
Activate the higher layer protocol
h248.package_3GCSD.actprot.localpeer Local Peer Role
Unsigned 32-bit integer
It is used to inform the modem whether it should act as originating or terminating peer
h248.package_3GCSD.gsmchancod GSM channel coding
Byte array
Channel information needed for GSM
h248.package_3GCSD.plmnbc PLMN Bearer Capability
Byte array
The PLMN Bearer Capability
h248.package_3GCSD.protres Protocol Negotiation Result
Byte array
This event is used to report the result of the protocol negotiation
h248.package_3GCSD.protres.cause Possible Failure Cause
Unsigned 32-bit integer
indicates the possible failure cause
h248.package_3GCSD.protres.result Negotiation Result
Unsigned 32-bit integer
reports whether the protocol negotiation has been successful
h248.package_3GCSD.ratechg Rate Change
Byte array
This event is used to report a rate change
h248.package_3GCSD.ratechg.rate New Rate
Unsigned 32-bit integer
reports the new rate for the termination
h248.package_3GTFO Tandem Free Operation
Byte array
This package defines events and properties for Tandem Free Operation (TFO) control
h248.package_3GTFO.codec_modify Optimal Codec Event
Byte array
The event is used to notify the MGC that TFO negotiation has resulted in an optimal codec type being proposed
h248.package_3GTFO.codec_modify.optimalcodec Optimal Codec Type
Byte array
indicates which is the proposed codec type for TFO
h248.package_3GTFO.codeclist TFO Codec List
Byte array
List of codecs for use in TFO protocol
h248.package_3GTFO.distant_codec_list Codec List Event
Byte array
The event is used to notify the MGC of the distant TFO partner's supported codec list
h248.package_3GTFO.distant_codec_list.distlist Distant Codec List
Byte array
indicates the codec list for TFO
h248.package_3GTFO.status TFO Status Event
Byte array
The event is used to notify the MGC that a TFO link has been established or broken
h248.package_3GTFO.status.tfostatus TFO Status
Boolean
reports whether TFO has been established or broken
h248.package_3GTFO.tfoenable TFO Activity Control
Unsigned 32-bit integer
Defines if TFO is enabled or not
h248.package_3GUP.Mode Mode
Unsigned 32-bit integer
Mode
h248.package_3GUP.delerrsdu Delivery of erroneous SDUs
Unsigned 32-bit integer
Delivery of erroneous SDUs
h248.package_3GUP.initdir Initialisation Direction
Unsigned 32-bit integer
Initialisation Direction
h248.package_3GUP.interface Interface
Unsigned 32-bit integer
Interface
h248.package_3GUP.upversions UPversions
Unsigned 32-bit integer
UPversions
h248.pkg.annexc.ACodec ACodec
Byte array
ACodec
h248.pkg.annexc.BIR BIR
Byte array
BIR
h248.pkg.annexc.Mediatx Mediatx
Unsigned 32-bit integer
Mediatx
h248.pkg.annexc.NSAP NSAP
Byte array
NSAP
h248.pkg.annexc.USI USI
Byte array
User Service Information
h248.pkg.annexc.a2pcdv A2PCDV
Unsigned 24-bit integer
Acceptable 2 point CDV
h248.pkg.annexc.aal1st AAL1ST
Unsigned 8-bit integer
AAL1 subtype
h248.pkg.annexc.aaltype AALtype
Unsigned 8-bit integer
AAL Type
h248.pkg.annexc.aclr ACLR
Unsigned 8-bit integer
Acceptable Cell Loss Ratio (Q.2965.2 ATMF UNI 4.0)
h248.pkg.annexc.addlayer3prot addlayer3prot
Unsigned 8-bit integer
Additional User Information Layer 3 protocol
h248.pkg.annexc.aesa AESA
Byte array
ATM End System Address
h248.pkg.annexc.alc ALC
Byte array
AAL2 Link Characteristics
h248.pkg.annexc.appcdv APPCDV
Unsigned 24-bit integer
Acceptable Point to Point CDV
h248.pkg.annexc.assign llidnegot
Unsigned 8-bit integer
Assignor/Asignee
h248.pkg.annexc.atc ATC
Unsigned 32-bit integer
ATM Traffic Capability
h248.pkg.annexc.bbtc BBTC
Unsigned 8-bit integer
Broadband Transfer Capability
h248.pkg.annexc.bcob BCOB
Unsigned 8-bit integer
Broadband Bearer Class
h248.pkg.annexc.bei BEI
Boolean
Best Effort Indicator
h248.pkg.annexc.bit_rate Bit Rate
Unsigned 32-bit integer
Bit Rate
h248.pkg.annexc.bmsdu bmsdu
Byte array
bmsdu
h248.pkg.annexc.c2pcdv C2PCDV
Unsigned 24-bit integer
Cummulative 2 point CDV
h248.pkg.annexc.cbrr CBRR
Unsigned 8-bit integer
CBR rate
h248.pkg.annexc.ceetd CEETD
Unsigned 16-bit integer
Cummulative End-to-End Transit Delay (Q.2965.2 ATMF UNI 4.0)
h248.pkg.annexc.cid CID
Unsigned 32-bit integer
Channel-Id
h248.pkg.annexc.clc CLC
Byte array
Close Logical Channel
h248.pkg.annexc.clcack CLCack
Byte array
Close Logical Channel Acknowledge
h248.pkg.annexc.cppcdv CPPCDV
Unsigned 24-bit integer
Cummulative Point to Point CDV
h248.pkg.annexc.databits databits
Unsigned 8-bit integer
Number of stop bits
h248.pkg.annexc.dialedn Dialed Number
Byte array
Dialed Number
h248.pkg.annexc.dialingn Dialing Number
Byte array
Dialing Number
h248.pkg.annexc.dlci DLCI
Unsigned 32-bit integer
Data Link Connection ID (FR)
h248.pkg.annexc.duplexmode duplexmode
Unsigned 8-bit integer
Mode Duplex
h248.pkg.annexc.echoci ECHOCI
Byte array
Not used
h248.pkg.annexc.ecm ECM
Unsigned 8-bit integer
Error Correction Method
h248.pkg.annexc.encrypt_key Encrypt Key
Unsigned 32-bit integer
Encryption Key
h248.pkg.annexc.encrypt_type Encrypttype
Byte array
Encryption Type
h248.pkg.annexc.fd FD
Boolean
Frame Discard
h248.pkg.annexc.flowcontrx flowcontrx
Unsigned 8-bit integer
Flow Control on Reception
h248.pkg.annexc.flowconttx flowconttx
Unsigned 8-bit integer
Flow Control on Transmission
h248.pkg.annexc.fmsdu fmsdu
Byte array
FMSDU
h248.pkg.annexc.gain Gain
Unsigned 32-bit integer
Gain (dB)
h248.pkg.annexc.h222 H222LogicalChannelParameters
Byte array
H222LogicalChannelParameters
h248.pkg.annexc.h223 H223LogicalChannelParameters
Byte array
H223LogicalChannelParameters
h248.pkg.annexc.h2250 H2250LogicalChannelParameters
Byte array
H2250LogicalChannelParameters
h248.pkg.annexc.inbandneg inbandneg
Unsigned 8-bit integer
In-band/Out-band negotiation
h248.pkg.annexc.intrate UPPC
Unsigned 8-bit integer
Intermediare Rate
h248.pkg.annexc.ipv4 IPv4
IPv4 address
IPv4 Address
h248.pkg.annexc.ipv6 IPv6
IPv6 address
IPv6 Address
h248.pkg.annexc.itc ITC
Unsigned 8-bit integer
Information Transfer Capability
h248.pkg.annexc.jitterbuf JitterBuff
Unsigned 32-bit integer
Jitter Buffer Size (ms)
h248.pkg.annexc.layer2prot layer2prot
Unsigned 8-bit integer
Layer 2 protocol
h248.pkg.annexc.layer3prot layer3prot
Unsigned 8-bit integer
Layer 3 protocol
h248.pkg.annexc.llidnegot llidnegot
Unsigned 8-bit integer
Intermediare Rate
h248.pkg.annexc.maxcpssdu Max CPS SDU
Unsigned 8-bit integer
Maximum Common Part Sublayer Service Data Unit size
h248.pkg.annexc.mbs0 MBS0
Unsigned 24-bit integer
Maximum Burst Size for CLP=0
h248.pkg.annexc.mbs1 MBS1
Unsigned 24-bit integer
Maximum Burst Size for CLP=1
h248.pkg.annexc.media Media
Unsigned 32-bit integer
Media Type
h248.pkg.annexc.meetd MEETD
Unsigned 16-bit integer
Maximum End-to-End Transit Delay (Q.2965.2 ATMF UNI 4.0)
h248.pkg.annexc.modem modem
Unsigned 8-bit integer
Modem Type
h248.pkg.annexc.mult Rate Multiplier
Unsigned 8-bit integer
Rate Multiplier
h248.pkg.annexc.multiframe multiframe
Unsigned 8-bit integer
Multiple Frame establishment support in datalink
h248.pkg.annexc.nci NCI
Unsigned 8-bit integer
Nature of Connection Indicator
h248.pkg.annexc.negotiation UPPC
Unsigned 8-bit integer
Negotiation
h248.pkg.annexc.nicrx nicrx
Unsigned 8-bit integer
Intermediare Rate
h248.pkg.annexc.nictx nictx
Unsigned 8-bit integer
Intermediare Network indipendent clock in transmission
h248.pkg.annexc.num_of_channels Number of Channels
Unsigned 32-bit integer
Number of Channels
h248.pkg.annexc.olc OLC
Byte array
Open Logical Channel
h248.pkg.annexc.olcack OLCack
Byte array
Open Logical Channel Acknowledge
h248.pkg.annexc.olccnf OLCcnf
Byte array
Open Logical Channel CNF
h248.pkg.annexc.olcrej OLCrej
Byte array
Open Logical Channel Reject
h248.pkg.annexc.opmode OPMODE
Unsigned 8-bit integer
Mode of operation
h248.pkg.annexc.parity parity
Unsigned 8-bit integer
Parity Information Bits
h248.pkg.annexc.pcr0 PCR0
Unsigned 24-bit integer
Peak Cell Rate for CLP=0
h248.pkg.annexc.pcr1 PCR1
Unsigned 24-bit integer
Peak Cell Rate for CLP=1
h248.pkg.annexc.pfci PFCI
Unsigned 8-bit integer
Partially Filled Cells Identifier
h248.pkg.annexc.port Port
Unsigned 16-bit integer
Port
h248.pkg.annexc.porttype PortType
Unsigned 32-bit integer
Port Type
h248.pkg.annexc.ppt PPT
Unsigned 32-bit integer
Primary Payload Type
h248.pkg.annexc.qosclass QosClass
Unsigned 16-bit integer
QoS Class (Q.2965.1)
h248.pkg.annexc.rateadapthdr rateadapthdr
Unsigned 8-bit integer
Rate Adaptation Header/No-Header
h248.pkg.annexc.rtp_payload RTP Payload type
Unsigned 32-bit integer
Payload type in RTP Profile
h248.pkg.annexc.samplepp Samplepp
Unsigned 32-bit integer
Samplepp
h248.pkg.annexc.sampling_rate Sampling Rate
Unsigned 32-bit integer
Sampling Rate
h248.pkg.annexc.sc Service Class
Unsigned 32-bit integer
Service Class
h248.pkg.annexc.scr0 SCR0
Unsigned 24-bit integer
Sustained Cell Rate for CLP=0
h248.pkg.annexc.scr1 SCR1
Unsigned 24-bit integer
Sustained Cell Rate for CLP=1
h248.pkg.annexc.scri SCRI
Unsigned 8-bit integer
Source Clock frequency Recovery method
h248.pkg.annexc.sdbt SDBT
Unsigned 16-bit integer
Structured Data Transfer Blocksize
h248.pkg.annexc.sdp_a sdp_a
String
SDP A
h248.pkg.annexc.sdp_b sdp_b
String
SDP B
h248.pkg.annexc.sdp_c sdp_c
String
SDP C
h248.pkg.annexc.sdp_e sdp_e
String
SDP E
h248.pkg.annexc.sdp_i sdp_i
String
SDP I
h248.pkg.annexc.sdp_k sdp_k
String
SDP K
h248.pkg.annexc.sdp_m sdp_m
String
SDP M
h248.pkg.annexc.sdp_o sdp_o
String
SDP O
h248.pkg.annexc.sdp_p sdp_p
String
SDP P
h248.pkg.annexc.sdp_r sdp_r
String
SDP R
h248.pkg.annexc.sdp_s sdp_s
String
SDP S
h248.pkg.annexc.sdp_t sdp_t
String
SDP T
h248.pkg.annexc.sdp_u sdp_u
String
SDP U
h248.pkg.annexc.sdp_v sdp_v
String
SDP V
h248.pkg.annexc.sdp_z sdp_z
String
SDP Z
h248.pkg.annexc.sid SID
Unsigned 32-bit integer
Silence Insertion Descriptor
h248.pkg.annexc.silence_supp SilenceSupp
Boolean
Silence Suppression
h248.pkg.annexc.sscs sscs
Byte array
sscs
h248.pkg.annexc.stc STC
Unsigned 8-bit integer
Susceptibility to Clipping
h248.pkg.annexc.stopbits stopbits
Unsigned 8-bit integer
Number of stop bits
h248.pkg.annexc.sut SUT
Byte array
Served User Transport
h248.pkg.annexc.syncasync SyncAsync
Unsigned 8-bit integer
Syncronous/Asyncronous
h248.pkg.annexc.tci TCI
Boolean
Test Connection Indicator
h248.pkg.annexc.ti TI
Boolean
Tagging Indicator
h248.pkg.annexc.timer_cu Timer CU
Unsigned 32-bit integer
Milliseconds to hold the patially filled cell before sending
h248.pkg.annexc.tmr TMR
Unsigned 8-bit integer
Transmission Medium Requirement
h248.pkg.annexc.tmsr TMSR
Unsigned 8-bit integer
Transmission Medium Requirement Subrate
h248.pkg.annexc.transmission_mode Transmission Mode
Unsigned 32-bit integer
Transmission Mode
h248.pkg.annexc.transmode TransMode
Unsigned 8-bit integer
Transfer Mode
h248.pkg.annexc.transrate TransRate
Unsigned 8-bit integer
Transfer Rate
h248.pkg.annexc.uppc UPPC
Unsigned 8-bit integer
User Plane Connection Configuration
h248.pkg.annexc.userrate Userrate
Unsigned 8-bit integer
User Rate
h248.pkg.annexc.v76 V76LogicalChannelParameters
Byte array
V76LogicalChannelParameters
h248.pkg.annexc.vci VCI
Unsigned 16-bit integer
Virtual Circuit Identifier
h248.pkg.annexc.vpi VPI
Unsigned 16-bit integer
Virtual Path Identifier
h248.pkg.al Analog Line Supervision Package
Byte array
h248.pkg.al.ev.flashhook.mindur Minimum duration in ms
Unsigned 32-bit integer
h248.pkg.al.ev.offhook.strict strict
Unsigned 8-bit integer
h248.pkg.al.ev.onhook.init init
Boolean
h248.pkg.al.ev.onhook.strict strict
Unsigned 8-bit integer
h248.pkg.al.flashhook flashhook
Byte array
h248.pkg.al.offhook offhook
Byte array
h248.pkg.al.onhook onhook
Byte array
h248.pkg.generic Generic Package
Byte array
h248.pkg.generic.cause Cause Event
Byte array
h248.pkg.generic.cause.failurecause Generic Cause
String
h248.pkg.generic.cause.gencause Generic Cause
Unsigned 32-bit integer
h248.pkg.generic.sc Signal Completion
Byte array
h248.pkg.generic.sc.meth Termination Method
Unsigned 32-bit integer
h248.pkg.generic.sc.rid Request ID
Unsigned 32-bit integer
h248.pkg.generic.sc.sig_id Signal Identity
Byte array
h248.pkg.generic.sc.slid Signal List ID
Unsigned 32-bit integer
h248.pkg.rtp RTP package
Byte array
h248.pkg.rtp.stat.ps Packets Sent
Unsigned 64-bit integer
Packets Sent
h248.pkg.tdmc TDM Circuit Package
Byte array
h248.pkg.tdmc.ec Echo Cancellation
Boolean
Echo Cancellation
h248.pkg.tdmc.gain Gain
Unsigned 32-bit integer
Gain
h248.EventBufferDescriptor_item Item
No value
h248.EventSpec
h248.EventParamValues_item Item
Byte array
h248.EventParamValue
h248.IndAudPropertyGroup_item Item
No value
h248.IndAudPropertyParm
h248.PackagesDescriptor_item Item
No value
h248.PackagesItem
h248.PropertyGroup_item Item
No value
h248.PropertyParm
h248.SCreasonValue_item Item
Byte array
h248.SCreasonValueOctetStr
h248.SigParamValues_item Item
Byte array
h248.SigParamValue
h248.SignalsDescriptor_item Item
Unsigned 32-bit integer
h248.SignalRequest
h248.StatisticsDescriptor_item Item
No value
h248.StatisticsParameter
h248.TerminationAudit_item Item
Unsigned 32-bit integer
h248.AuditReturnParameter
h248.TerminationIDList_item Item
No value
h248.TerminationID
h248.TransactionResponseAck_item Item
No value
h248.TransactionAck
h248.Value_item Item
Byte array
h248.OCTET_STRING
h248.actionReplies actionReplies
Unsigned 32-bit integer
h248.SEQUENCE_OF_ActionReply
h248.actionReplies_item Item
No value
h248.ActionReply
h248.actions actions
Unsigned 32-bit integer
h248.SEQUENCE_OF_ActionRequest
h248.actions_item Item
No value
h248.ActionRequest
h248.ad ad
Byte array
h248.AuthData
h248.addReply addReply
No value
h248.T_addReply
h248.addReq addReq
No value
h248.T_addReq
h248.address address
IPv4 address
h248.OCTET_STRING_SIZE_4
h248.andAUDITSelect andAUDITSelect
No value
h248.NULL
h248.auditCapReply auditCapReply
Unsigned 32-bit integer
h248.T_auditCapReply
h248.auditCapRequest auditCapRequest
No value
h248.T_auditCapRequest
h248.auditDescriptor auditDescriptor
No value
h248.AuditDescriptor
h248.auditPropertyToken auditPropertyToken
Unsigned 32-bit integer
h248.SEQUENCE_OF_IndAuditParameter
h248.auditPropertyToken_item Item
Unsigned 32-bit integer
h248.IndAuditParameter
h248.auditResult auditResult
No value
h248.AuditResult
h248.auditResultTermList auditResultTermList
No value
h248.TermListAuditResult
h248.auditToken auditToken
Byte array
h248.T_auditToken
h248.auditValueReply auditValueReply
Unsigned 32-bit integer
h248.T_auditValueReply
h248.auditValueRequest auditValueRequest
No value
h248.T_auditValueRequest
h248.authHeader authHeader
No value
h248.AuthenticationHeader
h248.command command
Unsigned 32-bit integer
h248.Command
h248.commandReply commandReply
Unsigned 32-bit integer
h248.SEQUENCE_OF_CommandReply
h248.commandReply_item Item
Unsigned 32-bit integer
h248.CommandReply
h248.commandRequests commandRequests
Unsigned 32-bit integer
h248.SEQUENCE_OF_CommandRequest
h248.commandRequests_item Item
No value
h248.CommandRequest
h248.contextAttrAuditReq contextAttrAuditReq
No value
h248.T_contextAttrAuditReq
h248.contextAuditResult contextAuditResult
Unsigned 32-bit integer
h248.TerminationIDList
h248.contextId contextId
Unsigned 32-bit integer
Context ID
h248.contextList contextList
Unsigned 32-bit integer
h248.SEQUENCE_OF_ContextIDinList
h248.contextList_item Item
Unsigned 32-bit integer
h248.ContextIDinList
h248.contextProp contextProp
Unsigned 32-bit integer
h248.SEQUENCE_OF_PropertyParm
h248.contextPropAud contextPropAud
Unsigned 32-bit integer
h248.SEQUENCE_OF_IndAudPropertyParm
h248.contextPropAud_item Item
No value
h248.IndAudPropertyParm
h248.contextProp_item Item
No value
h248.PropertyParm
h248.contextReply contextReply
No value
h248.ContextRequest
h248.contextRequest contextRequest
No value
h248.ContextRequest
h248.ctx Context
Unsigned 32-bit integer
h248.ctx.cmd Command in Frame
Frame number
h248.ctx.term Termination
String
h248.ctx.term.bir BIR
String
h248.ctx.term.nsap NSAP
String
h248.ctx.term.type Type
Unsigned 32-bit integer
h248.data data
Byte array
h248.OCTET_STRING
h248.date date
String
h248.IA5String_SIZE_8
h248.descriptors descriptors
Unsigned 32-bit integer
h248.SEQUENCE_OF_AmmDescriptor
h248.descriptors_item Item
Unsigned 32-bit integer
h248.AmmDescriptor
h248.deviceName deviceName
String
h248.PathName
h248.digitMapBody digitMapBody
String
h248.IA5String
h248.digitMapDescriptor digitMapDescriptor
No value
h248.DigitMapDescriptor
h248.digitMapName digitMapName
Byte array
h248.DigitMapName
h248.digitMapToken digitMapToken
Boolean
h248.digitMapValue digitMapValue
No value
h248.DigitMapValue
h248.direction direction
Unsigned 32-bit integer
h248.SignalDirection
h248.domainName domainName
No value
h248.DomainName
h248.duration duration
Unsigned 32-bit integer
h248.INTEGER_0_65535
h248.durationTimer durationTimer
Unsigned 32-bit integer
h248.INTEGER_0_99
h248.emergency emergency
Boolean
h248.BOOLEAN
h248.emptyDescriptors emptyDescriptors
No value
h248.AuditDescriptor
h248.error error
No value
h248.ErrorDescriptor
h248.errorCode errorCode
Unsigned 32-bit integer
ErrorDescriptor/errorCode
h248.errorDescriptor errorDescriptor
No value
h248.ErrorDescriptor
h248.errorText errorText
String
h248.ErrorText
h248.evParList evParList
Unsigned 32-bit integer
h248.SEQUENCE_OF_EventParameter
h248.evParList_item Item
No value
h248.EventParameter
h248.eventAction eventAction
No value
h248.RequestedActions
h248.eventBufferControl eventBufferControl
No value
h248.NULL
h248.eventBufferDescriptor eventBufferDescriptor
Unsigned 32-bit integer
h248.EventBufferDescriptor
h248.eventBufferToken eventBufferToken
Boolean
h248.eventDM eventDM
Unsigned 32-bit integer
h248.EventDM
h248.eventList eventList
Unsigned 32-bit integer
h248.SEQUENCE_OF_RequestedEvent
h248.eventList_item Item
No value
h248.RequestedEvent
h248.eventName eventName
Byte array
h248.PkgdName
h248.eventParList eventParList
Unsigned 32-bit integer
h248.SEQUENCE_OF_EventParameter
h248.eventParList_item Item
No value
h248.EventParameter
h248.eventParamValue eventParamValue
Unsigned 32-bit integer
h248.EventParamValues
h248.eventParameterName eventParameterName
Byte array
h248.EventParameterName
h248.event_name Package and Event name
Unsigned 32-bit integer
Package
h248.eventsDescriptor eventsDescriptor
No value
h248.EventsDescriptor
h248.eventsToken eventsToken
Boolean
h248.experimental experimental
String
h248.IA5String_SIZE_8
h248.extraInfo extraInfo
Unsigned 32-bit integer
h248.EventPar_extraInfo
h248.firstAck firstAck
Unsigned 32-bit integer
h248.TransactionId
h248.h221NonStandard h221NonStandard
No value
h248.H221NonStandard
h248.id id
Unsigned 32-bit integer
h248.INTEGER_0_65535
h248.iepscallind iepscallind
Boolean
h248.Iepscallind_BOOL
h248.immAckRequired immAckRequired
No value
h248.NULL
h248.indauddigitMapDescriptor indauddigitMapDescriptor
No value
h248.IndAudDigitMapDescriptor
h248.indaudeventBufferDescriptor indaudeventBufferDescriptor
No value
h248.IndAudEventBufferDescriptor
h248.indaudeventsDescriptor indaudeventsDescriptor
No value
h248.IndAudEventsDescriptor
h248.indaudmediaDescriptor indaudmediaDescriptor
No value
h248.IndAudMediaDescriptor
h248.indaudpackagesDescriptor indaudpackagesDescriptor
No value
h248.IndAudPackagesDescriptor
h248.indaudsignalsDescriptor indaudsignalsDescriptor
Unsigned 32-bit integer
h248.IndAudSignalsDescriptor
h248.indaudstatisticsDescriptor indaudstatisticsDescriptor
No value
h248.IndAudStatisticsDescriptor
h248.intersigDelay intersigDelay
Unsigned 32-bit integer
h248.INTEGER_0_65535
h248.ip4Address ip4Address
No value
h248.IP4Address
h248.ip6Address ip6Address
No value
h248.IP6Address
h248.keepActive keepActive
Boolean
h248.BOOLEAN
h248.lastAck lastAck
Unsigned 32-bit integer
h248.TransactionId
h248.localControlDescriptor localControlDescriptor
No value
h248.IndAudLocalControlDescriptor
h248.localDescriptor localDescriptor
No value
h248.IndAudLocalRemoteDescriptor
h248.longTimer longTimer
Unsigned 32-bit integer
h248.INTEGER_0_99
h248.mId mId
Unsigned 32-bit integer
h248.MId
h248.manufacturerCode manufacturerCode
Unsigned 32-bit integer
h248.INTEGER_0_65535
h248.mediaDescriptor mediaDescriptor
No value
h248.MediaDescriptor
h248.mediaToken mediaToken
Boolean
h248.mess mess
No value
h248.Message
h248.messageBody messageBody
Unsigned 32-bit integer
h248.T_messageBody
h248.messageError messageError
No value
h248.ErrorDescriptor
h248.modReply modReply
No value
h248.T_modReply
h248.modReq modReq
No value
h248.T_modReq
h248.modemDescriptor modemDescriptor
No value
h248.ModemDescriptor
h248.modemToken modemToken
Boolean
h248.moveReply moveReply
No value
h248.T_moveReply
h248.moveReq moveReq
No value
h248.T_moveReq
h248.mpl mpl
Unsigned 32-bit integer
h248.SEQUENCE_OF_PropertyParm
h248.mpl_item Item
No value
h248.PropertyParm
h248.mtl mtl
Unsigned 32-bit integer
h248.SEQUENCE_OF_ModemType
h248.mtl_item Item
Unsigned 32-bit integer
h248.ModemType
h248.mtpAddress mtpAddress
Byte array
h248.MtpAddress
h248.mtpaddress.ni NI
Unsigned 32-bit integer
NI
h248.mtpaddress.pc PC
Unsigned 32-bit integer
PC
h248.multiStream multiStream
Unsigned 32-bit integer
h248.SEQUENCE_OF_IndAudStreamDescriptor
h248.multiStream_item Item
No value
h248.IndAudStreamDescriptor
h248.muxDescriptor muxDescriptor
No value
h248.MuxDescriptor
h248.muxToken muxToken
Boolean
h248.muxType muxType
Unsigned 32-bit integer
h248.MuxType
h248.name name
String
h248.IA5String
h248.neverNotify neverNotify
No value
h248.NULL
h248.nonStandardData nonStandardData
No value
h248.NonStandardData
h248.nonStandardIdentifier nonStandardIdentifier
Unsigned 32-bit integer
h248.NonStandardIdentifier
h248.notifyBehaviour notifyBehaviour
Unsigned 32-bit integer
h248.NotifyBehaviour
h248.notifyCompletion notifyCompletion
Byte array
h248.NotifyCompletion
h248.notifyImmediate notifyImmediate
No value
h248.NULL
h248.notifyRegulated notifyRegulated
No value
h248.RegulatedEmbeddedDescriptor
h248.notifyReply notifyReply
No value
h248.T_notifyReply
h248.notifyReq notifyReq
No value
h248.T_notifyReq
h248.object object
h248.OBJECT_IDENTIFIER
h248.observedEventLst observedEventLst
Unsigned 32-bit integer
h248.SEQUENCE_OF_ObservedEvent
h248.observedEventLst_item Item
No value
h248.ObservedEvent
h248.observedEventsDescriptor observedEventsDescriptor
No value
h248.ObservedEventsDescriptor
h248.observedEventsToken observedEventsToken
Boolean
h248.onInterruptByEvent onInterruptByEvent
Boolean
h248.onInterruptByNewSignalDescr onInterruptByNewSignalDescr
Boolean
h248.onIteration onIteration
Boolean
h248.onTimeOut onTimeOut
Boolean
h248.oneStream oneStream
No value
h248.IndAudStreamParms
h248.optional optional
No value
h248.NULL
h248.orAUDITSelect orAUDITSelect
No value
h248.NULL
h248.otherReason otherReason
Boolean
h248.packageName packageName
Byte array
h248.Name
h248.packageVersion packageVersion
Unsigned 32-bit integer
h248.INTEGER_0_99
h248.package_bcp.BNCChar BNCChar
Unsigned 32-bit integer
BNCChar
h248.package_eventid Event ID
Unsigned 16-bit integer
Parameter ID
h248.package_name Package
Unsigned 16-bit integer
Package
h248.package_paramid Parameter ID
Unsigned 16-bit integer
Parameter ID
h248.package_signalid Signal ID
Unsigned 16-bit integer
Parameter ID
h248.packagesDescriptor packagesDescriptor
Unsigned 32-bit integer
h248.PackagesDescriptor
h248.packagesToken packagesToken
Boolean
h248.pkg.unknown Unknown Package
Byte array
h248.pkg.unknown.evt Unknown Event
Byte array
h248.pkg.unknown.param Parameter
Byte array
h248.pkg.unknown.sig Unknown Signal
Byte array
h248.pkgdName pkgdName
Byte array
h248.PkgdName
h248.portNumber portNumber
Unsigned 32-bit integer
h248.INTEGER_0_65535
h248.priority priority
Unsigned 32-bit integer
h248.INTEGER_0_15
h248.profileName profileName
String
h248.IA5String_SIZE_1_67
h248.propGroupID propGroupID
Unsigned 32-bit integer
h248.INTEGER_0_65535
h248.propGrps propGrps
Unsigned 32-bit integer
h248.IndAudPropertyGroup
h248.propGrps_item Item
Unsigned 32-bit integer
h248.PropertyGroup
h248.propertyName propertyName
Byte array
h248.PropertyName
h248.propertyParms propertyParms
Unsigned 32-bit integer
h248.SEQUENCE_OF_IndAudPropertyParm
h248.propertyParms_item Item
No value
h248.IndAudPropertyParm
h248.range range
Boolean
h248.BOOLEAN
h248.relation relation
Unsigned 32-bit integer
h248.Relation
h248.remoteDescriptor remoteDescriptor
No value
h248.IndAudLocalRemoteDescriptor
h248.requestID requestID
Unsigned 32-bit integer
h248.RequestID
h248.requestId requestId
Unsigned 32-bit integer
h248.RequestID
h248.reserveGroup reserveGroup
No value
h248.NULL
h248.reserveValue reserveValue
No value
h248.NULL
h248.resetEventsDescriptor resetEventsDescriptor
No value
h248.NULL
h248.secParmIndex secParmIndex
Byte array
h248.SecurityParmIndex
h248.secondEvent secondEvent
No value
h248.SecondEventsDescriptor
h248.segmentNumber segmentNumber
Unsigned 32-bit integer
h248.SegmentNumber
h248.segmentReply segmentReply
No value
h248.SegmentReply
h248.segmentationComplete segmentationComplete
No value
h248.NULL
h248.selectLogic selectLogic
Unsigned 32-bit integer
h248.SelectLogic
h248.selectemergency selectemergency
Boolean
h248.BOOLEAN
h248.selectiepscallind selectiepscallind
Boolean
h248.BOOLEAN
h248.selectpriority selectpriority
Unsigned 32-bit integer
h248.INTEGER_0_15
h248.seqNum seqNum
Byte array
h248.SequenceNum
h248.seqSigList seqSigList
No value
h248.IndAudSeqSigList
h248.serviceChangeAddress serviceChangeAddress
Unsigned 32-bit integer
h248.ServiceChangeAddress
h248.serviceChangeDelay serviceChangeDelay
Unsigned 32-bit integer
h248.INTEGER_0_4294967295
h248.serviceChangeIncompleteFlag serviceChangeIncompleteFlag
No value
h248.NULL
h248.serviceChangeInfo serviceChangeInfo
No value
h248.AuditDescriptor
h248.serviceChangeMethod serviceChangeMethod
Unsigned 32-bit integer
h248.ServiceChangeMethod
h248.serviceChangeMgcId serviceChangeMgcId
Unsigned 32-bit integer
h248.MId
h248.serviceChangeParms serviceChangeParms
No value
h248.ServiceChangeParm
h248.serviceChangeProfile serviceChangeProfile
No value
h248.ServiceChangeProfile
h248.serviceChangeReason serviceChangeReason
Unsigned 32-bit integer
h248.SCreasonValue
h248.serviceChangeReasonstr ServiceChangeReasonStr
String
h248.IA5String
h248.serviceChangeReply serviceChangeReply
No value
h248.ServiceChangeReply
h248.serviceChangeReq serviceChangeReq
No value
h248.ServiceChangeRequest
h248.serviceChangeResParms serviceChangeResParms
No value
h248.ServiceChangeResParm
h248.serviceChangeResult serviceChangeResult
Unsigned 32-bit integer
h248.ServiceChangeResult
h248.serviceChangeVersion serviceChangeVersion
Unsigned 32-bit integer
h248.INTEGER_0_99
h248.serviceState serviceState
No value
h248.NULL
h248.serviceStateSel serviceStateSel
Unsigned 32-bit integer
h248.ServiceState
h248.shortTimer shortTimer
Unsigned 32-bit integer
h248.INTEGER_0_99
h248.sigParList sigParList
Unsigned 32-bit integer
h248.SEQUENCE_OF_SigParameter
h248.sigParList_item Item
No value
h248.SigParameter
h248.sigParameterName sigParameterName
Byte array
h248.SigParameterName
h248.sigType sigType
Unsigned 32-bit integer
h248.SignalType
h248.signal signal
No value
h248.IndAudSignal
h248.signalList signalList
No value
h248.IndAudSignal
h248.signalList_item Item
No value
h248.Signal
h248.signalName signalName
Byte array
h248.PkgdName
h248.signalRequestID signalRequestID
Unsigned 32-bit integer
h248.RequestID
h248.signal_name Package and Signal name
Unsigned 32-bit integer
Package
h248.signalsDescriptor signalsDescriptor
Unsigned 32-bit integer
h248.SignalsDescriptor
h248.signalsToken signalsToken
Boolean
h248.startTimer startTimer
Unsigned 32-bit integer
h248.INTEGER_0_99
h248.statName statName
Byte array
h248.PkgdName
h248.statValue statValue
Unsigned 32-bit integer
h248.StatValue
h248.statisticsDescriptor statisticsDescriptor
Unsigned 32-bit integer
h248.StatisticsDescriptor
h248.statsToken statsToken
Boolean
h248.streamID streamID
Unsigned 32-bit integer
h248.StreamID
h248.streamMode streamMode
No value
h248.NULL
h248.streamModeSel streamModeSel
Unsigned 32-bit integer
h248.StreamMode
h248.streamParms streamParms
No value
h248.IndAudStreamParms
h248.streams streams
Unsigned 32-bit integer
h248.IndAudMediaDescriptorStreams
h248.sublist sublist
Boolean
h248.BOOLEAN
h248.subtractReply subtractReply
No value
h248.T_subtractReply
h248.subtractReq subtractReq
No value
h248.T_subtractReq
h248.t35CountryCode1 t35CountryCode1
Unsigned 32-bit integer
h248.INTEGER_0_255
h248.t35CountryCode2 t35CountryCode2
Unsigned 32-bit integer
h248.INTEGER_0_255
h248.t35Extension t35Extension
Unsigned 32-bit integer
h248.INTEGER_0_255
h248.term.wildcard.level Wildcarding Level
Unsigned 8-bit integer
h248.term.wildcard.mode Wildcard Mode
Unsigned 8-bit integer
h248.term.wildcard.pos Wildcarding Position
Unsigned 8-bit integer
h248.termList termList
Unsigned 32-bit integer
h248.SEQUENCE_OF_TerminationID
h248.termList_item Item
No value
h248.TerminationID
h248.termStateDescr termStateDescr
No value
h248.IndAudTerminationStateDescriptor
h248.terminationAudit terminationAudit
Unsigned 32-bit integer
h248.TerminationAudit
h248.terminationAuditResult terminationAuditResult
Unsigned 32-bit integer
h248.TerminationAudit
h248.terminationFrom terminationFrom
No value
h248.TerminationID
h248.terminationID terminationID
Unsigned 32-bit integer
h248.TerminationIDList
h248.terminationTo terminationTo
No value
h248.TerminationID
h248.time time
String
h248.IA5String_SIZE_8
h248.timeNotation timeNotation
No value
h248.TimeNotation
h248.timeStamp timeStamp
No value
h248.TimeNotation
h248.timestamp timestamp
No value
h248.TimeNotation
h248.topology topology
No value
h248.NULL
h248.topologyDirection topologyDirection
Unsigned 32-bit integer
h248.T_topologyDirection
h248.topologyDirectionExtension topologyDirectionExtension
Unsigned 32-bit integer
h248.T_topologyDirectionExtension
h248.topologyReq topologyReq
Unsigned 32-bit integer
h248.T_topologyReq
h248.topologyReq_item Item
No value
h248.TopologyRequest
h248.transactionError transactionError
No value
h248.ErrorDescriptor
h248.transactionId transactionId
Unsigned 32-bit integer
h248.T_transactionId
h248.transactionPending transactionPending
No value
h248.TransactionPending
h248.transactionReply transactionReply
No value
h248.TransactionReply
h248.transactionRequest transactionRequest
No value
h248.TransactionRequest
h248.transactionResponseAck transactionResponseAck
Unsigned 32-bit integer
h248.TransactionResponseAck
h248.transactionResult transactionResult
Unsigned 32-bit integer
h248.T_transactionResult
h248.transactions transactions
Unsigned 32-bit integer
h248.SEQUENCE_OF_Transaction
h248.transactions_item Item
Unsigned 32-bit integer
h248.Transaction
h248.value value
Unsigned 32-bit integer
h248.SEQUENCE_OF_PropertyID
h248.value_item Item
Byte array
h248.PropertyID
h248.version version
Unsigned 32-bit integer
h248.INTEGER_0_99
h248.wildcard wildcard
Unsigned 32-bit integer
h248.SEQUENCE_OF_WildcardField
h248.wildcardReturn wildcardReturn
No value
h248.NULL
h248.wildcard_item Item
Byte array
h248.WildcardField
h248.pkg.BCP BCP (Bearer characteristics package)
Byte array
h248.pkg.BNCCT BNCCT (Bearer network connection cut-through package)
Byte array
h248.pkg.BT BT (Bearer control Tunneling)
Byte array
h248.pkg.BT.BIT Bearer Information Transport
Byte array
h248.pkg.BT.TIND tind (Tunnel INDication)
Byte array
h248.pkg.BT.TunOpt Tunnelling Options
Unsigned 32-bit integer
h248.pkg.GB GB (Generic bearer connection)
Byte array
h248.pkg.GB.BNCChang BNCChange
Byte array
This event occurs whenever a change to a Bearer Network connection occurs
h248.pkg.GB.BNCChang.EstBNC Type
Byte array
This signal triggers the bearer control function to send bearer establishment signalling
h248.pkg.GB.BNCChang.RelBNC RelBNC
Byte array
This signal triggers the bearer control function to send bearer release
h248.pkg.GB.BNCChang.RelBNC.Failurecause Failurecause
Byte array
The Release Cause is the value generated by the Released equipment
h248.pkg.GB.BNCChang.RelBNC.Generalcause Generalcause
Unsigned 32-bit integer
This indicates the general reason for the Release
h248.pkg.GB.BNCChang.Type Type
Unsigned 32-bit integer
h248.pkg.RI RI (Reuse idle package)
Byte array
h248.pkg.bcg bcg (Basic call progress tones generator with directionality)
Byte array
h248.pkg.bcg.bbt bbt (Busy tone)
Unsigned 8-bit integer
h248.pkg.bcg.bcr bcr (Call ringing tone)
Unsigned 8-bit integer
h248.pkg.bcg.bct bct (Congestion tone)
Unsigned 8-bit integer
h248.pkg.bcg.bcw bcw (Call waiting tone)
Unsigned 8-bit integer
h248.pkg.bcg.bdt bdt (Dial Tone)
Unsigned 8-bit integer
h248.pkg.bcg.bpt bpt (Payphone recognition tone)
Unsigned 8-bit integer
h248.pkg.bcg.bpy bpy (Pay tone)
Unsigned 8-bit integer
h248.pkg.bcg.brt brt (Ringing tone)
Unsigned 8-bit integer
h248.pkg.bcg.bsit bsit (Special information tone)
Unsigned 8-bit integer
h248.pkg.bcg.bwt bwt (Warning tone)
Unsigned 8-bit integer
h248.pkg.bcp.bncchar BNCChar (BNC Characteristics)
Unsigned 32-bit integer
BNC Characteristics
h248.pkg.bcp.bncct Bearer network connection cut-through capability
Unsigned 32-bit integer
This property allows the MGC to ask the MG when the cut through of a bearer will occur, early or late.
h248.pkg.bcp.btd btd (Tone Direction)
Unsigned 32-bit integer
btd (Tone Direction)
h248.pkg.bcp.rii Reuse Idle Indication
Unsigned 32-bit integer
This property indicates that the provided bearer network connection relates to an Idle Bearer.
h248.chp.mgcon MGCon
Byte array
This event occurs when the MG requires that the MGC start or finish load reduction.
h248.chp.mgcon.reduction Reduction
Unsigned 32-bit integer
Percentage of the load that the MGC is requested to block
h248.an.apf Fixed Announcement Play
Byte array
Initiates the play of a fixed announcement
h248.an.apf.an Announcement name
Unsigned 32-bit integer
h248.an.apf.av Announcement Variant
String
h248.an.apf.di Announcement Direction
Unsigned 32-bit integer
h248.an.apf.noc Number of cycles
Unsigned 32-bit integer
h248.an.apv Fixed Announcement Play
Byte array
Initiates the play of a fixed announcement
h248.an.apv.an Announcement name
Unsigned 32-bit integer
h248.an.apv.av Announcement Variant
String
h248.an.apv.di Announcement Direction
Unsigned 32-bit integer
h248.an.apv.noc Number of cycles
Unsigned 32-bit integer
h248.an.apv.num Number
Unsigned 32-bit integer
h248.an.apv.sp Specific parameters
String
h248.an.apv.spi Specific parameters interpretation
Unsigned 32-bit integer
h264.AdditionalModesSupported AdditionalModesSupported
Unsigned 8-bit integer
h264.ProfileIOP ProfileIOP
Unsigned 8-bit integer
h264.add_mode_sup Additional Modes Supported
Unsigned 8-bit integer
h264.add_mode_sup.rcdo Reduced Complexity Decoding Operation (RCDO) support
Boolean
h264.aspect_ratio_idc aspect_ratio_idc
Unsigned 8-bit integer
aspect_ratio_idc
h264.aspect_ratio_info_present_flag aspect_ratio_info_present_flag
Unsigned 8-bit integer
aspect_ratio_info_present_flag
h264.bit_depth_chroma_minus8 bit_depth_chroma_minus8
Unsigned 32-bit integer
bit_depth_chroma_minus8
h264.bit_depth_luma_minus8 bit_depth_luma_minus8
Unsigned 32-bit integer
bit_depth_luma_minus8
h264.bit_rate_scale bit_rate_scale
Unsigned 8-bit integer
bit_rate_scale
h264.bit_rate_value_minus1 bit_rate_value_minus1
Unsigned 32-bit integer
bit_rate_value_minus1
h264.bitstream_restriction_flag bitstream_restriction_flag
Unsigned 8-bit integer
bitstream_restriction_flag
h264.cbr_flag cbr_flag
Unsigned 8-bit integer
cbr_flag
h264.chroma_format_id chroma_format_id
Unsigned 32-bit integer
chroma_format_id
h264.chroma_loc_info_present_flag chroma_loc_info_present_flag
Unsigned 8-bit integer
chroma_loc_info_present_flag
h264.chroma_qp_index_offset chroma_qp_index_offset
Signed 32-bit integer
chroma_qp_index_offset
h264.chroma_sample_loc_type_bottom_field chroma_sample_loc_type_bottom_field
Unsigned 32-bit integer
chroma_sample_loc_type_bottom_field
h264.chroma_sample_loc_type_top_field chroma_sample_loc_type_top_field
Unsigned 32-bit integer
chroma_sample_loc_type_top_field
h264.colour_description_present_flag colour_description_present_flag
Unsigned 8-bit integer
colour_description_present_flag
h264.colour_primaries colour_primaries
Unsigned 8-bit integer
colour_primaries
h264.constrained_intra_pred_flag constrained_intra_pred_flag
Unsigned 8-bit integer
constrained_intra_pred_flag
h264.constraint_set0_flag Constraint_set0_flag
Unsigned 8-bit integer
Constraint_set0_flag
h264.constraint_set1_flag Constraint_set1_flag
Unsigned 8-bit integer
Constraint_set1_flag
h264.constraint_set2_flag Constraint_set2_flag
Unsigned 8-bit integer
NRI
h264.constraint_set3_flag Constraint_set3_flag
Unsigned 8-bit integer
Constraint_set3_flag
h264.cpb_cnt_minus1 cpb_cnt_minus1
Unsigned 32-bit integer
cpb_cnt_minus1
h264.cpb_removal_delay_length_minus1 cpb_removal_delay_length_minus1
Unsigned 8-bit integer
cpb_removal_delay_length_minus1
h264.cpb_size_scale cpb_size_scale
Unsigned 8-bit integer
cpb_size_scale
h264.cpb_size_value_minus1 cpb_size_value_minus1
Unsigned 32-bit integer
cpb_size_value_minus1
h264.deblocking_filter_control_present_flag deblocking_filter_control_present_flag
Unsigned 8-bit integer
deblocking_filter_control_present_flag
h264.delta_pic_order_always_zero_flag delta_pic_order_always_zero_flag
Unsigned 8-bit integer
delta_pic_order_always_zero_flag
h264.direct_8x8_inference_flag direct_8x8_inference_flag
Unsigned 8-bit integer
direct_8x8_inference_flag
h264.dpb_output_delay_length_minus11 dpb_output_delay_length_minus11
Unsigned 8-bit integer
dpb_output_delay_length_minus11
h264.entropy_coding_mode_flag entropy_coding_mode_flag
Unsigned 8-bit integer
entropy_coding_mode_flag
h264.f F bit
Boolean
F bit
h264.first_mb_in_slice first_mb_in_slice
Unsigned 32-bit integer
first_mb_in_slice
h264.fixed_frame_rate_flag fixed_frame_rate_flag
Unsigned 8-bit integer
fixed_frame_rate_flag
h264.forbidden_zero_bit Forbidden_zero_bit
Unsigned 8-bit integer
forbidden_zero_bit
h264.frame_crop_bottom_offset frame_crop_bottom_offset
Unsigned 32-bit integer
frame_crop_bottom_offset
h264.frame_crop_left_offset frame_crop_left_offset
Unsigned 32-bit integer
frame_crop_left_offset
h264.frame_crop_right_offset frame_crop_left_offset
Unsigned 32-bit integer
frame_crop_right_offset
h264.frame_crop_top_offset frame_crop_top_offset
Unsigned 32-bit integer
frame_crop_top_offset
h264.frame_cropping_flag frame_cropping_flag
Unsigned 8-bit integer
frame_cropping_flag
h264.frame_mbs_only_flag frame_mbs_only_flag
Unsigned 8-bit integer
frame_mbs_only_flag
h264.frame_num frame_num
Unsigned 8-bit integer
frame_num
h264.gaps_in_frame_num_value_allowed_flag gaps_in_frame_num_value_allowed_flag
Unsigned 8-bit integer
gaps_in_frame_num_value_allowed_flag
h264.initial_cpb_removal_delay_length_minus1 initial_cpb_removal_delay_length_minus1
Unsigned 8-bit integer
initial_cpb_removal_delay_length_minus1
h264.level_id Level_id
Unsigned 8-bit integer
Level_id
h264.log2_max_frame_num_minus4 log2_max_frame_num_minus4
Unsigned 32-bit integer
log2_max_frame_num_minus4
h264.log2_max_mv_length_vertical log2_max_mv_length_vertical
Unsigned 32-bit integer
log2_max_mv_length_vertical
h264.log2_max_pic_order_cnt_lsb_minus4 log2_max_pic_order_cnt_lsb_minus4
Unsigned 32-bit integer
log2_max_pic_order_cnt_lsb_minus4
h264.low_delay_hrd_flag low_delay_hrd_flag
Unsigned 8-bit integer
low_delay_hrd_flag
h264.matrix_coefficients matrix_coefficients
Unsigned 8-bit integer
matrix_coefficients
h264.max_bits_per_mb_denom max_bits_per_mb_denom
Unsigned 32-bit integer
max_bits_per_mb_denom
h264.max_bytes_per_pic_denom max_bytes_per_pic_denom
Unsigned 32-bit integer
max_bytes_per_pic_denom
h264.max_dec_frame_buffering max_dec_frame_buffering
Unsigned 32-bit integer
max_dec_frame_buffering
h264.max_mv_length_horizontal max_mv_length_horizontal
Unsigned 32-bit integer
max_mv_length_horizontal
h264.mb_adaptive_frame_field_flag mb_adaptive_frame_field_flag
Unsigned 8-bit integer
mb_adaptive_frame_field_flag
h264.motion_vectors_over_pic_boundaries_flag motion_vectors_over_pic_boundaries_flag
Unsigned 32-bit integer
motion_vectors_over_pic_boundaries_flag
h264.nal_hrd_parameters_present_flag nal_hrd_parameters_present_flag
Unsigned 8-bit integer
nal_hrd_parameters_present_flag
h264.nal_nri Nal_ref_idc (NRI)
Unsigned 8-bit integer
NRI
h264.nal_ref_idc Nal_ref_idc
Unsigned 8-bit integer
nal_ref_idc
h264.nal_unit NAL unit
Byte array
NAL unit
h264.nal_unit_hdr Type
Unsigned 8-bit integer
Type
h264.nal_unit_type Nal_unit_type
Unsigned 8-bit integer
nal_unit_type
h264.num_ref_frames num_ref_frames
Unsigned 32-bit integer
num_ref_frames
h264.num_ref_frames_in_pic_order_cnt_cycle num_ref_frames_in_pic_order_cnt_cycle
Unsigned 32-bit integer
num_ref_frames_in_pic_order_cnt_cycle
h264.num_ref_idx_l0_active_minus1 num_ref_idx_l0_active_minus1
Unsigned 32-bit integer
num_ref_idx_l0_active_minus1
h264.num_ref_idx_l1_active_minus1 num_ref_idx_l1_active_minus1
Unsigned 32-bit integer
num_ref_idx_l1_active_minus1
h264.num_reorder_frames num_reorder_frames
Unsigned 32-bit integer
num_reorder_frames
h264.num_slice_groups_minus1 num_slice_groups_minus1
Unsigned 32-bit integer
num_slice_groups_minus1
h264.num_units_in_tick num_units_in_tick
Unsigned 32-bit integer
num_units_in_tick
h264.offset_for_non_ref_pic offset_for_non_ref_pic
Signed 32-bit integer
offset_for_non_ref_pic
h264.offset_for_ref_frame offset_for_ref_frame
Signed 32-bit integer
offset_for_ref_frame
h264.offset_for_top_to_bottom_field offset_for_top_to_bottom_field
Signed 32-bit integer
offset_for_top_to_bottom_field
h264.overscan_appropriate_flag overscan_appropriate_flag
Unsigned 8-bit integer
overscan_appropriate_flag
h264.overscan_info_present_flag overscan_info_present_flag
Unsigned 8-bit integer
overscan_info_present_flag
h264.par.constraint_set0_flag constraint_set0_flag
Boolean
h264.par.constraint_set1_flag constraint_set1_flag
Boolean
h264.par.constraint_set2_flag constraint_set2_flag
Boolean
h264.pic_height_in_map_units_minus1 pic_height_in_map_units_minus1
Unsigned 32-bit integer
pic_height_in_map_units_minus1
h264.pic_init_qp_minus26 pic_init_qp_minus26
Signed 32-bit integer
pic_init_qp_minus26
h264.pic_init_qs_minus26 pic_init_qs_minus26
Signed 32-bit integer
pic_init_qs_minus26
h264.pic_order_cnt_type pic_order_cnt_type
Unsigned 32-bit integer
pic_order_cnt_type
h264.pic_order_present_flag pic_order_present_flag
Unsigned 8-bit integer
pic_order_present_flag
h264.pic_parameter_set_id pic_parameter_set_id
Unsigned 32-bit integer
pic_parameter_set_id
h264.pic_scaling_matrix_present_flag pic_scaling_matrix_present_flag
Unsigned 8-bit integer
pic_scaling_matrix_present_flag
h264.pic_struct_present_flag pic_struct_present_flag
Unsigned 8-bit integer
pic_struct_present_flag
h264.pic_width_in_mbs_minus1 pic_width_in_mbs_minus1
Unsigned 32-bit integer
pic_width_in_mbs_minus1
h264.profile Profile
Byte array
Profile
h264.profile.base Baseline Profile
Boolean
h264.profile.ext Extended Profile.
Boolean
h264.profile.high High Profile
Boolean
h264.profile.high10 High 10 Profile
Boolean
h264.profile.high4_2_2 High 4:2:2 Profile
Boolean
h264.profile.high4_4_4 High 4:4:4 Profile
Boolean
h264.profile.main Main Profile
Boolean
h264.profile_idc Profile_idc
Unsigned 8-bit integer
Profile_idc
h264.qpprime_y_zero_transform_bypass_flag qpprime_y_zero_transform_bypass_flag
Unsigned 32-bit integer
qpprime_y_zero_transform_bypass_flag
h264.rbsp_stop_bit rbsp_stop_bit
Unsigned 8-bit integer
rbsp_stop_bit
h264.rbsp_trailing_bits rbsp_trailing_bits
Unsigned 8-bit integer
rbsp_trailing_bits
h264.redundant_pic_cnt_present_flag redundant_pic_cnt_present_flag
Unsigned 8-bit integer
redundant_pic_cnt_present_flag
h264.reserved_zero_4bits Reserved_zero_4bits
Unsigned 8-bit integer
Reserved_zero_4bits
h264.residual_colour_transform_flag residual_colour_transform_flag
Unsigned 8-bit integer
residual_colour_transform_flag
h264.sar_height sar_height
Unsigned 16-bit integer
sar_height
h264.sar_width sar_width
Unsigned 16-bit integer
sar_width
h264.second_chroma_qp_index_offset second_chroma_qp_index_offset
Signed 32-bit integer
second_chroma_qp_index_offset
h264.seq_parameter_set_id seq_parameter_set_id
Unsigned 32-bit integer
seq_parameter_set_id
h264.seq_scaling_matrix_present_flag seq_scaling_matrix_present_flag
Unsigned 32-bit integer
seq_scaling_matrix_present_flag
h264.slice_group_map_type slice_group_map_type
Unsigned 32-bit integer
slice_group_map_type
h264.slice_id slice_id
Unsigned 32-bit integer
slice_id
h264.slice_type slice_type
Unsigned 32-bit integer
slice_type
h264.time_offset_length time_offset_length
Unsigned 8-bit integer
time_offset_length
h264.time_scale time_scale
Unsigned 32-bit integer
time_scale
h264.timing_info_present_flag timing_info_present_flag
Unsigned 8-bit integer
timing_info_present_flag
h264.transfer_characteristics transfer_characteristics
Unsigned 8-bit integer
transfer_characteristics
h264.transform_8x8_mode_flag transform_8x8_mode_flag
Unsigned 8-bit integer
transform_8x8_mode_flag
h264.vcl_hrd_parameters_present_flag vcl_hrd_parameters_present_flag
Unsigned 8-bit integer
vcl_hrd_parameters_present_flag
h264.video_format video_format
Unsigned 8-bit integer
video_format
h264.video_full_range_flag video_full_range_flag
Unsigned 8-bit integer
video_full_range_flag
h264.video_signal_type_present_flag video_signal_type_present_flag
Unsigned 8-bit integer
video_signal_type_present_flag
h264.vui_parameters_present_flag vui_parameters_present_flag
Unsigned 8-bit integer
vui_parameters_present_flag
h264.weighted_bipred_idc weighted_bipred_idc
Unsigned 8-bit integer
weighted_bipred_idc
h264.weighted_pred_flag weighted_pred_flag
Unsigned 8-bit integer
weighted_pred_flag
h282.NonCollapsingCapabilities NonCollapsingCapabilities
Unsigned 32-bit integer
h282.NonCollapsingCapabilities
h282.NonCollapsingCapabilities_item Item
No value
h282.NonCollapsingCapabilities_item
h282.RDCPDU RDCPDU
Unsigned 32-bit integer
h282.RDCPDU
h282.absolute absolute
No value
h282.NULL
h282.accessoryTextLabel accessoryTextLabel
Unsigned 32-bit integer
h282.T_accessoryTextLabel
h282.accessoryTextLabel_item Item
No value
h282.T_accessoryTextLabel_item
h282.activate activate
No value
h282.NULL
h282.active active
No value
h282.NULL
h282.applicationData applicationData
Unsigned 32-bit integer
h282.T_applicationData
h282.audioInputs audioInputs
No value
h282.DeviceInputs
h282.audioInputsSupported audioInputsSupported
No value
h282.AudioInputsCapability
h282.audioSinkFlag audioSinkFlag
Boolean
h282.BOOLEAN
h282.audioSourceFlag audioSourceFlag
Boolean
h282.BOOLEAN
h282.auto auto
No value
h282.NULL
h282.autoSlideShowFinished autoSlideShowFinished
No value
h282.NULL
h282.autoSlideShowFinishedSupported autoSlideShowFinishedSupported
No value
h282.NULL
h282.automatic automatic
No value
h282.NULL
h282.availableDevices availableDevices
Unsigned 32-bit integer
h282.T_availableDevices
h282.availableDevices_item Item
No value
h282.T_availableDevices_item
h282.backLight backLight
Unsigned 32-bit integer
h282.BackLight
h282.backLightModeSupported backLightModeSupported
No value
h282.NULL
h282.backLightSettingSupported backLightSettingSupported
Unsigned 32-bit integer
h282.MaxBacklight
h282.calibrateWhiteBalance calibrateWhiteBalance
No value
h282.NULL
h282.calibrateWhiteBalanceSupported calibrateWhiteBalanceSupported
No value
h282.NULL
h282.camera camera
No value
h282.NULL
h282.cameraFilterSupported cameraFilterSupported
No value
h282.CameraFilterCapability
h282.cameraFocusedToLimit cameraFocusedToLimit
Unsigned 32-bit integer
h282.CameraFocusedToLimit
h282.cameraFocusedToLimitSupported cameraFocusedToLimitSupported
No value
h282.NULL
h282.cameraLensSupported cameraLensSupported
No value
h282.CameraLensCapability
h282.cameraPanSpeedSupported cameraPanSpeedSupported
No value
h282.CameraPanSpeedCapability
h282.cameraPannedToLimit cameraPannedToLimit
Unsigned 32-bit integer
h282.CameraPannedToLimit
h282.cameraPannedToLimitSupported cameraPannedToLimitSupported
No value
h282.NULL
h282.cameraTiltSpeedSupported cameraTiltSpeedSupported
No value
h282.CameraTiltSpeedCapability
h282.cameraTiltedToLimit cameraTiltedToLimit
Unsigned 32-bit integer
h282.CameraTiltedToLimit
h282.cameraTiltedToLimitSupported cameraTiltedToLimitSupported
No value
h282.NULL
h282.cameraZoomedToLimit cameraZoomedToLimit
Unsigned 32-bit integer
h282.CameraZoomedToLimit
h282.cameraZoomedToLimitSupported cameraZoomedToLimitSupported
No value
h282.NULL
h282.capabilityID capabilityID
Unsigned 32-bit integer
h282.CapabilityID
h282.captureImage captureImage
No value
h282.NULL
h282.captureImageSupported captureImageSupported
No value
h282.NULL
h282.clearCameraLens clearCameraLens
No value
h282.NULL
h282.clearCameraLensSupported clearCameraLensSupported
No value
h282.NULL
h282.configurableAudioInputs configurableAudioInputs
No value
h282.DeviceInputs
h282.configurableAudioInputsSupported configurableAudioInputsSupported
No value
h282.AudioInputsCapability
h282.configurableVideoInputs configurableVideoInputs
No value
h282.DeviceInputs
h282.configurableVideoInputsSupported configurableVideoInputsSupported
No value
h282.VideoInputsCapability
h282.configureAudioInputs configureAudioInputs
No value
h282.DeviceInputs
h282.configureDeviceEventsRequest configureDeviceEventsRequest
No value
h282.ConfigureDeviceEventsRequest
h282.configureDeviceEventsResponse configureDeviceEventsResponse
No value
h282.ConfigureDeviceEventsResponse
h282.configureVideoInputs configureVideoInputs
No value
h282.DeviceInputs
h282.continue continue
No value
h282.NULL
h282.continuousFastForwardControl continuousFastForwardControl
Boolean
h282.BOOLEAN
h282.continuousFastForwardSupported continuousFastForwardSupported
No value
h282.NULL
h282.continuousPlayBackMode continuousPlayBackMode
Boolean
h282.BOOLEAN
h282.continuousPlayBackModeSupported continuousPlayBackModeSupported
No value
h282.NULL
h282.continuousRewindControl continuousRewindControl
Boolean
h282.BOOLEAN
h282.continuousRewindSupported continuousRewindSupported
No value
h282.NULL
h282.controlAttributeList controlAttributeList
Unsigned 32-bit integer
h282.SET_SIZE_1_8_OF_ControlAttribute
h282.controlAttributeList_item Item
Unsigned 32-bit integer
h282.ControlAttribute
h282.currentAudioOutputMute currentAudioOutputMute
Unsigned 32-bit integer
h282.CurrentAudioOutputMute
h282.currentAutoSlideDisplayTime currentAutoSlideDisplayTime
Unsigned 32-bit integer
h282.CurrentAutoSlideDisplayTime
h282.currentBackLight currentBackLight
Unsigned 32-bit integer
h282.CurrentBackLight
h282.currentBackLightMode currentBackLightMode
Unsigned 32-bit integer
h282.CurrentMode
h282.currentCameraFilter currentCameraFilter
Unsigned 32-bit integer
h282.CurrentCameraFilterNumber
h282.currentCameraLens currentCameraLens
Unsigned 32-bit integer
h282.CurrentCameraLensNumber
h282.currentCameraPanSpeed currentCameraPanSpeed
Unsigned 32-bit integer
h282.CurrentCameraPanSpeed
h282.currentCameraTiltSpeed currentCameraTiltSpeed
Unsigned 32-bit integer
h282.CurrentCameraTiltSpeed
h282.currentDay currentDay
Unsigned 32-bit integer
h282.T_currentDay
h282.currentDeviceDate currentDeviceDate
No value
h282.CurrentDeviceDate
h282.currentDeviceIsLocked currentDeviceIsLocked
No value
h282.NULL
h282.currentDevicePreset currentDevicePreset
Unsigned 32-bit integer
h282.CurrentDevicePreset
h282.currentDeviceTime currentDeviceTime
No value
h282.CurrentDeviceTime
h282.currentExternalLight currentExternalLight
Unsigned 32-bit integer
h282.CurrentExternalLight
h282.currentFocusMode currentFocusMode
Unsigned 32-bit integer
h282.CurrentMode
h282.currentFocusPosition currentFocusPosition
Unsigned 32-bit integer
h282.CurrentFocusPosition
h282.currentHour currentHour
Unsigned 32-bit integer
h282.T_currentHour
h282.currentIrisMode currentIrisMode
Unsigned 32-bit integer
h282.CurrentMode
h282.currentIrisPosition currentIrisPosition
Unsigned 32-bit integer
h282.CurrentIrisPosition
h282.currentMinute currentMinute
Unsigned 32-bit integer
h282.T_currentMinute
h282.currentMonth currentMonth
Unsigned 32-bit integer
h282.T_currentMonth
h282.currentPanPosition currentPanPosition
Unsigned 32-bit integer
h282.CurrentPanPosition
h282.currentPlaybackSpeed currentPlaybackSpeed
Unsigned 32-bit integer
h282.CurrentPlaybackSpeed
h282.currentPointingMode currentPointingMode
Unsigned 32-bit integer
h282.CurrentPointingMode
h282.currentProgramDuration currentProgramDuration
No value
h282.ProgramDuration
h282.currentSelectedProgram currentSelectedProgram
Unsigned 32-bit integer
h282.CurrentSelectedProgram
h282.currentSlide currentSlide
Unsigned 32-bit integer
h282.CurrentSlide
h282.currentTiltPosition currentTiltPosition
Unsigned 32-bit integer
h282.CurrentTiltPosition
h282.currentWhiteBalance currentWhiteBalance
Unsigned 32-bit integer
h282.CurrentWhiteBalance
h282.currentWhiteBalanceMode currentWhiteBalanceMode
Unsigned 32-bit integer
h282.CurrentMode
h282.currentYear currentYear
Unsigned 32-bit integer
h282.T_currentYear
h282.currentZoomPosition currentZoomPosition
Unsigned 32-bit integer
h282.CurrentZoomPosition
h282.currentdeviceState currentdeviceState
Unsigned 32-bit integer
h282.CurrentDeviceState
h282.currentstreamPlayerState currentstreamPlayerState
Unsigned 32-bit integer
h282.CurrentStreamPlayerState
h282.darker darker
No value
h282.NULL
h282.data data
Byte array
h282.OCTET_STRING
h282.day day
Unsigned 32-bit integer
h282.Day
h282.deviceAlreadyLocked deviceAlreadyLocked
No value
h282.NULL
h282.deviceAttributeError deviceAttributeError
No value
h282.NULL
h282.deviceAttributeList deviceAttributeList
Unsigned 32-bit integer
h282.SET_OF_DeviceAttribute
h282.deviceAttributeList_item Item
Unsigned 32-bit integer
h282.DeviceAttribute
h282.deviceAttributeRequest deviceAttributeRequest
No value
h282.DeviceAttributeRequest
h282.deviceAttributeResponse deviceAttributeResponse
No value
h282.DeviceAttributeResponse
h282.deviceAvailabilityChanged deviceAvailabilityChanged
Boolean
h282.BOOLEAN
h282.deviceAvailabilityChangedSupported deviceAvailabilityChangedSupported
No value
h282.NULL
h282.deviceClass deviceClass
Unsigned 32-bit integer
h282.DeviceClass
h282.deviceControlRequest deviceControlRequest
No value
h282.DeviceControlRequest
h282.deviceDateSupported deviceDateSupported
No value
h282.NULL
h282.deviceEventIdentifierList deviceEventIdentifierList
Unsigned 32-bit integer
h282.SET_OF_DeviceEventIdentifier
h282.deviceEventIdentifierList_item Item
Unsigned 32-bit integer
h282.DeviceEventIdentifier
h282.deviceEventList deviceEventList
Unsigned 32-bit integer
h282.SET_SIZE_1_8_OF_DeviceEvent
h282.deviceEventList_item Item
Unsigned 32-bit integer
h282.DeviceEvent
h282.deviceEventNotifyIndication deviceEventNotifyIndication
No value
h282.DeviceEventNotifyIndication
h282.deviceID deviceID
Unsigned 32-bit integer
h282.DeviceID
h282.deviceIdentifier deviceIdentifier
Unsigned 32-bit integer
h282.DeviceID
h282.deviceIncompatible deviceIncompatible
No value
h282.NULL
h282.deviceList deviceList
Unsigned 32-bit integer
h282.SET_SIZE_0_127_OF_DeviceProfile
h282.deviceList_item Item
No value
h282.DeviceProfile
h282.deviceLockChanged deviceLockChanged
Boolean
h282.BOOLEAN
h282.deviceLockEnquireRequest deviceLockEnquireRequest
No value
h282.DeviceLockEnquireRequest
h282.deviceLockEnquireResponse deviceLockEnquireResponse
No value
h282.DeviceLockEnquireResponse
h282.deviceLockRequest deviceLockRequest
No value
h282.DeviceLockRequest
h282.deviceLockResponse deviceLockResponse
No value
h282.DeviceLockResponse
h282.deviceLockStateChangedSupported deviceLockStateChangedSupported
No value
h282.NULL
h282.deviceLockTerminatedIndication deviceLockTerminatedIndication
No value
h282.DeviceLockTerminatedIndication
h282.deviceName deviceName
String
h282.TextString
h282.devicePresetSupported devicePresetSupported
No value
h282.DevicePresetCapability
h282.deviceState deviceState
Unsigned 32-bit integer
h282.DeviceState
h282.deviceStateSupported deviceStateSupported
No value
h282.NULL
h282.deviceStatusEnquireRequest deviceStatusEnquireRequest
No value
h282.DeviceStatusEnquireRequest
h282.deviceStatusEnquireResponse deviceStatusEnquireResponse
No value
h282.DeviceStatusEnquireResponse
h282.deviceTimeSupported deviceTimeSupported
No value
h282.NULL
h282.deviceUnavailable deviceUnavailable
No value
h282.NULL
h282.divisorFactors divisorFactors
Unsigned 32-bit integer
h282.T_divisorFactors
h282.divisorFactors_item Item
Unsigned 32-bit integer
h282.INTEGER_10_1000
h282.down down
No value
h282.NULL
h282.eventsNotSupported eventsNotSupported
No value
h282.NULL
h282.externalCameraLightSupported externalCameraLightSupported
No value
h282.ExternalCameraLightCapability
h282.far far
No value
h282.NULL
h282.fastForwarding fastForwarding
No value
h282.NULL
h282.filterNumber filterNumber
Unsigned 32-bit integer
h282.INTEGER_1_255
h282.filterTextLabel filterTextLabel
Unsigned 32-bit integer
h282.T_filterTextLabel
h282.filterTextLabel_item Item
No value
h282.T_filterTextLabel_item
h282.focusContinuous focusContinuous
No value
h282.FocusContinuous
h282.focusContinuousSupported focusContinuousSupported
No value
h282.NULL
h282.focusDirection focusDirection
Unsigned 32-bit integer
h282.T_focusDirection
h282.focusImage focusImage
No value
h282.NULL
h282.focusImageSupported focusImageSupported
No value
h282.NULL
h282.focusModeSupported focusModeSupported
No value
h282.NULL
h282.focusPosition focusPosition
Signed 32-bit integer
h282.FocusPosition
h282.focusPositionSupported focusPositionSupported
Unsigned 32-bit integer
h282.MinFocusPositionStepSize
h282.getAudioInputs getAudioInputs
No value
h282.NULL
h282.getAudioOutputState getAudioOutputState
No value
h282.NULL
h282.getAutoSlideDisplayTime getAutoSlideDisplayTime
No value
h282.NULL
h282.getBackLight getBackLight
No value
h282.NULL
h282.getBackLightMode getBackLightMode
No value
h282.NULL
h282.getBacklightMode getBacklightMode
No value
h282.NULL
h282.getCameraFilter getCameraFilter
No value
h282.NULL
h282.getCameraLens getCameraLens
No value
h282.NULL
h282.getCameraPanSpeed getCameraPanSpeed
No value
h282.NULL
h282.getCameraTiltSpeed getCameraTiltSpeed
No value
h282.NULL
h282.getConfigurableAudioInputs getConfigurableAudioInputs
No value
h282.NULL
h282.getConfigurableVideoInputs getConfigurableVideoInputs
No value
h282.NULL
h282.getCurrentProgramDuration getCurrentProgramDuration
No value
h282.NULL
h282.getDeviceDate getDeviceDate
No value
h282.NULL
h282.getDeviceState getDeviceState
No value
h282.NULL
h282.getDeviceTime getDeviceTime
No value
h282.NULL
h282.getExternalLight getExternalLight
No value
h282.NULL
h282.getFocusMode getFocusMode
No value
h282.NULL
h282.getFocusPosition getFocusPosition
No value
h282.NULL
h282.getIrisMode getIrisMode
No value
h282.NULL
h282.getIrisPosition getIrisPosition
No value
h282.NULL
h282.getNonStandardStatus getNonStandardStatus
Unsigned 32-bit integer
h282.NonStandardIdentifier
h282.getPanPosition getPanPosition
No value
h282.NULL
h282.getPlaybackSpeed getPlaybackSpeed
No value
h282.NULL
h282.getPointingMode getPointingMode
No value
h282.NULL
h282.getSelectedProgram getSelectedProgram
No value
h282.NULL
h282.getSelectedSlide getSelectedSlide
No value
h282.NULL
h282.getStreamPlayerState getStreamPlayerState
No value
h282.NULL
h282.getTiltPosition getTiltPosition
No value
h282.NULL
h282.getVideoInputs getVideoInputs
No value
h282.NULL
h282.getWhiteBalance getWhiteBalance
No value
h282.NULL
h282.getWhiteBalanceMode getWhiteBalanceMode
No value
h282.NULL
h282.getZoomPosition getZoomPosition
No value
h282.NULL
h282.getdevicePreset getdevicePreset
No value
h282.NULL
h282.gotoHomePosition gotoHomePosition
No value
h282.NULL
h282.gotoNormalPlayTimePoint gotoNormalPlayTimePoint
No value
h282.ProgramDuration
h282.gotoNormalPlayTimePointSupported gotoNormalPlayTimePointSupported
No value
h282.NULL
h282.h221NonStandard h221NonStandard
Byte array
h282.H221NonStandardIdentifier
h282.h221nonStandard h221nonStandard
Byte array
h282.H221NonStandardIdentifier
h282.homePositionSupported homePositionSupported
No value
h282.NULL
h282.hour hour
Unsigned 32-bit integer
h282.Hour
h282.hours hours
Unsigned 32-bit integer
h282.INTEGER_0_24
h282.inactive inactive
No value
h282.NULL
h282.indication indication
Unsigned 32-bit integer
h282.IndicationPDU
h282.inputDevices inputDevices
Unsigned 32-bit integer
h282.T_inputDevices
h282.inputDevices_item Item
No value
h282.T_inputDevices_item
h282.instanceNumber instanceNumber
Unsigned 32-bit integer
h282.INTEGER_0_255
h282.invalidStreamID invalidStreamID
No value
h282.NULL
h282.irisContinuousSupported irisContinuousSupported
No value
h282.NULL
h282.irisDirection irisDirection
Unsigned 32-bit integer
h282.T_irisDirection
h282.irisModeSupported irisModeSupported
No value
h282.NULL
h282.irisPosition irisPosition
Signed 32-bit integer
h282.IrisPosition
h282.irisPositionSupported irisPositionSupported
Unsigned 32-bit integer
h282.MinIrisPositionStepSize
h282.key key
Unsigned 32-bit integer
h282.Key
h282.left left
No value
h282.NULL
h282.lensNumber lensNumber
Unsigned 32-bit integer
h282.INTEGER_1_255
h282.lensTextLabel lensTextLabel
Byte array
h282.DeviceText
h282.lightLabel lightLabel
Byte array
h282.DeviceText
h282.lightNumber lightNumber
Unsigned 32-bit integer
h282.INTEGER_1_10
h282.lightSource lightSource
No value
h282.NULL
h282.lightTextLabel lightTextLabel
Unsigned 32-bit integer
h282.T_lightTextLabel
h282.lightTextLabel_item Item
No value
h282.T_lightTextLabel_item
h282.lighter lighter
No value
h282.NULL
h282.lockFlag lockFlag
Boolean
h282.BOOLEAN
h282.lockNotRequired lockNotRequired
No value
h282.NULL
h282.lockRequired lockRequired
No value
h282.NULL
h282.lockingNotSupported lockingNotSupported
No value
h282.NULL
h282.manual manual
No value
h282.NULL
h282.maxDown maxDown
Signed 32-bit integer
h282.INTEGER_M18000_0
h282.maxLeft maxLeft
Signed 32-bit integer
h282.INTEGER_M18000_0
h282.maxNumber maxNumber
Unsigned 32-bit integer
h282.PresetNumber
h282.maxNumberOfFilters maxNumberOfFilters
Unsigned 32-bit integer
h282.INTEGER_2_255
h282.maxNumberOfLens maxNumberOfLens
Unsigned 32-bit integer
h282.INTEGER_2_255
h282.maxRight maxRight
Unsigned 32-bit integer
h282.INTEGER_0_18000
h282.maxSpeed maxSpeed
Unsigned 32-bit integer
h282.CameraPanSpeed
h282.maxUp maxUp
Unsigned 32-bit integer
h282.INTEGER_0_18000
h282.microphone microphone
No value
h282.NULL
h282.microseconds microseconds
Unsigned 32-bit integer
h282.INTEGER_0_99999
h282.minSpeed minSpeed
Unsigned 32-bit integer
h282.CameraPanSpeed
h282.minStepSize minStepSize
Unsigned 32-bit integer
h282.INTEGER_1_18000
h282.minute minute
Unsigned 32-bit integer
h282.Minute
h282.minutes minutes
Unsigned 32-bit integer
h282.INTEGER_0_59
h282.mode mode
Unsigned 32-bit integer
h282.T_mode
h282.month month
Unsigned 32-bit integer
h282.Month
h282.multiplierFactors multiplierFactors
Unsigned 32-bit integer
h282.T_multiplierFactors
h282.multiplierFactors_item Item
Unsigned 32-bit integer
h282.INTEGER_10_1000
h282.multiplyFactor multiplyFactor
Boolean
h282.BOOLEAN
h282.mute mute
Boolean
h282.BOOLEAN
h282.near near
No value
h282.NULL
h282.next next
No value
h282.NULL
h282.nextProgramSelect nextProgramSelect
Unsigned 32-bit integer
h282.SelectDirection
h282.nextProgramSupported nextProgramSupported
No value
h282.NULL
h282.nonStandard nonStandard
Unsigned 32-bit integer
h282.Key
h282.nonStandardAttributeSupported nonStandardAttributeSupported
No value
h282.NonStandardParameter
h282.nonStandardControl nonStandardControl
No value
h282.NonStandardParameter
h282.nonStandardData nonStandardData
No value
h282.NonStandardParameter
h282.nonStandardDevice nonStandardDevice
Unsigned 32-bit integer
h282.NonStandardIdentifier
h282.nonStandardEvent nonStandardEvent
No value
h282.NonStandardParameter
h282.nonStandardIndication nonStandardIndication
No value
h282.NonStandardPDU
h282.nonStandardRequest nonStandardRequest
No value
h282.NonStandardPDU
h282.nonStandardResponse nonStandardResponse
No value
h282.NonStandardPDU
h282.nonStandardStatus nonStandardStatus
No value
h282.NonStandardParameter
h282.none none
No value
h282.NULL
h282.numberOfDeviceInputs numberOfDeviceInputs
Unsigned 32-bit integer
h282.INTEGER_2_64
h282.numberOfDeviceRows numberOfDeviceRows
Unsigned 32-bit integer
h282.INTEGER_1_64
h282.object object
h282.OBJECT_IDENTIFIER
h282.panContinuous panContinuous
No value
h282.PanContinuous
h282.panContinuousSupported panContinuousSupported
No value
h282.NULL
h282.panDirection panDirection
Unsigned 32-bit integer
h282.T_panDirection
h282.panPosition panPosition
Signed 32-bit integer
h282.PanPosition
h282.panPositionSupported panPositionSupported
No value
h282.PanPositionCapability
h282.panViewSupported panViewSupported
No value
h282.NULL
h282.pause pause
No value
h282.NULL
h282.pauseSupported pauseSupported
No value
h282.NULL
h282.pausedOnPlay pausedOnPlay
No value
h282.NULL
h282.pausedOnRecord pausedOnRecord
No value
h282.NULL
h282.play play
Boolean
h282.BOOLEAN
h282.playAutoSlideShow playAutoSlideShow
Unsigned 32-bit integer
h282.AutoSlideShowControl
h282.playSlideShowSupported playSlideShowSupported
No value
h282.NULL
h282.playSupported playSupported
No value
h282.NULL
h282.playToNormalPlayTimePoint playToNormalPlayTimePoint
No value
h282.ProgramDuration
h282.playToNormalPlayTimePointSupported playToNormalPlayTimePointSupported
No value
h282.NULL
h282.playbackSpeedSupported playbackSpeedSupported
No value
h282.PlayBackSpeedCapability
h282.playing playing
No value
h282.NULL
h282.pointingModeSupported pointingModeSupported
No value
h282.NULL
h282.positioningMode positioningMode
Unsigned 32-bit integer
h282.PositioningMode
h282.preset preset
Unsigned 32-bit integer
h282.PresetNumber
h282.presetCapability presetCapability
Unsigned 32-bit integer
h282.T_presetCapability
h282.presetCapability_item Item
No value
h282.T_presetCapability_item
h282.presetNumber presetNumber
Unsigned 32-bit integer
h282.PresetNumber
h282.presetTextLabel presetTextLabel
Byte array
h282.DeviceText
h282.previous previous
No value
h282.NULL
h282.program program
Unsigned 32-bit integer
h282.ProgramNumber
h282.programUnavailable programUnavailable
No value
h282.NULL
h282.readProgramDurationSupported readProgramDurationSupported
No value
h282.NULL
h282.readStreamPlayerStateSupported readStreamPlayerStateSupported
No value
h282.NULL
h282.record record
Boolean
h282.BOOLEAN
h282.recordForDuration recordForDuration
No value
h282.RecordForDuration
h282.recordForDurationSupported recordForDurationSupported
No value
h282.NULL
h282.recordSupported recordSupported
No value
h282.NULL
h282.recording recording
No value
h282.NULL
h282.relative relative
No value
h282.NULL
h282.remoteControlFlag remoteControlFlag
Boolean
h282.BOOLEAN
h282.request request
Unsigned 32-bit integer
h282.RequestPDU
h282.requestAutoSlideShowFinished requestAutoSlideShowFinished
No value
h282.NULL
h282.requestCameraFocusedToLimit requestCameraFocusedToLimit
No value
h282.NULL
h282.requestCameraPannedToLimit requestCameraPannedToLimit
No value
h282.NULL
h282.requestCameraTiltedToLimit requestCameraTiltedToLimit
No value
h282.NULL
h282.requestCameraZoomedToLimit requestCameraZoomedToLimit
No value
h282.NULL
h282.requestDenied requestDenied
No value
h282.NULL
h282.requestDeviceAvailabilityChanged requestDeviceAvailabilityChanged
No value
h282.NULL
h282.requestDeviceLockChanged requestDeviceLockChanged
No value
h282.NULL
h282.requestHandle requestHandle
Unsigned 32-bit integer
h282.Handle
h282.requestNonStandardEvent requestNonStandardEvent
Unsigned 32-bit integer
h282.NonStandardIdentifier
h282.requestStreamPlayerProgramChange requestStreamPlayerProgramChange
No value
h282.NULL
h282.requestStreamPlayerStateChange requestStreamPlayerStateChange
No value
h282.NULL
h282.response response
Unsigned 32-bit integer
h282.ResponsePDU
h282.result result
Unsigned 32-bit integer
h282.T_result
h282.rewinding rewinding
No value
h282.NULL
h282.right right
No value
h282.NULL
h282.scaleFactor scaleFactor
Unsigned 32-bit integer
h282.INTEGER_10_1000
h282.searchBackwardsControl searchBackwardsControl
Boolean
h282.BOOLEAN
h282.searchBackwardsSupported searchBackwardsSupported
No value
h282.NULL
h282.searchForwardsControl searchForwardsControl
Boolean
h282.BOOLEAN
h282.searchForwardsSupported searchForwardsSupported
No value
h282.NULL
h282.searchingBackwards searchingBackwards
No value
h282.NULL
h282.searchingForwards searchingForwards
No value
h282.NULL
h282.seconds seconds
Unsigned 32-bit integer
h282.INTEGER_0_59
h282.selectCameraFilter selectCameraFilter
Unsigned 32-bit integer
h282.CameraFilterNumber
h282.selectCameraLens selectCameraLens
Unsigned 32-bit integer
h282.CameraLensNumber
h282.selectExternalLight selectExternalLight
Unsigned 32-bit integer
h282.SelectExternalLight
h282.selectNextSlide selectNextSlide
Unsigned 32-bit integer
h282.SelectDirection
h282.selectNextSlideSupported selectNextSlideSupported
No value
h282.NULL
h282.selectProgram selectProgram
Unsigned 32-bit integer
h282.ProgramNumber
h282.selectProgramSupported selectProgramSupported
Unsigned 32-bit integer
h282.MaxNumberOfPrograms
h282.selectSlide selectSlide
Unsigned 32-bit integer
h282.SlideNumber
h282.selectSlideSupported selectSlideSupported
Unsigned 32-bit integer
h282.MaxNumberOfSlides
h282.setAudioOutputMute setAudioOutputMute
Boolean
h282.BOOLEAN
h282.setAudioOutputStateSupported setAudioOutputStateSupported
No value
h282.NULL
h282.setAutoSlideDisplayTime setAutoSlideDisplayTime
Unsigned 32-bit integer
h282.AutoSlideDisplayTime
h282.setBackLight setBackLight
Unsigned 32-bit integer
h282.BackLight
h282.setBackLightMode setBackLightMode
Unsigned 32-bit integer
h282.Mode
h282.setCameraPanSpeed setCameraPanSpeed
Unsigned 32-bit integer
h282.CameraPanSpeed
h282.setCameraTiltSpeed setCameraTiltSpeed
Unsigned 32-bit integer
h282.CameraTiltSpeed
h282.setDeviceDate setDeviceDate
No value
h282.DeviceDate
h282.setDevicePreset setDevicePreset
No value
h282.DevicePreset
h282.setDeviceState setDeviceState
Unsigned 32-bit integer
h282.DeviceState
h282.setDeviceTime setDeviceTime
No value
h282.DeviceTime
h282.setFocusMode setFocusMode
Unsigned 32-bit integer
h282.Mode
h282.setFocusPosition setFocusPosition
No value
h282.SetFocusPosition
h282.setIrisMode setIrisMode
Unsigned 32-bit integer
h282.Mode
h282.setIrisPosition setIrisPosition
No value
h282.SetIrisPosition
h282.setPanPosition setPanPosition
No value
h282.SetPanPosition
h282.setPanView setPanView
Signed 32-bit integer
h282.PanView
h282.setPlaybackSpeed setPlaybackSpeed
No value
h282.PlaybackSpeed
h282.setPointingMode setPointingMode
Unsigned 32-bit integer
h282.PointingToggle
h282.setSlideDisplayTimeSupported setSlideDisplayTimeSupported
Unsigned 32-bit integer
h282.MaxSlideDisplayTime
h282.setTiltPosition setTiltPosition
No value
h282.SetTiltPosition
h282.setTiltView setTiltView
Signed 32-bit integer
h282.TiltView
h282.setWhiteBalance setWhiteBalance
Unsigned 32-bit integer
h282.WhiteBalance
h282.setWhiteBalanceMode setWhiteBalanceMode
Unsigned 32-bit integer
h282.Mode
h282.setZoomMagnification setZoomMagnification
Unsigned 32-bit integer
h282.ZoomMagnification
h282.setZoomPosition setZoomPosition
No value
h282.SetZoomPosition
h282.slide slide
Unsigned 32-bit integer
h282.SlideNumber
h282.slideProjector slideProjector
No value
h282.NULL
h282.slideShowModeSupported slideShowModeSupported
No value
h282.NULL
h282.sourceChangeEventIndication sourceChangeEventIndication
No value
h282.SourceChangeEventIndication
h282.sourceChangeFlag sourceChangeFlag
Boolean
h282.BOOLEAN
h282.sourceCombiner sourceCombiner
No value
h282.NULL
h282.sourceEventNotify sourceEventNotify
Boolean
h282.BOOLEAN
h282.sourceEventsRequest sourceEventsRequest
No value
h282.SourceEventsRequest
h282.sourceEventsResponse sourceEventsResponse
No value
h282.SourceEventsResponse
h282.sourceSelectRequest sourceSelectRequest
No value
h282.SourceSelectRequest
h282.sourceSelectResponse sourceSelectResponse
No value
h282.SourceSelectResponse
h282.speed speed
Unsigned 32-bit integer
h282.CameraPanSpeed
h282.speedStepSize speedStepSize
Unsigned 32-bit integer
h282.CameraPanSpeed
h282.standard standard
Unsigned 32-bit integer
h282.INTEGER_0_65535
h282.start start
No value
h282.NULL
h282.state state
Unsigned 32-bit integer
h282.StreamPlayerState
h282.statusAttributeIdentifierList statusAttributeIdentifierList
Unsigned 32-bit integer
h282.SET_SIZE_1_16_OF_StatusAttributeIdentifier
h282.statusAttributeIdentifierList_item Item
Unsigned 32-bit integer
h282.StatusAttributeIdentifier
h282.statusAttributeList statusAttributeList
Unsigned 32-bit integer
h282.SET_SIZE_1_16_OF_StatusAttribute
h282.statusAttributeList_item Item
Unsigned 32-bit integer
h282.StatusAttribute
h282.stop stop
No value
h282.NULL
h282.stopped stopped
No value
h282.NULL
h282.store store
No value
h282.NULL
h282.storeModeSupported storeModeSupported
Boolean
h282.BOOLEAN
h282.streamID streamID
Unsigned 32-bit integer
h282.StreamID
h282.streamIdentifier streamIdentifier
Unsigned 32-bit integer
h282.StreamID
h282.streamList streamList
Unsigned 32-bit integer
h282.SET_SIZE_0_127_OF_StreamProfile
h282.streamList_item Item
No value
h282.StreamProfile
h282.streamName streamName
String
h282.TextString
h282.streamPlayerProgramChange streamPlayerProgramChange
Unsigned 32-bit integer
h282.ProgramNumber
h282.streamPlayerProgramChangeSupported streamPlayerProgramChangeSupported
No value
h282.NULL
h282.streamPlayerRecorder streamPlayerRecorder
No value
h282.NULL
h282.streamPlayerStateChange streamPlayerStateChange
Unsigned 32-bit integer
h282.StreamPlayerState
h282.streamPlayerStateChangeSupported streamPlayerStateChangeSupported
No value
h282.NULL
h282.successful successful
No value
h282.NULL
h282.telescopic telescopic
No value
h282.NULL
h282.tiltContinuous tiltContinuous
No value
h282.TiltContinuous
h282.tiltContinuousSupported tiltContinuousSupported
No value
h282.NULL
h282.tiltDirection tiltDirection
Unsigned 32-bit integer
h282.T_tiltDirection
h282.tiltPosition tiltPosition
Signed 32-bit integer
h282.TiltPosition
h282.tiltPositionSupported tiltPositionSupported
No value
h282.TiltPositionCapability
h282.tiltViewSupported tiltViewSupported
No value
h282.NULL
h282.time time
Unsigned 32-bit integer
h282.AutoSlideDisplayTime
h282.timeOut timeOut
Unsigned 32-bit integer
h282.INTEGER_50_1000
h282.toggle toggle
No value
h282.NULL
h282.unknown unknown
No value
h282.NULL
h282.unknownDevice unknownDevice
No value
h282.NULL
h282.up up
No value
h282.NULL
h282.videoInputs videoInputs
No value
h282.DeviceInputs
h282.videoInputsSupported videoInputsSupported
No value
h282.VideoInputsCapability
h282.videoSinkFlag videoSinkFlag
Boolean
h282.BOOLEAN
h282.videoSourceFlag videoSourceFlag
Boolean
h282.BOOLEAN
h282.videoStreamFlag videoStreamFlag
Boolean
h282.BOOLEAN
h282.whiteBalance whiteBalance
Unsigned 32-bit integer
h282.WhiteBalance
h282.whiteBalanceModeSupported whiteBalanceModeSupported
No value
h282.NULL
h282.whiteBalanceSettingSupported whiteBalanceSettingSupported
Unsigned 32-bit integer
h282.MaxWhiteBalance
h282.wide wide
No value
h282.NULL
h282.year year
Unsigned 32-bit integer
h282.Year
h282.zoomContinuous zoomContinuous
No value
h282.ZoomContinuous
h282.zoomContinuousSupported zoomContinuousSupported
No value
h282.NULL
h282.zoomDirection zoomDirection
Unsigned 32-bit integer
h282.T_zoomDirection
h282.zoomMagnificationSupported zoomMagnificationSupported
Unsigned 32-bit integer
h282.MinZoomMagnificationStepSize
h282.zoomPosition zoomPosition
Signed 32-bit integer
h282.ZoomPosition
h282.zoomPositionSupported zoomPositionSupported
Unsigned 32-bit integer
h282.MinZoomPositionSetSize
h283.LCTPDU LCTPDU
No value
h283.LCTPDU
h283.ack ack
No value
h283.NULL
h283.announceReq announceReq
No value
h283.NULL
h283.announceResp announceResp
No value
h283.NULL
h283.data data
Byte array
h283.OCTET_STRING
h283.dataType dataType
Unsigned 32-bit integer
h283.T_dataType
h283.deviceChange deviceChange
No value
h283.NULL
h283.deviceListReq deviceListReq
No value
h283.NULL
h283.deviceListResp deviceListResp
Unsigned 32-bit integer
h283.T_deviceListResp
h283.dstAddr dstAddr
No value
h283.MTAddress
h283.h221NonStandard h221NonStandard
No value
h283.H221NonStandard
h283.lctIndication lctIndication
Unsigned 32-bit integer
h283.LCTIndication
h283.lctMessage lctMessage
Unsigned 32-bit integer
h283.LCTMessage
h283.lctRequest lctRequest
Unsigned 32-bit integer
h283.LCTRequest
h283.lctResponse lctResponse
Unsigned 32-bit integer
h283.LCTResponse
h283.mAddress mAddress
Unsigned 32-bit integer
h283.INTEGER_0_65535
h283.manufacturerCode manufacturerCode
Unsigned 32-bit integer
h283.INTEGER_0_65535
h283.nonStandardIdentifier nonStandardIdentifier
Unsigned 32-bit integer
h283.NonStandardIdentifier
h283.nonStandardMessage nonStandardMessage
No value
h283.NonStandardMessage
h283.nonStandardParameters nonStandardParameters
Unsigned 32-bit integer
h283.SEQUENCE_OF_NonStandardParameter
h283.nonStandardParameters_item Item
No value
h283.NonStandardParameter
h283.object object
h283.OBJECT_IDENTIFIER
h283.pduType pduType
Unsigned 32-bit integer
h283.T_pduType
h283.rdcData rdcData
No value
h283.RDCData
h283.rdcPDU rdcPDU
Unsigned 32-bit integer
h283.T_rdcPDU
h283.reliable reliable
Boolean
h283.BOOLEAN
h283.seqNumber seqNumber
Unsigned 32-bit integer
h283.INTEGER_0_65535
h283.srcAddr srcAddr
No value
h283.MTAddress
h283.t35CountryCode t35CountryCode
Unsigned 32-bit integer
h283.INTEGER_0_255
h283.t35Extension t35Extension
Unsigned 32-bit integer
h283.INTEGER_0_255
h283.tAddress tAddress
Unsigned 32-bit integer
h283.INTEGER_0_65535
h283.timestamp timestamp
Unsigned 32-bit integer
h283.INTEGER_0_4294967295
h323.BackupCallSignalAddresses_item Item
Unsigned 32-bit integer
h323.BackupCallSignalAddresses_item
h323.RasTunnelledSignallingMessage RasTunnelledSignallingMessage
No value
h323.RasTunnelledSignallingMessage
h323.RobustnessData RobustnessData
No value
h323.RobustnessData
h323.alternateTransport alternateTransport
No value
h225.AlternateTransportAddresses
h323.backupCallSignalAddresses backupCallSignalAddresses
Unsigned 32-bit integer
h323.BackupCallSignalAddresses
h323.connectData connectData
No value
h323.Connect_RD
h323.endpointGuid endpointGuid
h323.GloballyUniqueIdentifier
h323.fastStart fastStart
Unsigned 32-bit integer
h323.T_fastStart
h323.fastStart_item Item
Byte array
h323.OCTET_STRING
h323.h245Address h245Address
Unsigned 32-bit integer
h225.TransportAddress
h323.hasSharedRepository hasSharedRepository
No value
h323.NULL
h323.includeFastStart includeFastStart
No value
h323.NULL
h323.irrFrequency irrFrequency
Unsigned 32-bit integer
h323.INTEGER_1_65535
h323.messageContent messageContent
Unsigned 32-bit integer
h323.T_messageContent
h323.messageContent_item Item
Byte array
h323.OCTET_STRING
h323.nonStandardData nonStandardData
No value
h225.NonStandardParameter
h323.rcfData rcfData
No value
h323.Rcf_RD
h323.resetH245 resetH245
No value
h323.NULL
h323.robustnessData robustnessData
Unsigned 32-bit integer
h323.T_robustnessData
h323.rrqData rrqData
No value
h323.Rrq_RD
h323.setupData setupData
No value
h323.Setup_RD
h323.statusData statusData
No value
h323.Status_RD
h323.statusInquiryData statusInquiryData
No value
h323.StatusInquiry_RD
h323.tcp tcp
Unsigned 32-bit integer
h225.TransportAddress
h323.timeToLive timeToLive
Unsigned 32-bit integer
h225.TimeToLive
h323.tunnelledProtocolID tunnelledProtocolID
No value
h225.TunnelledProtocol
h323.tunnellingRequired tunnellingRequired
No value
h323.NULL
h323.versionID versionID
Unsigned 32-bit integer
h323.INTEGER_1_256
ccsrl.ls Last Segment
Unsigned 8-bit integer
Last segment indicator
srp.crc CRC
Unsigned 16-bit integer
CRC
srp.crc_bad Bad CRC
Boolean
srp.header Header
Unsigned 8-bit integer
SRP header octet
srp.seqno Sequence Number
Unsigned 8-bit integer
Sequence Number
h450.ros.argument argument
Byte array
h450_ros.InvokeArgument
h450.ros.errcode errcode
Unsigned 32-bit integer
h450_ros.Code
h450.ros.general general
Signed 32-bit integer
h450_ros.GeneralProblem
h450.ros.global global
h450_ros.T_global
h450.ros.invoke invoke
No value
h450_ros.Invoke
h450.ros.invokeId invokeId
Signed 32-bit integer
h450_ros.T_invokeIdConstrained
h450.ros.linkedId linkedId
Signed 32-bit integer
h450_ros.InvokeId
h450.ros.local local
Signed 32-bit integer
h450_ros.T_local
h450.ros.opcode opcode
Unsigned 32-bit integer
h450_ros.Code
h450.ros.parameter parameter
Byte array
h450_ros.T_parameter
h450.ros.problem problem
Unsigned 32-bit integer
h450_ros.T_problem
h450.ros.reject reject
No value
h450_ros.Reject
h450.ros.result result
No value
h450_ros.T_result
h450.ros.returnError returnError
No value
h450_ros.ReturnError
h450.ros.returnResult returnResult
No value
h450_ros.ReturnResult
h450.10.CfbOvrOptArg CfbOvrOptArg
No value
h450_10.CfbOvrOptArg
h450.10.CoReqOptArg CoReqOptArg
No value
h450_10.CoReqOptArg
h450.10.RUAlertOptArg RUAlertOptArg
No value
h450_10.RUAlertOptArg
h450.10.extension extension
Unsigned 32-bit integer
h450_10.SEQUENCE_SIZE_0_255_OF_MixedExtension
h450.10.extension_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.11.CIFrcRelArg CIFrcRelArg
No value
h450_11.CIFrcRelArg
h450.11.CIFrcRelOptRes CIFrcRelOptRes
No value
h450_11.CIFrcRelOptRes
h450.11.CIGetCIPLOptArg CIGetCIPLOptArg
No value
h450_11.CIGetCIPLOptArg
h450.11.CIGetCIPLRes CIGetCIPLRes
No value
h450_11.CIGetCIPLRes
h450.11.CIIsOptArg CIIsOptArg
No value
h450_11.CIIsOptArg
h450.11.CIIsOptRes CIIsOptRes
No value
h450_11.CIIsOptRes
h450.11.CINotificationArg CINotificationArg
No value
h450_11.CINotificationArg
h450.11.CIRequestArg CIRequestArg
No value
h450_11.CIRequestArg
h450.11.CIRequestRes CIRequestRes
No value
h450_11.CIRequestRes
h450.11.CISilentArg CISilentArg
No value
h450_11.CISilentArg
h450.11.CISilentOptRes CISilentOptRes
No value
h450_11.CISilentOptRes
h450.11.CIWobOptArg CIWobOptArg
No value
h450_11.CIWobOptArg
h450.11.CIWobOptRes CIWobOptRes
No value
h450_11.CIWobOptRes
h450.11.argumentExtension argumentExtension
Unsigned 32-bit integer
h450_11.SEQUENCE_SIZE_0_255_OF_MixedExtension
h450.11.argumentExtension_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.11.callForceReleased callForceReleased
No value
h450_11.NULL
h450.11.callIntruded callIntruded
No value
h450_11.NULL
h450.11.callIntrusionComplete callIntrusionComplete
No value
h450_11.NULL
h450.11.callIntrusionEnd callIntrusionEnd
No value
h450_11.NULL
h450.11.callIntrusionImpending callIntrusionImpending
No value
h450_11.NULL
h450.11.callIsolated callIsolated
No value
h450_11.NULL
h450.11.ciCapabilityLevel ciCapabilityLevel
Unsigned 32-bit integer
h450_11.CICapabilityLevel
h450.11.ciProtectionLevel ciProtectionLevel
Unsigned 32-bit integer
h450_11.CIProtectionLevel
h450.11.ciStatusInformation ciStatusInformation
Unsigned 32-bit integer
h450_11.CIStatusInformation
h450.11.resultExtension resultExtension
Unsigned 32-bit integer
h450_11.SEQUENCE_SIZE_0_255_OF_MixedExtension
h450.11.resultExtension_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.11.silentMonitoringPermitted silentMonitoringPermitted
No value
h450_11.NULL
h450.11.specificCall specificCall
No value
h225.CallIdentifier
h450.12.CmnArg CmnArg
No value
h450_12.CmnArg
h450.12.DummyArg DummyArg
No value
h450_12.DummyArg
h450.12.extension extension
Unsigned 32-bit integer
h450_12.SEQUENCE_SIZE_0_255_OF_MixedExtension
h450.12.extensionArg extensionArg
Unsigned 32-bit integer
h450_12.SEQUENCE_SIZE_0_255_OF_MixedExtension
h450.12.extensionArg_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.12.extension_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.12.featureControl featureControl
No value
h450_12.FeatureControl
h450.12.featureList featureList
No value
h450_12.FeatureList
h450.12.featureValues featureValues
No value
h450_12.FeatureValues
h450.12.partyCategory partyCategory
Unsigned 32-bit integer
h450_12.PartyCategory
h450.12.ssCCBSPossible ssCCBSPossible
No value
h450_12.NULL
h450.12.ssCCNRPossible ssCCNRPossible
No value
h450_12.NULL
h450.12.ssCFreRoutingSupported ssCFreRoutingSupported
No value
h450_12.NULL
h450.12.ssCHDoNotHold ssCHDoNotHold
No value
h450_12.NULL
h450.12.ssCHFarHoldSupported ssCHFarHoldSupported
No value
h450_12.NULL
h450.12.ssCIConferenceSupported ssCIConferenceSupported
No value
h450_12.NULL
h450.12.ssCIForcedReleaseSupported ssCIForcedReleaseSupported
No value
h450_12.NULL
h450.12.ssCIIsolationSupported ssCIIsolationSupported
No value
h450_12.NULL
h450.12.ssCISilentMonitorPermitted ssCISilentMonitorPermitted
No value
h450_12.NULL
h450.12.ssCISilentMonitoringSupported ssCISilentMonitoringSupported
No value
h450_12.NULL
h450.12.ssCIWaitOnBusySupported ssCIWaitOnBusySupported
No value
h450_12.NULL
h450.12.ssCIprotectionLevel ssCIprotectionLevel
Unsigned 32-bit integer
h450_12.SSCIProtectionLevel
h450.12.ssCOSupported ssCOSupported
No value
h450_12.NULL
h450.12.ssCPCallParkSupported ssCPCallParkSupported
No value
h450_12.NULL
h450.12.ssCTDoNotTransfer ssCTDoNotTransfer
No value
h450_12.NULL
h450.12.ssCTreRoutingSupported ssCTreRoutingSupported
No value
h450_12.NULL
h450.12.ssMWICallbackCall ssMWICallbackCall
No value
h450_12.NULL
h450.12.ssMWICallbackSupported ssMWICallbackSupported
No value
h450_12.NULL
h450.2.CTActiveArg CTActiveArg
No value
h450_2.CTActiveArg
h450.2.CTCompleteArg CTCompleteArg
No value
h450_2.CTCompleteArg
h450.2.CTIdentifyRes CTIdentifyRes
No value
h450_2.CTIdentifyRes
h450.2.CTInitiateArg CTInitiateArg
No value
h450_2.CTInitiateArg
h450.2.CTSetupArg CTSetupArg
No value
h450_2.CTSetupArg
h450.2.CTUpdateArg CTUpdateArg
No value
h450_2.CTUpdateArg
h450.2.DummyArg DummyArg
Unsigned 32-bit integer
h450_2.DummyArg
h450.2.DummyRes DummyRes
Unsigned 32-bit integer
h450_2.DummyRes
h450.2.ExtensionSeq_item Item
No value
h450.Extension
h450.2.PAR_unspecified PAR-unspecified
Unsigned 32-bit integer
h450_2.PAR_unspecified
h450.2.SubaddressTransferArg SubaddressTransferArg
No value
h450_2.SubaddressTransferArg
h450.2.argumentExtension argumentExtension
Unsigned 32-bit integer
h450_2.T_cTInitiateArg_argumentExtension
h450.2.basicCallInfoElements basicCallInfoElements
Byte array
h450.H225InformationElement
h450.2.callIdentity callIdentity
String
h450_2.CallIdentity
h450.2.callStatus callStatus
Unsigned 32-bit integer
h450_2.CallStatus
h450.2.connectedAddress connectedAddress
No value
h450.EndpointAddress
h450.2.connectedInfo connectedInfo
String
h450_2.BMPString_SIZE_1_128
h450.2.endDesignation endDesignation
Unsigned 32-bit integer
h450_2.EndDesignation
h450.2.extension extension
No value
h450.Extension
h450.2.extensionSeq extensionSeq
Unsigned 32-bit integer
h450_2.ExtensionSeq
h450.2.nonStandard nonStandard
No value
h225.NonStandardParameter
h450.2.nonStandardData nonStandardData
No value
h225.NonStandardParameter
h450.2.redirectionInfo redirectionInfo
String
h450_2.BMPString_SIZE_1_128
h450.2.redirectionNumber redirectionNumber
No value
h450.EndpointAddress
h450.2.redirectionSubaddress redirectionSubaddress
Unsigned 32-bit integer
h450.PartySubaddress
h450.2.reroutingNumber reroutingNumber
No value
h450.EndpointAddress
h450.2.resultExtension resultExtension
Unsigned 32-bit integer
h450_2.T_resultExtension
h450.2.transferringNumber transferringNumber
No value
h450.EndpointAddress
h450.3.ARG_activateDiversionQ ARG-activateDiversionQ
No value
h450_3.ARG_activateDiversionQ
h450.3.ARG_callRerouting ARG-callRerouting
No value
h450_3.ARG_callRerouting
h450.3.ARG_cfnrDivertedLegFailed ARG-cfnrDivertedLegFailed
Unsigned 32-bit integer
h450_3.ARG_cfnrDivertedLegFailed
h450.3.ARG_checkRestriction ARG-checkRestriction
No value
h450_3.ARG_checkRestriction
h450.3.ARG_deactivateDiversionQ ARG-deactivateDiversionQ
No value
h450_3.ARG_deactivateDiversionQ
h450.3.ARG_divertingLegInformation1 ARG-divertingLegInformation1
No value
h450_3.ARG_divertingLegInformation1
h450.3.ARG_divertingLegInformation2 ARG-divertingLegInformation2
No value
h450_3.ARG_divertingLegInformation2
h450.3.ARG_divertingLegInformation3 ARG-divertingLegInformation3
No value
h450_3.ARG_divertingLegInformation3
h450.3.ARG_divertingLegInformation4 ARG-divertingLegInformation4
No value
h450_3.ARG_divertingLegInformation4
h450.3.ARG_interrogateDiversionQ ARG-interrogateDiversionQ
No value
h450_3.ARG_interrogateDiversionQ
h450.3.ExtensionSeq_item Item
No value
h450.Extension
h450.3.IntResultList IntResultList
Unsigned 32-bit integer
h450_3.IntResultList
h450.3.IntResultList_item Item
No value
h450_3.IntResult
h450.3.PAR_unspecified PAR-unspecified
Unsigned 32-bit integer
h450_3.PAR_unspecified
h450.3.RES_activateDiversionQ RES-activateDiversionQ
Unsigned 32-bit integer
h450_3.RES_activateDiversionQ
h450.3.RES_callRerouting RES-callRerouting
Unsigned 32-bit integer
h450_3.RES_callRerouting
h450.3.RES_checkRestriction RES-checkRestriction
Unsigned 32-bit integer
h450_3.RES_checkRestriction
h450.3.RES_deactivateDiversionQ RES-deactivateDiversionQ
Unsigned 32-bit integer
h450_3.RES_deactivateDiversionQ
h450.3.activatingUserNr activatingUserNr
No value
h450.EndpointAddress
h450.3.basicService basicService
Unsigned 32-bit integer
h450_3.BasicService
h450.3.calledAddress calledAddress
No value
h450.EndpointAddress
h450.3.callingInfo callingInfo
String
h450_3.BMPString_SIZE_1_128
h450.3.callingNr callingNr
No value
h450.EndpointAddress
h450.3.callingNumber callingNumber
No value
h450.EndpointAddress
h450.3.callingPartySubaddress callingPartySubaddress
Unsigned 32-bit integer
h450.PartySubaddress
h450.3.deactivatingUserNr deactivatingUserNr
No value
h450.EndpointAddress
h450.3.diversionCounter diversionCounter
Unsigned 32-bit integer
h450_3.INTEGER_1_15
h450.3.diversionReason diversionReason
Unsigned 32-bit integer
h450_3.DiversionReason
h450.3.divertedToAddress divertedToAddress
No value
h450.EndpointAddress
h450.3.divertedToNr divertedToNr
No value
h450.EndpointAddress
h450.3.divertingNr divertingNr
No value
h450.EndpointAddress
h450.3.extension extension
Unsigned 32-bit integer
h450_3.ActivateDiversionQArg_extension
h450.3.extensionSeq extensionSeq
Unsigned 32-bit integer
h450_3.ExtensionSeq
h450.3.h225InfoElement h225InfoElement
Byte array
h450.H225InformationElement
h450.3.interrogatingUserNr interrogatingUserNr
No value
h450.EndpointAddress
h450.3.lastReroutingNr lastReroutingNr
No value
h450.EndpointAddress
h450.3.nominatedInfo nominatedInfo
String
h450_3.BMPString_SIZE_1_128
h450.3.nominatedNr nominatedNr
No value
h450.EndpointAddress
h450.3.nonStandard nonStandard
No value
h225.NonStandardParameter
h450.3.nonStandardData nonStandardData
No value
h225.NonStandardParameter
h450.3.originalCalledInfo originalCalledInfo
String
h450_3.BMPString_SIZE_1_128
h450.3.originalCalledNr originalCalledNr
No value
h450.EndpointAddress
h450.3.originalDiversionReason originalDiversionReason
Unsigned 32-bit integer
h450_3.DiversionReason
h450.3.originalReroutingReason originalReroutingReason
Unsigned 32-bit integer
h450_3.DiversionReason
h450.3.presentationAllowedIndicator presentationAllowedIndicator
Boolean
h450.PresentationAllowedIndicator
h450.3.procedure procedure
Unsigned 32-bit integer
h450_3.Procedure
h450.3.redirectingInfo redirectingInfo
String
h450_3.BMPString_SIZE_1_128
h450.3.redirectingNr redirectingNr
No value
h450.EndpointAddress
h450.3.redirectionInfo redirectionInfo
String
h450_3.BMPString_SIZE_1_128
h450.3.redirectionNr redirectionNr
No value
h450.EndpointAddress
h450.3.remoteEnabled remoteEnabled
Boolean
h450_3.BOOLEAN
h450.3.reroutingReason reroutingReason
Unsigned 32-bit integer
h450_3.DiversionReason
h450.3.servedUserNr servedUserNr
No value
h450.EndpointAddress
h450.3.subscriptionOption subscriptionOption
Unsigned 32-bit integer
h450_3.SubscriptionOption
h450.4.HoldNotificArg HoldNotificArg
No value
h450_4.HoldNotificArg
h450.4.PAR_undefined PAR-undefined
Unsigned 32-bit integer
h450_4.PAR_undefined
h450.4.PAR_undefined_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.4.RemoteHoldArg RemoteHoldArg
No value
h450_4.RemoteHoldArg
h450.4.RemoteHoldRes RemoteHoldRes
No value
h450_4.RemoteHoldRes
h450.4.RemoteRetrieveArg RemoteRetrieveArg
No value
h450_4.RemoteRetrieveArg
h450.4.RemoteRetrieveRes RemoteRetrieveRes
No value
h450_4.RemoteRetrieveRes
h450.4.RetrieveNotificArg RetrieveNotificArg
No value
h450_4.RetrieveNotificArg
h450.4.extension extension
No value
h450.Extension
h450.4.extensionArg extensionArg
Unsigned 32-bit integer
h450_4.SEQUENCE_SIZE_0_255_OF_MixedExtension
h450.4.extensionArg_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.4.extensionRes extensionRes
Unsigned 32-bit integer
h450_4.SEQUENCE_SIZE_0_255_OF_MixedExtension
h450.4.extensionRes_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.4.nonStandardData nonStandardData
No value
h225.NonStandardParameter
h450.5.CpNotifyArg CpNotifyArg
No value
h450_5.CpNotifyArg
h450.5.CpRequestArg CpRequestArg
No value
h450_5.CpRequestArg
h450.5.CpRequestRes CpRequestRes
No value
h450_5.CpRequestRes
h450.5.CpSetupArg CpSetupArg
No value
h450_5.CpSetupArg
h450.5.CpSetupRes CpSetupRes
No value
h450_5.CpSetupRes
h450.5.CpickupNotifyArg CpickupNotifyArg
No value
h450_5.CpickupNotifyArg
h450.5.GroupIndicationOffArg GroupIndicationOffArg
No value
h450_5.GroupIndicationOffArg
h450.5.GroupIndicationOffRes GroupIndicationOffRes
No value
h450_5.GroupIndicationOffRes
h450.5.GroupIndicationOnArg GroupIndicationOnArg
No value
h450_5.GroupIndicationOnArg
h450.5.GroupIndicationOnRes GroupIndicationOnRes
No value
h450_5.GroupIndicationOnRes
h450.5.PAR_undefined PAR-undefined
Unsigned 32-bit integer
h450_5.PAR_undefined
h450.5.PAR_undefined_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.5.PickExeArg PickExeArg
No value
h450_5.PickExeArg
h450.5.PickExeRes PickExeRes
No value
h450_5.PickExeRes
h450.5.PickrequArg PickrequArg
No value
h450_5.PickrequArg
h450.5.PickrequRes PickrequRes
No value
h450_5.PickrequRes
h450.5.PickupArg PickupArg
No value
h450_5.PickupArg
h450.5.PickupRes PickupRes
No value
h450_5.PickupRes
h450.5.callPickupId callPickupId
No value
h225.CallIdentifier
h450.5.extensionArg extensionArg
Unsigned 32-bit integer
h450_5.SEQUENCE_SIZE_0_255_OF_MixedExtension
h450.5.extensionArg_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.5.extensionRes extensionRes
Unsigned 32-bit integer
h450_5.SEQUENCE_SIZE_0_255_OF_MixedExtension
h450.5.extensionRes_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.5.groupMemberUserNr groupMemberUserNr
No value
h450.EndpointAddress
h450.5.parkCondition parkCondition
Unsigned 32-bit integer
h450_5.ParkCondition
h450.5.parkPosition parkPosition
Unsigned 32-bit integer
h450_5.ParkedToPosition
h450.5.parkedNumber parkedNumber
No value
h450.EndpointAddress
h450.5.parkedToNumber parkedToNumber
No value
h450.EndpointAddress
h450.5.parkedToPosition parkedToPosition
Unsigned 32-bit integer
h450_5.ParkedToPosition
h450.5.parkingNumber parkingNumber
No value
h450.EndpointAddress
h450.5.partyToRetrieve partyToRetrieve
No value
h450.EndpointAddress
h450.5.picking_upNumber picking-upNumber
No value
h450.EndpointAddress
h450.5.retrieveAddress retrieveAddress
No value
h450.EndpointAddress
h450.5.retrieveCallType retrieveCallType
Unsigned 32-bit integer
h450_5.CallType
h450.6.CallWaitingArg CallWaitingArg
No value
h450_6.CallWaitingArg
h450.6.extensionArg extensionArg
Unsigned 32-bit integer
h450_6.SEQUENCE_SIZE_0_255_OF_MixedExtension
h450.6.extensionArg_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.6.nbOfAddWaitingCalls nbOfAddWaitingCalls
Unsigned 32-bit integer
h450_6.INTEGER_0_255
h450.7.DummyRes DummyRes
Unsigned 32-bit integer
h450_7.DummyRes
h450.7.DummyRes_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.7.MWIActivateArg MWIActivateArg
No value
h450_7.MWIActivateArg
h450.7.MWIDeactivateArg MWIDeactivateArg
No value
h450_7.MWIDeactivateArg
h450.7.MWIInterrogateArg MWIInterrogateArg
No value
h450_7.MWIInterrogateArg
h450.7.MWIInterrogateRes MWIInterrogateRes
Unsigned 32-bit integer
h450_7.MWIInterrogateRes
h450.7.MWIInterrogateRes_item Item
No value
h450_7.MWIInterrogateResElt
h450.7.PAR_undefined PAR-undefined
Unsigned 32-bit integer
h450_7.PAR_undefined
h450.7.PAR_undefined_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.7.basicService basicService
Unsigned 32-bit integer
h450_7.BasicService
h450.7.callbackReq callbackReq
Boolean
h450_7.BOOLEAN
h450.7.extensionArg extensionArg
Unsigned 32-bit integer
h450_7.SEQUENCE_SIZE_0_255_OF_MixedExtension
h450.7.extensionArg_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.7.integer integer
Unsigned 32-bit integer
h450_7.INTEGER_0_65535
h450.7.msgCentreId msgCentreId
Unsigned 32-bit integer
h450_7.MsgCentreId
h450.7.nbOfMessages nbOfMessages
Unsigned 32-bit integer
h450_7.NbOfMessages
h450.7.numericString numericString
String
h450_7.NumericString_SIZE_1_10
h450.7.originatingNr originatingNr
No value
h450.EndpointAddress
h450.7.partyNumber partyNumber
No value
h450.EndpointAddress
h450.7.priority priority
Unsigned 32-bit integer
h450_7.INTEGER_0_9
h450.7.servedUserNr servedUserNr
No value
h450.EndpointAddress
h450.7.timestamp timestamp
String
h450_7.TimeStamp
h450.8.ARG_alertingName ARG-alertingName
No value
h450_8.ARG_alertingName
h450.8.ARG_busyName ARG-busyName
No value
h450_8.ARG_busyName
h450.8.ARG_callingName ARG-callingName
No value
h450_8.ARG_callingName
h450.8.ARG_connectedName ARG-connectedName
No value
h450_8.ARG_connectedName
h450.8.extendedName extendedName
String
h450_8.ExtendedName
h450.8.extensionArg extensionArg
Unsigned 32-bit integer
h450_8.SEQUENCE_SIZE_0_255_OF_MixedExtension
h450.8.extensionArg_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.8.name name
Unsigned 32-bit integer
h450_8.Name
h450.8.nameNotAvailable nameNotAvailable
No value
h450_8.NULL
h450.8.namePresentationAllowed namePresentationAllowed
Unsigned 32-bit integer
h450_8.NamePresentationAllowed
h450.8.namePresentationRestricted namePresentationRestricted
Unsigned 32-bit integer
h450_8.NamePresentationRestricted
h450.8.restrictedNull restrictedNull
No value
h450_8.NULL
h450.8.simpleName simpleName
Byte array
h450_8.SimpleName
h450.9.CcArg CcArg
Unsigned 32-bit integer
h450_9.CcArg
h450.9.CcRequestArg CcRequestArg
No value
h450_9.CcRequestArg
h450.9.CcRequestRes CcRequestRes
No value
h450_9.CcRequestRes
h450.9.CcShortArg CcShortArg
No value
h450_9.CcShortArg
h450.9.can_retain_service can-retain-service
Boolean
h450_9.BOOLEAN
h450.9.ccIdentifier ccIdentifier
No value
h225.CallIdentifier
h450.9.extension extension
Unsigned 32-bit integer
h450_9.SEQUENCE_SIZE_0_255_OF_MixedExtension
h450.9.extension_item Item
Unsigned 32-bit integer
h450_4.MixedExtension
h450.9.longArg longArg
No value
h450_9.CcLongArg
h450.9.numberA numberA
No value
h450.EndpointAddress
h450.9.numberB numberB
No value
h450.EndpointAddress
h450.9.retain_service retain-service
Boolean
h450_9.BOOLEAN
h450.9.retain_sig_connection retain-sig-connection
Boolean
h450_9.BOOLEAN
h450.9.service service
Unsigned 32-bit integer
h450_7.BasicService
h450.9.shortArg shortArg
No value
h450_9.CcShortArg
h450.H4501SupplementaryService H4501SupplementaryService
No value
h450.H4501SupplementaryService
h450.anyEntity anyEntity
No value
h450.NULL
h450.clearCallIfAnyInvokePduNotRecognized clearCallIfAnyInvokePduNotRecognized
No value
h450.NULL
h450.destinationAddress destinationAddress
Unsigned 32-bit integer
h450.SEQUENCE_OF_AliasAddress
h450.destinationAddressPresentationIndicator destinationAddressPresentationIndicator
Unsigned 32-bit integer
h225.PresentationIndicator
h450.destinationAddressScreeningIndicator destinationAddressScreeningIndicator
Unsigned 32-bit integer
h225.ScreeningIndicator
h450.destinationAddress_item Item
Unsigned 32-bit integer
h225.AliasAddress
h450.destinationEntity destinationEntity
Unsigned 32-bit integer
h450.EntityType
h450.destinationEntityAddress destinationEntityAddress
Unsigned 32-bit integer
h450.AddressInformation
h450.discardAnyUnrecognizedInvokePdu discardAnyUnrecognizedInvokePdu
No value
h450.NULL
h450.endpoint endpoint
No value
h450.NULL
h450.error Error
Unsigned 8-bit integer
Error
h450.extensionArgument extensionArgument
No value
h450.T_extensionArgument
h450.extensionId extensionId
h450.OBJECT_IDENTIFIER
h450.interpretationApdu interpretationApdu
Unsigned 32-bit integer
h450.InterpretationApdu
h450.networkFacilityExtension networkFacilityExtension
No value
h450.NetworkFacilityExtension
h450.nsapSubaddress nsapSubaddress
Byte array
h450.NSAPSubaddress
h450.numberNotAvailableDueToInterworking numberNotAvailableDueToInterworking
No value
h450.NULL
h450.oddCountIndicator oddCountIndicator
Boolean
h450.BOOLEAN
h450.operation Operation
Unsigned 8-bit integer
Operation
h450.partyNumber partyNumber
Unsigned 32-bit integer
h225.PartyNumber
h450.partySubaddress partySubaddress
Unsigned 32-bit integer
h450.PartySubaddress
h450.presentationAllowedAddress presentationAllowedAddress
No value
h450.AddressScreened
h450.presentationRestricted presentationRestricted
No value
h450.NULL
h450.presentationRestrictedAddress presentationRestrictedAddress
No value
h450.AddressScreened
h450.rejectAnyUnrecognizedInvokePdu rejectAnyUnrecognizedInvokePdu
No value
h450.NULL
h450.remoteExtensionAddress remoteExtensionAddress
Unsigned 32-bit integer
h225.AliasAddress
h450.remoteExtensionAddressPresentationIndicator remoteExtensionAddressPresentationIndicator
Unsigned 32-bit integer
h225.PresentationIndicator
h450.remoteExtensionAddressScreeningIndicator remoteExtensionAddressScreeningIndicator
Unsigned 32-bit integer
h225.ScreeningIndicator
h450.rosApdus rosApdus
Unsigned 32-bit integer
h450.T_rosApdus
h450.rosApdus_item Item
Unsigned 32-bit integer
h450.T_rosApdus_item
h450.screeningIndicator screeningIndicator
Unsigned 32-bit integer
h225.ScreeningIndicator
h450.serviceApdu serviceApdu
Unsigned 32-bit integer
h450.ServiceApdus
h450.sourceEntity sourceEntity
Unsigned 32-bit integer
h450.EntityType
h450.sourceEntityAddress sourceEntityAddress
Unsigned 32-bit integer
h450.AddressInformation
h450.subaddressInformation subaddressInformation
Byte array
h450.SubaddressInformation
h450.userSpecifiedSubaddress userSpecifiedSubaddress
No value
h450.UserSpecifiedSubaddress
h460.10.CallPartyCategoryInfo CallPartyCategoryInfo
No value
h460_10.CallPartyCategoryInfo
h460.10.callPartyCategory callPartyCategory
Unsigned 32-bit integer
h460_10.CallPartyCategory
h460.10.originatingLineInfo originatingLineInfo
Unsigned 32-bit integer
h460_10.OriginatingLineInfo
h460.14.MLPPInfo MLPPInfo
No value
h460_14.MLPPInfo
h460.14.altID altID
Unsigned 32-bit integer
h225.AliasAddress
h460.14.altTimer altTimer
Unsigned 32-bit integer
h460_14.INTEGER_0_255
h460.14.alternateParty alternateParty
No value
h460_14.AlternateParty
h460.14.mlppNotification mlppNotification
Unsigned 32-bit integer
h460_14.MlppNotification
h460.14.mlppReason mlppReason
Unsigned 32-bit integer
h460_14.MlppReason
h460.14.precedence precedence
Unsigned 32-bit integer
h460_14.MlppPrecedence
h460.14.preemptCallID preemptCallID
No value
h225.CallIdentifier
h460.14.preemptionComplete preemptionComplete
No value
h460_14.NULL
h460.14.preemptionEnd preemptionEnd
No value
h460_14.NULL
h460.14.preemptionInProgress preemptionInProgress
No value
h460_14.NULL
h460.14.preemptionPending preemptionPending
No value
h460_14.NULL
h460.14.releaseCall releaseCall
No value
h460_14.ReleaseCall
h460.14.releaseDelay releaseDelay
Unsigned 32-bit integer
h460_14.INTEGER_0_255
h460.14.releaseReason releaseReason
Unsigned 32-bit integer
h460_14.MlppReason
h460.15.SignallingChannelData SignallingChannelData
No value
h460_15.SignallingChannelData
h460.15.channelResumeAddress channelResumeAddress
Unsigned 32-bit integer
h460_15.SEQUENCE_OF_TransportAddress
h460.15.channelResumeAddress_item Item
Unsigned 32-bit integer
h225.TransportAddress
h460.15.channelResumeRequest channelResumeRequest
No value
h460_15.ChannelResumeRequest
h460.15.channelResumeResponse channelResumeResponse
No value
h460_15.ChannelResumeResponse
h460.15.channelSuspendCancel channelSuspendCancel
No value
h460_15.ChannelSuspendCancel
h460.15.channelSuspendConfirm channelSuspendConfirm
No value
h460_15.ChannelSuspendConfirm
h460.15.channelSuspendRequest channelSuspendRequest
No value
h460_15.ChannelSuspendRequest
h460.15.channelSuspendResponse channelSuspendResponse
No value
h460_15.ChannelSuspendResponse
h460.15.immediateResume immediateResume
Boolean
h460_15.BOOLEAN
h460.15.okToSuspend okToSuspend
Boolean
h460_15.BOOLEAN
h460.15.randomNumber randomNumber
Unsigned 32-bit integer
h460_15.INTEGER_0_4294967295
h460.15.resetH245 resetH245
No value
h460_15.NULL
h460.15.signallingChannelData signallingChannelData
Unsigned 32-bit integer
h460_15.T_signallingChannelData
h460.18.IncomingCallIndication IncomingCallIndication
No value
h460_18.IncomingCallIndication
h460.18.LRQKeepAliveData LRQKeepAliveData
No value
h460_18.LRQKeepAliveData
h460.18.callID callID
No value
h225.CallIdentifier
h460.18.callSignallingAddress callSignallingAddress
Unsigned 32-bit integer
h225.TransportAddress
h460.18.lrqKeepAliveInterval lrqKeepAliveInterval
Unsigned 32-bit integer
h225.TimeToLive
h460.19.TraversalParameters TraversalParameters
No value
h460_19.TraversalParameters
h460.19.keepAliveChannel keepAliveChannel
Unsigned 32-bit integer
h245.TransportAddress
h460.19.keepAliveInterval keepAliveInterval
Unsigned 32-bit integer
h225.TimeToLive
h460.19.keepAlivePayloadType keepAlivePayloadType
Unsigned 32-bit integer
h460_19.INTEGER_0_127
h460.19.multiplexID multiplexID
Unsigned 32-bit integer
h460_19.INTEGER_0_4294967295
h460.19.multiplexedMediaChannel multiplexedMediaChannel
Unsigned 32-bit integer
h245.TransportAddress
h460.19.multiplexedMediaControlChannel multiplexedMediaControlChannel
Unsigned 32-bit integer
h245.TransportAddress
h460.2.NumberPortabilityInfo NumberPortabilityInfo
Unsigned 32-bit integer
h460_2.NumberPortabilityInfo
h460.2.addressTranslated addressTranslated
No value
h460_2.NULL
h460.2.aliasAddress aliasAddress
Unsigned 32-bit integer
h225.AliasAddress
h460.2.concatenatedNumber concatenatedNumber
No value
h460_2.NULL
h460.2.nUMBERPORTABILITYDATA nUMBERPORTABILITYDATA
No value
h460_2.T_nUMBERPORTABILITYDATA
h460.2.numberPortabilityRejectReason numberPortabilityRejectReason
Unsigned 32-bit integer
h460_2.NumberPortabilityRejectReason
h460.2.portabilityTypeOfNumber portabilityTypeOfNumber
Unsigned 32-bit integer
h460_2.PortabilityTypeOfNumber
h460.2.portedAddress portedAddress
No value
h460_2.PortabilityAddress
h460.2.portedNumber portedNumber
No value
h460_2.NULL
h460.2.privateTypeOfNumber privateTypeOfNumber
Unsigned 32-bit integer
h225.PrivateTypeOfNumber
h460.2.publicTypeOfNumber publicTypeOfNumber
Unsigned 32-bit integer
h225.PublicTypeOfNumber
h460.2.qorPortedNumber qorPortedNumber
No value
h460_2.NULL
h460.2.regionalData regionalData
Byte array
h460_2.OCTET_STRING
h460.2.regionalParams regionalParams
No value
h460_2.RegionalParameters
h460.2.routingAddress routingAddress
No value
h460_2.PortabilityAddress
h460.2.routingNumber routingNumber
No value
h460_2.NULL
h460.2.t35CountryCode t35CountryCode
Unsigned 32-bit integer
h460_2.INTEGER_0_255
h460.2.t35Extension t35Extension
Unsigned 32-bit integer
h460_2.INTEGER_0_255
h460.2.typeOfAddress typeOfAddress
Unsigned 32-bit integer
h460_2.NumberPortabilityTypeOfNumber
h460.2.unspecified unspecified
No value
h460_2.NULL
h460.2.variantIdentifier variantIdentifier
Unsigned 32-bit integer
h460_2.INTEGER_1_255
h460.21.CapabilityAdvertisement CapabilityAdvertisement
No value
h460_21.CapabilityAdvertisement
h460.21.MessageBroadcastGroups_item Item
No value
h460_21.GroupAttributes
h460.21.alertUser alertUser
Boolean
h460_21.BOOLEAN
h460.21.capabilities capabilities
Unsigned 32-bit integer
h460_21.SEQUENCE_SIZE_1_256_OF_Capability
h460.21.capabilities_item Item
Unsigned 32-bit integer
h245.Capability
h460.21.capability capability
Unsigned 32-bit integer
h245.Capability
h460.21.groupAddress groupAddress
Unsigned 32-bit integer
h245.MulticastAddress
h460.21.groupIdentifer groupIdentifer
h460_21.GloballyUniqueID
h460.21.maxGroups maxGroups
Unsigned 32-bit integer
h460_21.INTEGER_1_65535
h460.21.priority priority
Unsigned 32-bit integer
h460_21.INTEGER_0_255
h460.21.receiveCapabilities receiveCapabilities
No value
h460_21.ReceiveCapabilities
h460.21.sourceAddress sourceAddress
Unsigned 32-bit integer
h245.UnicastAddress
h460.21.transmitCapabilities transmitCapabilities
Unsigned 32-bit integer
h460_21.SEQUENCE_SIZE_1_256_OF_TransmitCapabilities
h460.21.transmitCapabilities_item Item
No value
h460_21.TransmitCapabilities
h460.3.CircuitStatus CircuitStatus
No value
h460_3.CircuitStatus
h460.3.baseCircuitID baseCircuitID
No value
h225.CircuitIdentifier
h460.3.busyStatus busyStatus
No value
h460_3.NULL
h460.3.circuitStatusMap circuitStatusMap
Unsigned 32-bit integer
h460_3.SEQUENCE_OF_CircuitStatusMap
h460.3.circuitStatusMap_item Item
No value
h460_3.CircuitStatusMap
h460.3.range range
Unsigned 32-bit integer
h460_3.INTEGER_0_4095
h460.3.serviceStatus serviceStatus
No value
h460_3.NULL
h460.3.status status
Byte array
h460_3.OCTET_STRING
h460.3.statusType statusType
Unsigned 32-bit integer
h460_3.CircuitStatusType
h460.4.CallPriorityInfo CallPriorityInfo
No value
h460_4.CallPriorityInfo
h460.4.CountryInternationalNetworkCallOriginationIdentification CountryInternationalNetworkCallOriginationIdentification
No value
h460_4.CountryInternationalNetworkCallOriginationIdentification
h460.4.countryCode countryCode
String
h460_4.X121CountryCode
h460.4.cryptoTokens cryptoTokens
Unsigned 32-bit integer
h460_4.SEQUENCE_OF_CryptoToken
h460.4.cryptoTokens_item Item
Unsigned 32-bit integer
h235.CryptoToken
h460.4.e164 e164
No value
h460_4.T_e164
h460.4.emergencyAuthorized emergencyAuthorized
No value
h460_4.NULL
h460.4.emergencyPublic emergencyPublic
No value
h460_4.NULL
h460.4.high high
No value
h460_4.NULL
h460.4.identificationCode identificationCode
String
h460_4.T_identificationCode
h460.4.normal normal
No value
h460_4.NULL
h460.4.numberingPlan numberingPlan
Unsigned 32-bit integer
h460_4.T_numberingPlan
h460.4.priorityExtension priorityExtension
Unsigned 32-bit integer
h460_4.INTEGER_0_255
h460.4.priorityUnauthorized priorityUnauthorized
No value
h460_4.NULL
h460.4.priorityUnavailable priorityUnavailable
No value
h460_4.NULL
h460.4.priorityValue priorityValue
Unsigned 32-bit integer
h460_4.T_priorityValue
h460.4.priorityValueUnknown priorityValueUnknown
No value
h460_4.NULL
h460.4.rejectReason rejectReason
Unsigned 32-bit integer
h460_4.T_rejectReason
h460.4.tokens tokens
Unsigned 32-bit integer
h460_4.SEQUENCE_OF_ClearToken
h460.4.tokens_item Item
No value
h235.ClearToken
h460.4.x121 x121
No value
h460_4.T_x121
h460.9.ExtendedRTPMetrics ExtendedRTPMetrics
No value
h460_9.ExtendedRTPMetrics
h460.9.QosMonitoringReportData QosMonitoringReportData
Unsigned 32-bit integer
h460_9.QosMonitoringReportData
h460.9.adaptive adaptive
No value
h460_9.NULL
h460.9.burstDuration burstDuration
Unsigned 32-bit integer
h460_9.INTEGER_0_65535
h460.9.burstLossDensity burstLossDensity
Unsigned 32-bit integer
h460_9.INTEGER_0_255
h460.9.burstMetrics burstMetrics
No value
h460_9.BurstMetrics
h460.9.callIdentifier callIdentifier
No value
h225.CallIdentifier
h460.9.callReferenceValue callReferenceValue
Unsigned 32-bit integer
h225.CallReferenceValue
h460.9.conferenceID conferenceID
h225.ConferenceIdentifier
h460.9.cumulativeNumberOfPacketsLost cumulativeNumberOfPacketsLost
Unsigned 32-bit integer
h460_9.INTEGER_0_4294967295
h460.9.disabled disabled
No value
h460_9.NULL
h460.9.endSystemDelay endSystemDelay
Unsigned 32-bit integer
h460_9.INTEGER_0_65535
h460.9.enhanced enhanced
No value
h460_9.NULL
h460.9.estimatedMOSCQ estimatedMOSCQ
Unsigned 32-bit integer
h460_9.INTEGER_10_50
h460.9.estimatedMOSLQ estimatedMOSLQ
Unsigned 32-bit integer
h460_9.INTEGER_10_50
h460.9.estimatedThroughput estimatedThroughput
Unsigned 32-bit integer
h225.BandWidth
h460.9.extRFactor extRFactor
Unsigned 32-bit integer
h460_9.INTEGER_0_100
h460.9.extensionContent extensionContent
Byte array
h460_9.OCTET_STRING
h460.9.extensionId extensionId
Unsigned 32-bit integer
h225.GenericIdentifier
h460.9.extensions extensions
Unsigned 32-bit integer
h460_9.SEQUENCE_OF_Extension
h460.9.extensions_item Item
No value
h460_9.Extension
h460.9.final final
No value
h460_9.FinalQosMonReport
h460.9.fractionLostRate fractionLostRate
Unsigned 32-bit integer
h460_9.INTEGER_0_65535
h460.9.gapDuration gapDuration
Unsigned 32-bit integer
h460_9.INTEGER_0_65535
h460.9.gapLossDensity gapLossDensity
Unsigned 32-bit integer
h460_9.INTEGER_0_255
h460.9.gmin gmin
Unsigned 32-bit integer
h460_9.INTEGER_0_255
h460.9.interGK interGK
No value
h460_9.InterGKQosMonReport
h460.9.jitterBufferAbsoluteMax jitterBufferAbsoluteMax
Unsigned 32-bit integer
h460_9.INTEGER_0_65535
h460.9.jitterBufferAdaptRate jitterBufferAdaptRate
Unsigned 32-bit integer
h460_9.INTEGER_0_15
h460.9.jitterBufferDiscardRate jitterBufferDiscardRate
Unsigned 32-bit integer
h460_9.INTEGER_0_255
h460.9.jitterBufferMaxSize jitterBufferMaxSize
Unsigned 32-bit integer
h460_9.INTEGER_0_65535
h460.9.jitterBufferNominalSize jitterBufferNominalSize
Unsigned 32-bit integer
h460_9.INTEGER_0_65535
h460.9.jitterBufferParms jitterBufferParms
No value
h460_9.JitterBufferParms
h460.9.jitterBufferType jitterBufferType
Unsigned 32-bit integer
h460_9.JitterBufferTypes
h460.9.meanEstimatedEnd2EndDelay meanEstimatedEnd2EndDelay
Unsigned 32-bit integer
h460_9.EstimatedEnd2EndDelay
h460.9.meanJitter meanJitter
Unsigned 32-bit integer
h460_9.CalculatedJitter
h460.9.mediaChannelsQoS mediaChannelsQoS
Unsigned 32-bit integer
h460_9.SEQUENCE_OF_RTCPMeasures
h460.9.mediaChannelsQoS_item Item
No value
h460_9.RTCPMeasures
h460.9.mediaInfo mediaInfo
Unsigned 32-bit integer
h460_9.SEQUENCE_OF_RTCPMeasures
h460.9.mediaInfo_item Item
No value
h460_9.RTCPMeasures
h460.9.mediaReceiverMeasures mediaReceiverMeasures
No value
h460_9.T_mediaReceiverMeasures
h460.9.mediaSenderMeasures mediaSenderMeasures
No value
h460_9.T_mediaSenderMeasures
h460.9.networkPacketLossRate networkPacketLossRate
Unsigned 32-bit integer
h460_9.INTEGER_0_255
h460.9.noiseLevel noiseLevel
Signed 32-bit integer
h460_9.INTEGER_M127_0
h460.9.nonStandardData nonStandardData
No value
h225.NonStandardParameter
h460.9.nonadaptive nonadaptive
No value
h460_9.NULL
h460.9.packetLostRate packetLostRate
Unsigned 32-bit integer
h460_9.INTEGER_0_65535
h460.9.perCallInfo perCallInfo
Unsigned 32-bit integer
h460_9.SEQUENCE_OF_PerCallQoSReport
h460.9.perCallInfo_item Item
No value
h460_9.PerCallQoSReport
h460.9.periodic periodic
No value
h460_9.PeriodicQoSMonReport
h460.9.plcType plcType
Unsigned 32-bit integer
h460_9.PLCtypes
h460.9.rFactor rFactor
Unsigned 32-bit integer
h460_9.INTEGER_0_100
h460.9.reserved reserved
No value
h460_9.NULL
h460.9.residualEchoReturnLoss residualEchoReturnLoss
Unsigned 32-bit integer
h460_9.INTEGER_0_127
h460.9.rtcpAddress rtcpAddress
No value
h225.TransportChannelInfo
h460.9.rtcpRoundTripDelay rtcpRoundTripDelay
Unsigned 32-bit integer
h460_9.INTEGER_0_65535
h460.9.rtpAddress rtpAddress
No value
h225.TransportChannelInfo
h460.9.sessionId sessionId
Unsigned 32-bit integer
h460_9.INTEGER_1_255
h460.9.signalLevel signalLevel
Signed 32-bit integer
h460_9.INTEGER_M127_10
h460.9.standard standard
No value
h460_9.NULL
h460.9.unknown unknown
No value
h460_9.NULL
h460.9.unspecified unspecified
No value
h460_9.NULL
h460.9.worstEstimatedEnd2EndDelay worstEstimatedEnd2EndDelay
Unsigned 32-bit integer
h460_9.EstimatedEnd2EndDelay
h460.9.worstJitter worstJitter
Unsigned 32-bit integer
h460_9.CalculatedJitter
h501.Message Message
No value
h501.Message
h501.accessConfirmation accessConfirmation
No value
h501.AccessConfirmation
h501.accessRejection accessRejection
No value
h501.AccessRejection
h501.accessRequest accessRequest
No value
h501.AccessRequest
h501.accessToken accessToken
Unsigned 32-bit integer
h501.SEQUENCE_OF_AccessToken
h501.accessToken_item Item
Unsigned 32-bit integer
h501.AccessToken
h501.accessTokens accessTokens
Unsigned 32-bit integer
h501.SEQUENCE_OF_AccessToken
h501.accessTokens_item Item
Unsigned 32-bit integer
h501.AccessToken
h501.added added
No value
h501.NULL
h501.algorithmOIDs algorithmOIDs
Unsigned 32-bit integer
h501.T_algorithmOIDs
h501.algorithmOIDs_item Item
h501.OBJECT_IDENTIFIER
h501.aliasesInconsistent aliasesInconsistent
No value
h501.NULL
h501.alternateIsPermanent alternateIsPermanent
Boolean
h501.BOOLEAN
h501.alternatePE alternatePE
Unsigned 32-bit integer
h501.SEQUENCE_OF_AlternatePE
h501.alternatePE_item Item
No value
h501.AlternatePE
h501.alternates alternates
No value
h501.AlternatePEInfo
h501.amount amount
Unsigned 32-bit integer
h501.INTEGER_0_4294967295
h501.annexGversion annexGversion
h501.ProtocolVersion
h501.applicationMessage applicationMessage
Byte array
h501.ApplicationMessage
h501.authentication authentication
Unsigned 32-bit integer
h235.AuthenticationMechanism
h501.authenticationConfirmation authenticationConfirmation
No value
h501.AuthenticationConfirmation
h501.authenticationRejection authenticationRejection
No value
h501.AuthenticationRejection
h501.authenticationRequest authenticationRequest
No value
h501.AuthenticationRequest
h501.body body
Unsigned 32-bit integer
h501.MessageBody
h501.bytes bytes
No value
h501.NULL
h501.callEnded callEnded
No value
h501.NULL
h501.callIdentifier callIdentifier
No value
h225.CallIdentifier
h501.callInProgress callInProgress
No value
h501.NULL
h501.callInfo callInfo
No value
h501.CallInformation
h501.callSpecific callSpecific
Boolean
h501.BOOLEAN
h501.cannotSupportUsageSpec cannotSupportUsageSpec
No value
h501.NULL
h501.causeIE causeIE
Unsigned 32-bit integer
h501.INTEGER_1_65535
h501.changed changed
No value
h501.NULL
h501.circuitID circuitID
No value
h225.CircuitInfo
h501.common common
No value
h501.MessageCommonInfo
h501.conferenceID conferenceID
h225.ConferenceIdentifier
h501.contactAddress contactAddress
Unsigned 32-bit integer
h225.AliasAddress
h501.contacts contacts
Unsigned 32-bit integer
h501.SEQUENCE_OF_ContactInformation
h501.contacts_item Item
No value
h501.ContactInformation
h501.continue continue
No value
h501.NULL
h501.cryptoToken cryptoToken
Unsigned 32-bit integer
h225.CryptoH323Token
h501.cryptoTokens cryptoTokens
Unsigned 32-bit integer
h501.SEQUENCE_OF_CryptoH323Token
h501.cryptoTokens_item Item
Unsigned 32-bit integer
h225.CryptoH323Token
h501.currency currency
String
h501.IA5String_SIZE_3
h501.currencyScale currencyScale
Signed 32-bit integer
h501.INTEGER_M127_127
h501.delay delay
Unsigned 32-bit integer
h501.INTEGER_1_65535
h501.deleted deleted
No value
h501.NULL
h501.descriptor descriptor
Unsigned 32-bit integer
h501.SEQUENCE_OF_Descriptor
h501.descriptorConfirmation descriptorConfirmation
No value
h501.DescriptorConfirmation
h501.descriptorID descriptorID
Unsigned 32-bit integer
h501.SEQUENCE_OF_DescriptorID
h501.descriptorIDConfirmation descriptorIDConfirmation
No value
h501.DescriptorIDConfirmation
h501.descriptorIDRejection descriptorIDRejection
No value
h501.DescriptorIDRejection
h501.descriptorIDRequest descriptorIDRequest
No value
h501.DescriptorIDRequest
h501.descriptorID_item Item
h501.DescriptorID
h501.descriptorInfo descriptorInfo
Unsigned 32-bit integer
h501.SEQUENCE_OF_DescriptorInfo
h501.descriptorInfo_item Item
No value
h501.DescriptorInfo
h501.descriptorRejection descriptorRejection
No value
h501.DescriptorRejection
h501.descriptorRequest descriptorRequest
No value
h501.DescriptorRequest
h501.descriptorUpdate descriptorUpdate
No value
h501.DescriptorUpdate
h501.descriptorUpdateAck descriptorUpdateAck
No value
h501.DescriptorUpdateAck
h501.descriptor_item Item
No value
h501.Descriptor
h501.desiredProtocols desiredProtocols
Unsigned 32-bit integer
h501.SEQUENCE_OF_SupportedProtocols
h501.desiredProtocols_item Item
Unsigned 32-bit integer
h225.SupportedProtocols
h501.destAddress destAddress
No value
h501.PartyInformation
h501.destination destination
No value
h501.NULL
h501.destinationInfo destinationInfo
No value
h501.PartyInformation
h501.destinationUnavailable destinationUnavailable
No value
h501.NULL
h501.domainIdentifier domainIdentifier
Unsigned 32-bit integer
h225.AliasAddress
h501.elementIdentifier elementIdentifier
String
h501.ElementIdentifier
h501.end end
No value
h501.NULL
h501.endOfRange endOfRange
Unsigned 32-bit integer
h225.PartyNumber
h501.endTime endTime
Date/Time stamp
h235.TimeStamp
h501.endpointType endpointType
No value
h225.EndpointType
h501.expired expired
No value
h501.NULL
h501.failures failures
No value
h501.NULL
h501.featureSet featureSet
No value
h225.FeatureSet
h501.gatekeeperID gatekeeperID
String
h225.GatekeeperIdentifier
h501.genericData genericData
Unsigned 32-bit integer
h501.SEQUENCE_OF_GenericData
h501.genericDataReason genericDataReason
No value
h501.NULL
h501.genericData_item Item
No value
h225.GenericData
h501.hopCount hopCount
Unsigned 32-bit integer
h501.INTEGER_1_255
h501.hopCountExceeded hopCountExceeded
No value
h501.NULL
h501.hoursFrom hoursFrom
String
h501.IA5String_SIZE_6
h501.hoursUntil hoursUntil
String
h501.IA5String_SIZE_6
h501.id id
h501.OBJECT_IDENTIFIER
h501.illegalID illegalID
No value
h501.NULL
h501.incomplete incomplete
No value
h501.NULL
h501.incompleteAddress incompleteAddress
No value
h501.NULL
h501.initial initial
No value
h501.NULL
h501.integrity integrity
Unsigned 32-bit integer
h225.IntegrityMechanism
h501.integrityCheckValue integrityCheckValue
No value
h225.ICV
h501.invalidCall invalidCall
No value
h501.NULL
h501.lastChanged lastChanged
String
h501.GlobalTimeStamp
h501.logicalAddresses logicalAddresses
Unsigned 32-bit integer
h501.SEQUENCE_OF_AliasAddress
h501.logicalAddresses_item Item
Unsigned 32-bit integer
h225.AliasAddress
h501.maintenance maintenance
No value
h501.NULL
h501.maximum maximum
No value
h501.NULL
h501.messageType messageType
Unsigned 32-bit integer
h501.T_messageType
h501.minimum minimum
No value
h501.NULL
h501.missingDestInfo missingDestInfo
No value
h501.NULL
h501.missingSourceInfo missingSourceInfo
No value
h501.NULL
h501.multipleCalls multipleCalls
Boolean
h501.BOOLEAN
h501.needCallInformation needCallInformation
No value
h501.NULL
h501.neededFeature neededFeature
No value
h501.NULL
h501.never never
No value
h501.NULL
h501.noDescriptors noDescriptors
No value
h501.NULL
h501.noMatch noMatch
No value
h501.NULL
h501.noServiceRelationship noServiceRelationship
No value
h501.NULL
h501.nonExistent nonExistent
No value
h501.NULL
h501.nonStandard nonStandard
Unsigned 32-bit integer
h501.SEQUENCE_OF_NonStandardParameter
h501.nonStandardConfirmation nonStandardConfirmation
No value
h501.NonStandardConfirmation
h501.nonStandardData nonStandardData
No value
h225.NonStandardParameter
h501.nonStandardRejection nonStandardRejection
No value
h501.NonStandardRejection
h501.nonStandardRequest nonStandardRequest
No value
h501.NonStandardRequest
h501.nonStandard_item Item
No value
h225.NonStandardParameter
h501.notSupported notSupported
No value
h501.NULL
h501.notUnderstood notUnderstood
No value
h501.NULL
h501.originator originator
No value
h501.NULL
h501.outOfService outOfService
No value
h501.NULL
h501.packetSizeExceeded packetSizeExceeded
No value
h501.NULL
h501.packets packets
No value
h501.NULL
h501.partialResponse partialResponse
Boolean
h501.BOOLEAN
h501.pattern pattern
Unsigned 32-bit integer
h501.SEQUENCE_OF_Pattern
h501.pattern_item Item
Unsigned 32-bit integer
h501.Pattern
h501.period period
Unsigned 32-bit integer
h501.INTEGER_1_65535
h501.preConnect preConnect
No value
h501.NULL
h501.preferred preferred
Unsigned 32-bit integer
h501.T_preferred
h501.preferred_item Item
h501.OBJECT_IDENTIFIER
h501.priceElement priceElement
Unsigned 32-bit integer
h501.SEQUENCE_OF_PriceElement
h501.priceElement_item Item
No value
h501.PriceElement
h501.priceFormula priceFormula
String
h501.IA5String_SIZE_1_2048
h501.priceInfo priceInfo
Unsigned 32-bit integer
h501.SEQUENCE_OF_PriceInfoSpec
h501.priceInfo_item Item
No value
h501.PriceInfoSpec
h501.priority priority
Unsigned 32-bit integer
h501.INTEGER_0_127
h501.quantum quantum
Unsigned 32-bit integer
h501.INTEGER_0_4294967295
h501.range range
No value
h501.T_range
h501.reason reason
Unsigned 32-bit integer
h501.ServiceRejectionReason
h501.registrationLost registrationLost
No value
h501.NULL
h501.releaseCompleteReason releaseCompleteReason
Unsigned 32-bit integer
h225.ReleaseCompleteReason
h501.replyAddress replyAddress
Unsigned 32-bit integer
h501.SEQUENCE_OF_TransportAddress
h501.replyAddress_item Item
Unsigned 32-bit integer
h225.TransportAddress
h501.requestInProgress requestInProgress
No value
h501.RequestInProgress
h501.required required
Unsigned 32-bit integer
h501.T_required
h501.required_item Item
h501.OBJECT_IDENTIFIER
h501.resourceUnavailable resourceUnavailable
No value
h501.NULL
h501.routeInfo routeInfo
Unsigned 32-bit integer
h501.SEQUENCE_OF_RouteInformation
h501.routeInfo_item Item
No value
h501.RouteInformation
h501.seconds seconds
No value
h501.NULL
h501.security security
No value
h501.NULL
h501.securityIntegrityFailed securityIntegrityFailed
No value
h501.NULL
h501.securityMode securityMode
Unsigned 32-bit integer
h501.SEQUENCE_OF_SecurityMode
h501.securityMode_item Item
No value
h501.SecurityMode
h501.securityReplay securityReplay
No value
h501.NULL
h501.securityWrongGeneralID securityWrongGeneralID
No value
h501.NULL
h501.securityWrongOID securityWrongOID
No value
h501.NULL
h501.securityWrongSendersID securityWrongSendersID
No value
h501.NULL
h501.securityWrongSyncTime securityWrongSyncTime
No value
h501.NULL
h501.security_item Item
No value
h501.SecurityMode
h501.sendAccessRequest sendAccessRequest
No value
h501.NULL
h501.sendSetup sendSetup
No value
h501.NULL
h501.sendTo sendTo
String
h501.ElementIdentifier
h501.sendToPEAddress sendToPEAddress
Unsigned 32-bit integer
h225.AliasAddress
h501.sender sender
Unsigned 32-bit integer
h225.AliasAddress
h501.senderRole senderRole
Unsigned 32-bit integer
h501.Role
h501.sequenceNumber sequenceNumber
Unsigned 32-bit integer
h501.INTEGER_0_65535
h501.serviceConfirmation serviceConfirmation
No value
h501.ServiceConfirmation
h501.serviceControl serviceControl
Unsigned 32-bit integer
h501.SEQUENCE_OF_ServiceControlSession
h501.serviceControl_item Item
No value
h225.ServiceControlSession
h501.serviceID serviceID
h501.ServiceID
h501.serviceRedirected serviceRedirected
No value
h501.NULL
h501.serviceRejection serviceRejection
No value
h501.ServiceRejection
h501.serviceRelease serviceRelease
No value
h501.ServiceRelease
h501.serviceRequest serviceRequest
No value
h501.ServiceRequest
h501.serviceUnavailable serviceUnavailable
No value
h501.NULL
h501.sourceInfo sourceInfo
No value
h501.PartyInformation
h501.specific specific
Unsigned 32-bit integer
h225.AliasAddress
h501.srcInfo srcInfo
No value
h501.PartyInformation
h501.start start
No value
h501.NULL
h501.startOfRange startOfRange
Unsigned 32-bit integer
h225.PartyNumber
h501.startTime startTime
Date/Time stamp
h235.TimeStamp
h501.supportedCircuits supportedCircuits
Unsigned 32-bit integer
h501.SEQUENCE_OF_CircuitIdentifier
h501.supportedCircuits_item Item
No value
h225.CircuitIdentifier
h501.supportedProtocols supportedProtocols
Unsigned 32-bit integer
h501.SEQUENCE_OF_SupportedProtocols
h501.supportedProtocols_item Item
Unsigned 32-bit integer
h225.SupportedProtocols
h501.templates templates
Unsigned 32-bit integer
h501.SEQUENCE_OF_AddressTemplate
h501.templates_item Item
No value
h501.AddressTemplate
h501.terminated terminated
No value
h501.NULL
h501.terminationCause terminationCause
No value
h501.TerminationCause
h501.timeToLive timeToLive
Unsigned 32-bit integer
h501.INTEGER_1_4294967295
h501.timeZone timeZone
Signed 32-bit integer
h501.TimeZone
h501.token token
No value
h235.ClearToken
h501.tokenNotValid tokenNotValid
No value
h501.NULL
h501.tokens tokens
Unsigned 32-bit integer
h501.SEQUENCE_OF_ClearToken
h501.tokens_item Item
No value
h235.ClearToken
h501.transportAddress transportAddress
Unsigned 32-bit integer
h225.AliasAddress
h501.transportQoS transportQoS
Unsigned 32-bit integer
h225.TransportQOS
h501.type type
No value
h225.EndpointType
h501.unavailable unavailable
No value
h501.NULL
h501.undefined undefined
No value
h501.NULL
h501.units units
Unsigned 32-bit integer
h501.T_units
h501.unknownCall unknownCall
No value
h501.NULL
h501.unknownMessage unknownMessage
Byte array
h501.OCTET_STRING
h501.unknownMessageResponse unknownMessageResponse
No value
h501.UnknownMessageResponse
h501.unknownServiceID unknownServiceID
No value
h501.NULL
h501.unknownUsageSendTo unknownUsageSendTo
No value
h501.NULL
h501.updateInfo updateInfo
Unsigned 32-bit integer
h501.SEQUENCE_OF_UpdateInformation
h501.updateInfo_item Item
No value
h501.UpdateInformation
h501.updateType updateType
Unsigned 32-bit integer
h501.T_updateType
h501.usageCallStatus usageCallStatus
Unsigned 32-bit integer
h501.UsageCallStatus
h501.usageConfirmation usageConfirmation
No value
h501.UsageConfirmation
h501.usageFields usageFields
Unsigned 32-bit integer
h501.SEQUENCE_OF_UsageField
h501.usageFields_item Item
No value
h501.UsageField
h501.usageIndication usageIndication
No value
h501.UsageIndication
h501.usageIndicationConfirmation usageIndicationConfirmation
No value
h501.UsageIndicationConfirmation
h501.usageIndicationRejection usageIndicationRejection
No value
h501.UsageIndicationRejection
h501.usageRejection usageRejection
No value
h501.UsageRejection
h501.usageRequest usageRequest
No value
h501.UsageRequest
h501.usageSpec usageSpec
No value
h501.UsageSpecification
h501.usageUnavailable usageUnavailable
No value
h501.NULL
h501.userAuthenticator userAuthenticator
Unsigned 32-bit integer
h501.SEQUENCE_OF_CryptoH323Token
h501.userAuthenticator_item Item
Unsigned 32-bit integer
h225.CryptoH323Token
h501.userIdentifier userIdentifier
Unsigned 32-bit integer
h225.AliasAddress
h501.userInfo userInfo
No value
h501.UserInformation
h501.validFrom validFrom
String
h501.GlobalTimeStamp
h501.validUntil validUntil
String
h501.GlobalTimeStamp
h501.validationConfirmation validationConfirmation
No value
h501.ValidationConfirmation
h501.validationRejection validationRejection
No value
h501.ValidationRejection
h501.validationRequest validationRequest
No value
h501.ValidationRequest
h501.value value
Byte array
h501.OCTET_STRING
h501.version version
h501.ProtocolVersion
h501.when when
No value
h501.T_when
h501.wildcard wildcard
Unsigned 32-bit integer
h225.AliasAddress
h235.SrtpCryptoCapability SrtpCryptoCapability
Unsigned 32-bit integer
h235.SrtpCryptoCapability
h235.SrtpCryptoCapability_item Item
No value
h235.SrtpCryptoInfo
h235.SrtpKeys_item Item
No value
h235.SrtpKeyParameters
h235.algorithmOID algorithmOID
h235.OBJECT_IDENTIFIER
h235.allowMKI allowMKI
Boolean
h235.BOOLEAN
h235.authenticationBES authenticationBES
Unsigned 32-bit integer
h235.AuthenticationBES
h235.base base
No value
h235.ECpoint
h235.bits bits
Byte array
h235.BIT_STRING
h235.certProtectedKey certProtectedKey
No value
h235.SIGNED
h235.certSign certSign
No value
h235.NULL
h235.certificate certificate
Byte array
h235.OCTET_STRING
h235.challenge challenge
Byte array
h235.ChallengeString
h235.clearSalt clearSalt
Byte array
h235.OCTET_STRING
h235.clearSaltingKey clearSaltingKey
Byte array
h235.OCTET_STRING
h235.cryptoEncryptedToken cryptoEncryptedToken
No value
h235.T_cryptoEncryptedToken
h235.cryptoHashedToken cryptoHashedToken
No value
h235.T_cryptoHashedToken
h235.cryptoPwdEncr cryptoPwdEncr
No value
h235.ENCRYPTED
h235.cryptoSignedToken cryptoSignedToken
No value
h235.T_cryptoSignedToken
h235.cryptoSuite cryptoSuite
h235.OBJECT_IDENTIFIER
h235.data data
Unsigned 32-bit integer
h235.OCTET_STRING
h235.default default
No value
h235.NULL
h235.dhExch dhExch
No value
h235.NULL
h235.dhkey dhkey
No value
h235.DHset
h235.eckasdh2 eckasdh2
No value
h235.T_eckasdh2
h235.eckasdhkey eckasdhkey
Unsigned 32-bit integer
h235.ECKASDH
h235.eckasdhp eckasdhp
No value
h235.T_eckasdhp
h235.element element
Unsigned 32-bit integer
h235.Element
h235.elementID elementID
Unsigned 32-bit integer
h235.INTEGER_0_255
h235.encrptval encrptval
No value
h235.ENCRYPTED
h235.encryptedData encryptedData
Byte array
h235.OCTET_STRING
h235.encryptedSaltingKey encryptedSaltingKey
Byte array
h235.OCTET_STRING
h235.encryptedSessionKey encryptedSessionKey
Byte array
h235.OCTET_STRING
h235.fecAfterSrtp fecAfterSrtp
No value
h235.NULL
h235.fecBeforeSrtp fecBeforeSrtp
No value
h235.NULL
h235.fecOrder fecOrder
No value
h235.FecOrder
h235.fieldSize fieldSize
Byte array
h235.BIT_STRING_SIZE_0_511
h235.flag flag
Boolean
h235.BOOLEAN
h235.generalID generalID
String
h235.Identifier
h235.generalId generalId
String
h235.Identifier
h235.generator generator
Byte array
h235.BIT_STRING_SIZE_0_2048
h235.genericKeyMaterial genericKeyMaterial
Byte array
h235.OCTET_STRING
h235.h235Key h235Key
Unsigned 32-bit integer
h235.H235Key
h235.halfkey halfkey
Byte array
h235.BIT_STRING_SIZE_0_2048
h235.hash hash
Byte array
h235.BIT_STRING
h235.hashedVals hashedVals
No value
h235.ClearToken
h235.integer integer
Signed 32-bit integer
h235.INTEGER
h235.ipsec ipsec
No value
h235.NULL
h235.iv iv
Byte array
h235.OCTET_STRING
h235.iv16 iv16
Byte array
h235.IV16
h235.iv8 iv8
Byte array
h235.IV8
h235.kdr kdr
Unsigned 32-bit integer
h235.INTEGER_0_24
h235.keyDerivationOID keyDerivationOID
h235.OBJECT_IDENTIFIER
h235.keyExch keyExch
h235.OBJECT_IDENTIFIER
h235.keyMaterial keyMaterial
Byte array
h235.KeyMaterial
h235.length length
Unsigned 32-bit integer
h235.INTEGER_1_128
h235.lifetime lifetime
Unsigned 32-bit integer
h235.T_lifetime
h235.masterKey masterKey
Byte array
h235.OCTET_STRING
h235.masterSalt masterSalt
Byte array
h235.OCTET_STRING
h235.mki mki
No value
h235.T_mki
h235.modSize modSize
Byte array
h235.BIT_STRING_SIZE_0_2048
h235.modulus modulus
Byte array
h235.BIT_STRING_SIZE_0_511
h235.mrandom mrandom
Signed 32-bit integer
h235.RandomVal
h235.name name
String
h235.BMPString
h235.newParameter newParameter
Unsigned 32-bit integer
h235.SEQUENCE_OF_GenericData
h235.newParameter_item Item
No value
h225.GenericData
h235.nonStandard nonStandard
No value
h235.NonStandardParameter
h235.nonStandardIdentifier nonStandardIdentifier
h235.OBJECT_IDENTIFIER
h235.octets octets
Byte array
h235.OCTET_STRING
h235.paramS paramS
No value
h235.Params
h235.paramSsalt paramSsalt
No value
h235.Params
h235.password password
String
h235.Password
h235.powerOfTwo powerOfTwo
Signed 32-bit integer
h235.INTEGER
h235.profileInfo profileInfo
Unsigned 32-bit integer
h235.SEQUENCE_OF_ProfileElement
h235.profileInfo_item Item
No value
h235.ProfileElement
h235.public_key public-key
No value
h235.ECpoint
h235.pwdHash pwdHash
No value
h235.NULL
h235.pwdSymEnc pwdSymEnc
No value
h235.NULL
h235.radius radius
No value
h235.NULL
h235.ranInt ranInt
Signed 32-bit integer
h235.INTEGER
h235.random random
Signed 32-bit integer
h235.RandomVal
h235.requestRandom requestRandom
Signed 32-bit integer
h235.RandomVal
h235.responseRandom responseRandom
Signed 32-bit integer
h235.RandomVal
h235.secureChannel secureChannel
Byte array
h235.KeyMaterial
h235.secureSharedSecret secureSharedSecret
No value
h235.V3KeySyncMaterial
h235.sendersID sendersID
String
h235.Identifier
h235.sessionParams sessionParams
No value
h235.SrtpSessionParameters
h235.sharedSecret sharedSecret
No value
h235.ENCRYPTED
h235.signature signature
Byte array
h235.BIT_STRING
h235.specific specific
Signed 32-bit integer
h235.INTEGER
h235.srandom srandom
Signed 32-bit integer
h235.RandomVal
h235.timeStamp timeStamp
Date/Time stamp
h235.TimeStamp
h235.tls tls
No value
h235.NULL
h235.toBeSigned toBeSigned
No value
xxx.ToBeSigned
h235.token token
No value
h235.ENCRYPTED
h235.tokenOID tokenOID
h235.OBJECT_IDENTIFIER
h235.type type
h235.OBJECT_IDENTIFIER
h235.unauthenticatedSrtp unauthenticatedSrtp
Boolean
h235.BOOLEAN
h235.unencryptedSrtcp unencryptedSrtcp
Boolean
h235.BOOLEAN
h235.unencryptedSrtp unencryptedSrtp
Boolean
h235.BOOLEAN
h235.value value
Byte array
h235.OCTET_STRING
h235.weierstrassA weierstrassA
Byte array
h235.BIT_STRING_SIZE_0_511
h235.weierstrassB weierstrassB
Byte array
h235.BIT_STRING_SIZE_0_511
h235.windowSizeHint windowSizeHint
Unsigned 32-bit integer
h235.INTEGER_64_65535
h235.x x
Byte array
h235.BIT_STRING_SIZE_0_511
h235.y y
Byte array
h235.BIT_STRING_SIZE_0_511
h221.Manufacturer H.221 Manufacturer
Unsigned 32-bit integer
H.221 Manufacturer
h225.DestinationInfo_item Item
Unsigned 32-bit integer
h225.DestinationInfo_item
h225.ExtendedAliasAddress ExtendedAliasAddress
No value
h225.ExtendedAliasAddress
h225.FastStart_item Item
Unsigned 32-bit integer
h225.FastStart_item
h225.H245Control_item Item
Unsigned 32-bit integer
h225.H245Control_item
h225.H323_UserInformation H323-UserInformation
No value
h225.H323_UserInformation
h225.Language_item Item
String
h225.IA5String_SIZE_1_32
h225.ParallelH245Control_item Item
Unsigned 32-bit integer
h225.ParallelH245Control_item
h225.RasMessage RasMessage
Unsigned 32-bit integer
h225.RasMessage
h225.abbreviatedNumber abbreviatedNumber
No value
h225.NULL
h225.activeMC activeMC
Boolean
h225.BOOLEAN
h225.adaptiveBusy adaptiveBusy
No value
h225.NULL
h225.additionalSourceAddresses additionalSourceAddresses
Unsigned 32-bit integer
h225.SEQUENCE_OF_ExtendedAliasAddress
h225.additionalSourceAddresses_item Item
No value
h225.ExtendedAliasAddress
h225.additiveRegistration additiveRegistration
No value
h225.NULL
h225.additiveRegistrationNotSupported additiveRegistrationNotSupported
No value
h225.NULL
h225.address address
String
h225.IsupDigits
h225.addressNotAvailable addressNotAvailable
No value
h225.NULL
h225.admissionConfirm admissionConfirm
No value
h225.AdmissionConfirm
h225.admissionConfirmSequence admissionConfirmSequence
Unsigned 32-bit integer
h225.SEQUENCE_OF_AdmissionConfirm
h225.admissionConfirmSequence_item Item
No value
h225.AdmissionConfirm
h225.admissionReject admissionReject
No value
h225.AdmissionReject
h225.admissionRequest admissionRequest
No value
h225.AdmissionRequest
h225.alerting alerting
No value
h225.Alerting_UUIE
h225.alertingAddress alertingAddress
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.alertingAddress_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.alertingTime alertingTime
Date/Time stamp
h235.TimeStamp
h225.algorithmOID algorithmOID
h225.OBJECT_IDENTIFIER
h225.algorithmOIDs algorithmOIDs
Unsigned 32-bit integer
h225.T_algorithmOIDs
h225.algorithmOIDs_item Item
h225.OBJECT_IDENTIFIER
h225.alias alias
Unsigned 32-bit integer
h225.AliasAddress
h225.aliasAddress aliasAddress
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.aliasAddress_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.aliasesInconsistent aliasesInconsistent
No value
h225.NULL
h225.allowedBandWidth allowedBandWidth
Unsigned 32-bit integer
h225.BandWidth
h225.almostOutOfResources almostOutOfResources
Boolean
h225.BOOLEAN
h225.altGKInfo altGKInfo
No value
h225.AltGKInfo
h225.altGKisPermanent altGKisPermanent
Boolean
h225.BOOLEAN
h225.alternateEndpoints alternateEndpoints
Unsigned 32-bit integer
h225.SEQUENCE_OF_Endpoint
h225.alternateEndpoints_item Item
No value
h225.Endpoint
h225.alternateGatekeeper alternateGatekeeper
Unsigned 32-bit integer
h225.SEQUENCE_OF_AlternateGK
h225.alternateGatekeeper_item Item
No value
h225.AlternateGK
h225.alternateTransportAddresses alternateTransportAddresses
No value
h225.AlternateTransportAddresses
h225.alternativeAddress alternativeAddress
Unsigned 32-bit integer
h225.TransportAddress
h225.alternativeAliasAddress alternativeAliasAddress
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.alternativeAliasAddress_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.amountString amountString
String
h225.BMPString_SIZE_1_512
h225.annexE annexE
Unsigned 32-bit integer
h225.SEQUENCE_OF_TransportAddress
h225.annexE_item Item
Unsigned 32-bit integer
h225.TransportAddress
h225.ansi_41_uim ansi-41-uim
No value
h225.ANSI_41_UIM
h225.answerCall answerCall
Boolean
h225.BOOLEAN
h225.answeredCall answeredCall
Boolean
h225.BOOLEAN
h225.assignedGatekeeper assignedGatekeeper
No value
h225.AlternateGK
h225.associatedSessionIds associatedSessionIds
Unsigned 32-bit integer
h225.T_associatedSessionIds
h225.associatedSessionIds_item Item
Unsigned 32-bit integer
h225.INTEGER_1_255
h225.audio audio
Unsigned 32-bit integer
h225.SEQUENCE_OF_RTPSession
h225.audio_item Item
No value
h225.RTPSession
h225.authenticationCapability authenticationCapability
Unsigned 32-bit integer
h225.SEQUENCE_OF_AuthenticationMechanism
h225.authenticationCapability_item Item
Unsigned 32-bit integer
h235.AuthenticationMechanism
h225.authenticationMode authenticationMode
Unsigned 32-bit integer
h235.AuthenticationMechanism
h225.authenticaton authenticaton
Unsigned 32-bit integer
h225.SecurityServiceMode
h225.auto auto
No value
h225.NULL
h225.bChannel bChannel
No value
h225.NULL
h225.badFormatAddress badFormatAddress
No value
h225.NULL
h225.bandWidth bandWidth
Unsigned 32-bit integer
h225.BandWidth
h225.bandwidth bandwidth
Unsigned 32-bit integer
h225.BandWidth
h225.bandwidthConfirm bandwidthConfirm
No value
h225.BandwidthConfirm
h225.bandwidthDetails bandwidthDetails
Unsigned 32-bit integer
h225.SEQUENCE_OF_BandwidthDetails
h225.bandwidthDetails_item Item
No value
h225.BandwidthDetails
h225.bandwidthReject bandwidthReject
No value
h225.BandwidthReject
h225.bandwidthRequest bandwidthRequest
No value
h225.BandwidthRequest
h225.billingMode billingMode
Unsigned 32-bit integer
h225.T_billingMode
h225.bonded_mode1 bonded-mode1
No value
h225.NULL
h225.bonded_mode2 bonded-mode2
No value
h225.NULL
h225.bonded_mode3 bonded-mode3
No value
h225.NULL
h225.bool bool
Boolean
h225.BOOLEAN
h225.busyAddress busyAddress
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.busyAddress_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.callCreditCapability callCreditCapability
No value
h225.CallCreditCapability
h225.callCreditServiceControl callCreditServiceControl
No value
h225.CallCreditServiceControl
h225.callDurationLimit callDurationLimit
Unsigned 32-bit integer
h225.INTEGER_1_4294967295
h225.callEnd callEnd
No value
h225.NULL
h225.callForwarded callForwarded
No value
h225.NULL
h225.callIdentifier callIdentifier
No value
h225.CallIdentifier
h225.callInProgress callInProgress
No value
h225.NULL
h225.callIndependentSupplementaryService callIndependentSupplementaryService
No value
h225.NULL
h225.callLinkage callLinkage
No value
h225.CallLinkage
h225.callModel callModel
Unsigned 32-bit integer
h225.CallModel
h225.callProceeding callProceeding
No value
h225.CallProceeding_UUIE
h225.callReferenceValue callReferenceValue
Unsigned 32-bit integer
h225.CallReferenceValue
h225.callServices callServices
No value
h225.QseriesOptions
h225.callSignalAddress callSignalAddress
Unsigned 32-bit integer
h225.SEQUENCE_OF_TransportAddress
h225.callSignalAddress_item Item
Unsigned 32-bit integer
h225.TransportAddress
h225.callSignaling callSignaling
No value
h225.TransportChannelInfo
h225.callSpecific callSpecific
No value
h225.T_callSpecific
h225.callStart callStart
No value
h225.NULL
h225.callStartingPoint callStartingPoint
No value
h225.RasUsageSpecificationcallStartingPoint
h225.callType callType
Unsigned 32-bit integer
h225.CallType
h225.calledPartyNotRegistered calledPartyNotRegistered
No value
h225.NULL
h225.callerNotRegistered callerNotRegistered
No value
h225.NULL
h225.calls calls
Unsigned 32-bit integer
h225.INTEGER_0_4294967295
h225.canDisplayAmountString canDisplayAmountString
Boolean
h225.BOOLEAN
h225.canEnforceDurationLimit canEnforceDurationLimit
Boolean
h225.BOOLEAN
h225.canMapAlias canMapAlias
Boolean
h225.BOOLEAN
h225.canMapSrcAlias canMapSrcAlias
Boolean
h225.BOOLEAN
h225.canOverlapSend canOverlapSend
Boolean
h225.BOOLEAN
h225.canReportCallCapacity canReportCallCapacity
Boolean
h225.BOOLEAN
h225.capability_negotiation capability-negotiation
No value
h225.NULL
h225.capacity capacity
No value
h225.CallCapacity
h225.capacityInfoRequested capacityInfoRequested
No value
h225.NULL
h225.capacityReportingCapability capacityReportingCapability
No value
h225.CapacityReportingCapability
h225.capacityReportingSpec capacityReportingSpec
No value
h225.CapacityReportingSpecification
h225.carrier carrier
No value
h225.CarrierInfo
h225.carrierIdentificationCode carrierIdentificationCode
Byte array
h225.OCTET_STRING_SIZE_3_4
h225.carrierName carrierName
String
h225.IA5String_SIZE_1_128
h225.channelMultiplier channelMultiplier
Unsigned 32-bit integer
h225.INTEGER_1_256
h225.channelRate channelRate
Unsigned 32-bit integer
h225.BandWidth
h225.cic cic
No value
h225.CicInfo
h225.cic_item Item
Byte array
h225.OCTET_STRING_SIZE_2_4
h225.circuitInfo circuitInfo
No value
h225.CircuitInfo
h225.close close
No value
h225.NULL
h225.cname cname
String
h225.PrintableString
h225.collectDestination collectDestination
No value
h225.NULL
h225.collectPIN collectPIN
No value
h225.NULL
h225.complete complete
No value
h225.NULL
h225.compound compound
Unsigned 32-bit integer
h225.SEQUENCE_SIZE_1_512_OF_EnumeratedParameter
h225.compound_item Item
No value
h225.EnumeratedParameter
h225.conferenceAlias conferenceAlias
Unsigned 32-bit integer
h225.AliasAddress
h225.conferenceCalling conferenceCalling
Boolean
h225.BOOLEAN
h225.conferenceGoal conferenceGoal
Unsigned 32-bit integer
h225.T_conferenceGoal
h225.conferenceID conferenceID
h225.ConferenceIdentifier
h225.conferenceListChoice conferenceListChoice
No value
h225.NULL
h225.conferences conferences
Unsigned 32-bit integer
h225.SEQUENCE_OF_ConferenceList
h225.conferences_item Item
No value
h225.ConferenceList
h225.connect connect
No value
h225.Connect_UUIE
h225.connectTime connectTime
Date/Time stamp
h235.TimeStamp
h225.connectedAddress connectedAddress
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.connectedAddress_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.connectionAggregation connectionAggregation
Unsigned 32-bit integer
h225.ScnConnectionAggregation
h225.connectionParameters connectionParameters
No value
h225.T_connectionParameters
h225.connectionType connectionType
Unsigned 32-bit integer
h225.ScnConnectionType
h225.content content
Unsigned 32-bit integer
h225.Content
h225.contents contents
Unsigned 32-bit integer
h225.ServiceControlDescriptor
h225.create create
No value
h225.NULL
h225.credit credit
No value
h225.NULL
h225.cryptoEPCert cryptoEPCert
No value
h235.SIGNED
h225.cryptoEPPwdEncr cryptoEPPwdEncr
No value
h235.ENCRYPTED
h225.cryptoEPPwdHash cryptoEPPwdHash
No value
h225.T_cryptoEPPwdHash
h225.cryptoFastStart cryptoFastStart
No value
h235.SIGNED
h225.cryptoGKCert cryptoGKCert
No value
h235.SIGNED
h225.cryptoGKPwdEncr cryptoGKPwdEncr
No value
h235.ENCRYPTED
h225.cryptoGKPwdHash cryptoGKPwdHash
No value
h225.T_cryptoGKPwdHash
h225.cryptoTokens cryptoTokens
Unsigned 32-bit integer
h225.SEQUENCE_OF_CryptoH323Token
h225.cryptoTokens_item Item
Unsigned 32-bit integer
h225.CryptoH323Token
h225.currentCallCapacity currentCallCapacity
No value
h225.CallCapacityInfo
h225.data data
Unsigned 32-bit integer
h225.T_nsp_data
h225.dataPartyNumber dataPartyNumber
String
h225.NumberDigits
h225.dataRatesSupported dataRatesSupported
Unsigned 32-bit integer
h225.SEQUENCE_OF_DataRate
h225.dataRatesSupported_item Item
No value
h225.DataRate
h225.data_item Item
No value
h225.TransportChannelInfo
h225.debit debit
No value
h225.NULL
h225.default default
No value
h225.NULL
h225.delay delay
Unsigned 32-bit integer
h225.INTEGER_1_65535
h225.desiredFeatures desiredFeatures
Unsigned 32-bit integer
h225.SEQUENCE_OF_FeatureDescriptor
h225.desiredFeatures_item Item
No value
h225.FeatureDescriptor
h225.desiredProtocols desiredProtocols
Unsigned 32-bit integer
h225.SEQUENCE_OF_SupportedProtocols
h225.desiredProtocols_item Item
Unsigned 32-bit integer
h225.SupportedProtocols
h225.desiredTunnelledProtocol desiredTunnelledProtocol
No value
h225.TunnelledProtocol
h225.destAlternatives destAlternatives
Unsigned 32-bit integer
h225.SEQUENCE_OF_Endpoint
h225.destAlternatives_item Item
No value
h225.Endpoint
h225.destCallSignalAddress destCallSignalAddress
Unsigned 32-bit integer
h225.TransportAddress
h225.destExtraCRV destExtraCRV
Unsigned 32-bit integer
h225.SEQUENCE_OF_CallReferenceValue
h225.destExtraCRV_item Item
Unsigned 32-bit integer
h225.CallReferenceValue
h225.destExtraCallInfo destExtraCallInfo
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.destExtraCallInfo_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.destinationAddress destinationAddress
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.destinationAddress_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.destinationCircuitID destinationCircuitID
No value
h225.CircuitIdentifier
h225.destinationInfo destinationInfo
No value
h225.EndpointType
h225.destinationRejection destinationRejection
No value
h225.NULL
h225.destinationType destinationType
No value
h225.EndpointType
h225.dialedDigits dialedDigits
String
h225.DialedDigits
h225.digSig digSig
No value
h225.NULL
h225.direct direct
No value
h225.NULL
h225.discoveryComplete discoveryComplete
Boolean
h225.BOOLEAN
h225.discoveryRequired discoveryRequired
No value
h225.NULL
h225.disengageConfirm disengageConfirm
No value
h225.DisengageConfirm
h225.disengageReason disengageReason
Unsigned 32-bit integer
h225.DisengageReason
h225.disengageReject disengageReject
No value
h225.DisengageReject
h225.disengageRequest disengageRequest
No value
h225.DisengageRequest
h225.duplicateAlias duplicateAlias
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.duplicateAlias_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.e164Number e164Number
No value
h225.PublicPartyNumber
h225.email_ID email-ID
String
h225.IA5String_SIZE_1_512
h225.empty empty
No value
h225.T_empty_flg
h225.encryption encryption
Unsigned 32-bit integer
h225.SecurityServiceMode
h225.end end
No value
h225.NULL
h225.endOfRange endOfRange
Unsigned 32-bit integer
h225.PartyNumber
h225.endTime endTime
No value
h225.NULL
h225.endpointAlias endpointAlias
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.endpointAliasPattern endpointAliasPattern
Unsigned 32-bit integer
h225.SEQUENCE_OF_AddressPattern
h225.endpointAliasPattern_item Item
Unsigned 32-bit integer
h225.AddressPattern
h225.endpointAlias_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.endpointBased endpointBased
No value
h225.NULL
h225.endpointControlled endpointControlled
No value
h225.NULL
h225.endpointIdentifier endpointIdentifier
String
h225.EndpointIdentifier
h225.endpointType endpointType
No value
h225.EndpointType
h225.endpointVendor endpointVendor
No value
h225.VendorIdentifier
h225.enforceCallDurationLimit enforceCallDurationLimit
Boolean
h225.BOOLEAN
h225.enterpriseNumber enterpriseNumber
h225.OBJECT_IDENTIFIER
h225.esn esn
String
h225.TBCD_STRING_SIZE_16
h225.exceedsCallCapacity exceedsCallCapacity
No value
h225.NULL
h225.facility facility
No value
h225.Facility_UUIE
h225.facilityCallDeflection facilityCallDeflection
No value
h225.NULL
h225.failed failed
No value
h225.NULL
h225.fastConnectRefused fastConnectRefused
No value
h225.NULL
h225.fastStart fastStart
Unsigned 32-bit integer
h225.FastStart
h225.featureServerAlias featureServerAlias
Unsigned 32-bit integer
h225.AliasAddress
h225.featureSet featureSet
No value
h225.FeatureSet
h225.featureSetUpdate featureSetUpdate
No value
h225.NULL
h225.forcedDrop forcedDrop
No value
h225.NULL
h225.forwardedElements forwardedElements
No value
h225.NULL
h225.fullRegistrationRequired fullRegistrationRequired
No value
h225.NULL
h225.gatekeeper gatekeeper
No value
h225.GatekeeperInfo
h225.gatekeeperBased gatekeeperBased
No value
h225.NULL
h225.gatekeeperConfirm gatekeeperConfirm
No value
h225.GatekeeperConfirm
h225.gatekeeperControlled gatekeeperControlled
No value
h225.NULL
h225.gatekeeperId gatekeeperId
String
h225.GatekeeperIdentifier
h225.gatekeeperIdentifier gatekeeperIdentifier
String
h225.GatekeeperIdentifier
h225.gatekeeperReject gatekeeperReject
No value
h225.GatekeeperReject
h225.gatekeeperRequest gatekeeperRequest
No value
h225.GatekeeperRequest
h225.gatekeeperResources gatekeeperResources
No value
h225.NULL
h225.gatekeeperRouted gatekeeperRouted
No value
h225.NULL
h225.gateway gateway
No value
h225.GatewayInfo
h225.gatewayDataRate gatewayDataRate
No value
h225.DataRate
h225.gatewayResources gatewayResources
No value
h225.NULL
h225.genericData genericData
Unsigned 32-bit integer
h225.SEQUENCE_OF_GenericData
h225.genericDataReason genericDataReason
No value
h225.NULL
h225.genericData_item Item
No value
h225.GenericData
h225.globalCallId globalCallId
h225.GloballyUniqueID
h225.group group
String
h225.IA5String_SIZE_1_128
h225.gsm_uim gsm-uim
No value
h225.GSM_UIM
h225.guid guid
h225.T_guid
h225.h221 h221
No value
h225.NULL
h225.h221NonStandard h221NonStandard
No value
h225.H221NonStandard
h225.h245 h245
No value
h225.TransportChannelInfo
h225.h245Address h245Address
Unsigned 32-bit integer
h225.H245TransportAddress
h225.h245Control h245Control
Unsigned 32-bit integer
h225.H245Control
h225.h245SecurityCapability h245SecurityCapability
Unsigned 32-bit integer
h225.SEQUENCE_OF_H245Security
h225.h245SecurityCapability_item Item
Unsigned 32-bit integer
h225.H245Security
h225.h245SecurityMode h245SecurityMode
Unsigned 32-bit integer
h225.H245Security
h225.h245Tunneling h245Tunneling
Boolean
h225.T_h245Tunneling
h225.h248Message h248Message
Byte array
h225.OCTET_STRING
h225.h310 h310
No value
h225.H310Caps
h225.h310GwCallsAvailable h310GwCallsAvailable
Unsigned 32-bit integer
h225.SEQUENCE_OF_CallsAvailable
h225.h310GwCallsAvailable_item Item
No value
h225.CallsAvailable
h225.h320 h320
No value
h225.H320Caps
h225.h320GwCallsAvailable h320GwCallsAvailable
Unsigned 32-bit integer
h225.SEQUENCE_OF_CallsAvailable
h225.h320GwCallsAvailable_item Item
No value
h225.CallsAvailable
h225.h321 h321
No value
h225.H321Caps
h225.h321GwCallsAvailable h321GwCallsAvailable
Unsigned 32-bit integer
h225.SEQUENCE_OF_CallsAvailable
h225.h321GwCallsAvailable_item Item
No value
h225.CallsAvailable
h225.h322 h322
No value
h225.H322Caps
h225.h322GwCallsAvailable h322GwCallsAvailable
Unsigned 32-bit integer
h225.SEQUENCE_OF_CallsAvailable
h225.h322GwCallsAvailable_item Item
No value
h225.CallsAvailable
h225.h323 h323
No value
h225.H323Caps
h225.h323GwCallsAvailable h323GwCallsAvailable
Unsigned 32-bit integer
h225.SEQUENCE_OF_CallsAvailable
h225.h323GwCallsAvailable_item Item
No value
h225.CallsAvailable
h225.h323_ID h323-ID
String
h225.BMPString_SIZE_1_256
h225.h323_message_body h323-message-body
Unsigned 32-bit integer
h225.T_h323_message_body
h225.h323_uu_pdu h323-uu-pdu
No value
h225.H323_UU_PDU
h225.h323pdu h323pdu
No value
h225.H323_UU_PDU
h225.h324 h324
No value
h225.H324Caps
h225.h324GwCallsAvailable h324GwCallsAvailable
Unsigned 32-bit integer
h225.SEQUENCE_OF_CallsAvailable
h225.h324GwCallsAvailable_item Item
No value
h225.CallsAvailable
h225.h4501SupplementaryService h4501SupplementaryService
Unsigned 32-bit integer
h225.T_h4501SupplementaryService
h225.h4501SupplementaryService_item Item
Unsigned 32-bit integer
h225.T_h4501SupplementaryService_item
h225.hMAC_MD5 hMAC-MD5
No value
h225.NULL
h225.hMAC_iso10118_2_l hMAC-iso10118-2-l
Unsigned 32-bit integer
h225.EncryptIntAlg
h225.hMAC_iso10118_2_s hMAC-iso10118-2-s
Unsigned 32-bit integer
h225.EncryptIntAlg
h225.hMAC_iso10118_3 hMAC-iso10118-3
h225.OBJECT_IDENTIFIER
h225.hopCount hopCount
Unsigned 32-bit integer
h225.INTEGER_1_31
h225.hopCountExceeded hopCountExceeded
No value
h225.NULL
h225.hplmn hplmn
String
h225.TBCD_STRING_SIZE_1_4
h225.hybrid1536 hybrid1536
No value
h225.NULL
h225.hybrid1920 hybrid1920
No value
h225.NULL
h225.hybrid2x64 hybrid2x64
No value
h225.NULL
h225.hybrid384 hybrid384
No value
h225.NULL
h225.icv icv
Byte array
h225.BIT_STRING
h225.id id
Unsigned 32-bit integer
h225.TunnelledProtocol_id
h225.imei imei
String
h225.TBCD_STRING_SIZE_15_16
h225.imsi imsi
String
h225.TBCD_STRING_SIZE_3_16
h225.inConf inConf
No value
h225.NULL
h225.inIrr inIrr
No value
h225.NULL
h225.incomplete incomplete
No value
h225.NULL
h225.incompleteAddress incompleteAddress
No value
h225.NULL
h225.infoRequest infoRequest
No value
h225.InfoRequest
h225.infoRequestAck infoRequestAck
No value
h225.InfoRequestAck
h225.infoRequestNak infoRequestNak
No value
h225.InfoRequestNak
h225.infoRequestResponse infoRequestResponse
No value
h225.InfoRequestResponse
h225.information information
No value
h225.Information_UUIE
h225.insufficientResources insufficientResources
No value
h225.NULL
h225.integrity integrity
Unsigned 32-bit integer
h225.SecurityServiceMode
h225.integrityCheckValue integrityCheckValue
No value
h225.ICV
h225.integrity_item Item
Unsigned 32-bit integer
h225.IntegrityMechanism
h225.internationalNumber internationalNumber
No value
h225.NULL
h225.invalidAlias invalidAlias
No value
h225.NULL
h225.invalidCID invalidCID
No value
h225.NULL
h225.invalidCall invalidCall
No value
h225.NULL
h225.invalidCallSignalAddress invalidCallSignalAddress
No value
h225.NULL
h225.invalidConferenceID invalidConferenceID
No value
h225.NULL
h225.invalidEndpointIdentifier invalidEndpointIdentifier
No value
h225.NULL
h225.invalidPermission invalidPermission
No value
h225.NULL
h225.invalidRASAddress invalidRASAddress
No value
h225.NULL
h225.invalidRevision invalidRevision
No value
h225.NULL
h225.invalidTerminalAliases invalidTerminalAliases
No value
h225.T_invalidTerminalAliases
h225.invalidTerminalType invalidTerminalType
No value
h225.NULL
h225.invite invite
No value
h225.NULL
h225.ip ip
IPv4 address
h225.T_h245Ip
h225.ip6Address ip6Address
No value
h225.T_h245Ip6Address
h225.ipAddress ipAddress
No value
h225.T_h245IpAddress
h225.ipSourceRoute ipSourceRoute
No value
h225.T_h245IpSourceRoute
h225.ipsec ipsec
No value
h225.SecurityCapabilities
h225.ipxAddress ipxAddress
No value
h225.T_h245IpxAddress
h225.irrFrequency irrFrequency
Unsigned 32-bit integer
h225.INTEGER_1_65535
h225.irrFrequencyInCall irrFrequencyInCall
Unsigned 32-bit integer
h225.INTEGER_1_65535
h225.irrStatus irrStatus
Unsigned 32-bit integer
h225.InfoRequestResponseStatus
h225.isText isText
No value
h225.NULL
h225.iso9797 iso9797
h225.OBJECT_IDENTIFIER
h225.isoAlgorithm isoAlgorithm
h225.OBJECT_IDENTIFIER
h225.isupNumber isupNumber
Unsigned 32-bit integer
h225.IsupNumber
h225.join join
No value
h225.NULL
h225.keepAlive keepAlive
Boolean
h225.BOOLEAN
h225.language language
Unsigned 32-bit integer
h225.Language
h225.level1RegionalNumber level1RegionalNumber
No value
h225.NULL
h225.level2RegionalNumber level2RegionalNumber
No value
h225.NULL
h225.localNumber localNumber
No value
h225.NULL
h225.locationConfirm locationConfirm
No value
h225.LocationConfirm
h225.locationReject locationReject
No value
h225.LocationReject
h225.locationRequest locationRequest
No value
h225.LocationRequest
h225.loose loose
No value
h225.NULL
h225.maintainConnection maintainConnection
Boolean
h225.BOOLEAN
h225.maintenance maintenance
No value
h225.NULL
h225.makeCall makeCall
Boolean
h225.BOOLEAN
h225.manufacturerCode manufacturerCode
Unsigned 32-bit integer
h225.T_manufacturerCode
h225.maximumCallCapacity maximumCallCapacity
No value
h225.CallCapacityInfo
h225.mc mc
Boolean
h225.BOOLEAN
h225.mcu mcu
No value
h225.McuInfo
h225.mcuCallsAvailable mcuCallsAvailable
Unsigned 32-bit integer
h225.SEQUENCE_OF_CallsAvailable
h225.mcuCallsAvailable_item Item
No value
h225.CallsAvailable
h225.mdn mdn
String
h225.TBCD_STRING_SIZE_3_16
h225.mediaWaitForConnect mediaWaitForConnect
Boolean
h225.BOOLEAN
h225.member member
Unsigned 32-bit integer
h225.T_member
h225.member_item Item
Unsigned 32-bit integer
h225.INTEGER_0_65535
h225.messageContent messageContent
Unsigned 32-bit integer
h225.T_messageContent
h225.messageContent_item Item
Unsigned 32-bit integer
h225.T_messageContent_item
h225.messageNotUnderstood messageNotUnderstood
Byte array
h225.OCTET_STRING
h225.mid mid
String
h225.TBCD_STRING_SIZE_1_4
h225.min min
String
h225.TBCD_STRING_SIZE_3_16
h225.mobileUIM mobileUIM
Unsigned 32-bit integer
h225.MobileUIM
h225.modifiedSrcInfo modifiedSrcInfo
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.modifiedSrcInfo_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.mscid mscid
String
h225.TBCD_STRING_SIZE_3_16
h225.msisdn msisdn
String
h225.TBCD_STRING_SIZE_3_16
h225.multicast multicast
Boolean
h225.BOOLEAN
h225.multipleCalls multipleCalls
Boolean
h225.BOOLEAN
h225.multirate multirate
No value
h225.NULL
h225.nToN nToN
No value
h225.NULL
h225.nToOne nToOne
No value
h225.NULL
h225.nakReason nakReason
Unsigned 32-bit integer
h225.InfoRequestNakReason
h225.nationalNumber nationalNumber
No value
h225.NULL
h225.nationalStandardPartyNumber nationalStandardPartyNumber
String
h225.NumberDigits
h225.natureOfAddress natureOfAddress
Unsigned 32-bit integer
h225.NatureOfAddress
h225.needResponse needResponse
Boolean
h225.BOOLEAN
h225.needToRegister needToRegister
Boolean
h225.BOOLEAN
h225.neededFeatureNotSupported neededFeatureNotSupported
No value
h225.NULL
h225.neededFeatures neededFeatures
Unsigned 32-bit integer
h225.SEQUENCE_OF_FeatureDescriptor
h225.neededFeatures_item Item
No value
h225.FeatureDescriptor
h225.nested nested
Unsigned 32-bit integer
h225.SEQUENCE_SIZE_1_16_OF_GenericData
h225.nested_item Item
No value
h225.GenericData
h225.nestedcryptoToken nestedcryptoToken
Unsigned 32-bit integer
h235.CryptoToken
h225.netBios netBios
Byte array
h225.OCTET_STRING_SIZE_16
h225.netnum netnum
Byte array
h225.OCTET_STRING_SIZE_4
h225.networkSpecificNumber networkSpecificNumber
No value
h225.NULL
h225.newConnectionNeeded newConnectionNeeded
No value
h225.NULL
h225.newTokens newTokens
No value
h225.NULL
h225.nextSegmentRequested nextSegmentRequested
Unsigned 32-bit integer
h225.INTEGER_0_65535
h225.noBandwidth noBandwidth
No value
h225.NULL
h225.noControl noControl
No value
h225.NULL
h225.noH245 noH245
No value
h225.NULL
h225.noPermission noPermission
No value
h225.NULL
h225.noRouteToDestination noRouteToDestination
No value
h225.NULL
h225.noSecurity noSecurity
No value
h225.NULL
h225.node node
Byte array
h225.OCTET_STRING_SIZE_6
h225.nonIsoIM nonIsoIM
Unsigned 32-bit integer
h225.NonIsoIntegrityMechanism
h225.nonStandard nonStandard
No value
h225.NonStandardParameter
h225.nonStandardAddress nonStandardAddress
No value
h225.NonStandardParameter
h225.nonStandardControl nonStandardControl
Unsigned 32-bit integer
h225.SEQUENCE_OF_NonStandardParameter
h225.nonStandardControl_item Item
No value
h225.NonStandardParameter
h225.nonStandardData nonStandardData
No value
h225.NonStandardParameter
h225.nonStandardIdentifier nonStandardIdentifier
Unsigned 32-bit integer
h225.NonStandardIdentifier
h225.nonStandardMessage nonStandardMessage
No value
h225.NonStandardMessage
h225.nonStandardProtocol nonStandardProtocol
No value
h225.NonStandardProtocol
h225.nonStandardReason nonStandardReason
No value
h225.NonStandardParameter
h225.nonStandardUsageFields nonStandardUsageFields
Unsigned 32-bit integer
h225.SEQUENCE_OF_NonStandardParameter
h225.nonStandardUsageFields_item Item
No value
h225.NonStandardParameter
h225.nonStandardUsageTypes nonStandardUsageTypes
Unsigned 32-bit integer
h225.SEQUENCE_OF_NonStandardParameter
h225.nonStandardUsageTypes_item Item
No value
h225.NonStandardParameter
h225.none none
No value
h225.NULL
h225.normalDrop normalDrop
No value
h225.NULL
h225.notAvailable notAvailable
No value
h225.NULL
h225.notBound notBound
No value
h225.NULL
h225.notCurrentlyRegistered notCurrentlyRegistered
No value
h225.NULL
h225.notRegistered notRegistered
No value
h225.NULL
h225.notify notify
No value
h225.Notify_UUIE
h225.nsap nsap
Byte array
h225.OCTET_STRING_SIZE_1_20
h225.number16 number16
Unsigned 32-bit integer
h225.INTEGER_0_65535
h225.number32 number32
Unsigned 32-bit integer
h225.INTEGER_0_4294967295
h225.number8 number8
Unsigned 32-bit integer
h225.INTEGER_0_255
h225.numberOfScnConnections numberOfScnConnections
Unsigned 32-bit integer
h225.INTEGER_0_65535
h225.object object
h225.T_nsiOID
h225.oid oid
h225.T_oid
h225.oneToN oneToN
No value
h225.NULL
h225.open open
No value
h225.NULL
h225.originator originator
Boolean
h225.BOOLEAN
h225.pISNSpecificNumber pISNSpecificNumber
No value
h225.NULL
h225.parallelH245Control parallelH245Control
Unsigned 32-bit integer
h225.ParallelH245Control
h225.parameters parameters
Unsigned 32-bit integer
h225.T_parameters
h225.parameters_item Item
No value
h225.T_parameters_item
h225.partyNumber partyNumber
Unsigned 32-bit integer
h225.PartyNumber
h225.pdu pdu
Unsigned 32-bit integer
h225.T_pdu
h225.pdu_item Item
No value
h225.T_pdu_item
h225.perCallInfo perCallInfo
Unsigned 32-bit integer
h225.T_perCallInfo
h225.perCallInfo_item Item
No value
h225.T_perCallInfo_item
h225.permissionDenied permissionDenied
No value
h225.NULL
h225.pointCode pointCode
Byte array
h225.OCTET_STRING_SIZE_2_5
h225.pointToPoint pointToPoint
No value
h225.NULL
h225.port port
Unsigned 32-bit integer
h225.T_h245IpPort
h225.preGrantedARQ preGrantedARQ
No value
h225.T_preGrantedARQ
h225.prefix prefix
Unsigned 32-bit integer
h225.AliasAddress
h225.presentationAllowed presentationAllowed
No value
h225.NULL
h225.presentationIndicator presentationIndicator
Unsigned 32-bit integer
h225.PresentationIndicator
h225.presentationRestricted presentationRestricted
No value
h225.NULL
h225.priority priority
Unsigned 32-bit integer
h225.INTEGER_0_127
h225.privateNumber privateNumber
No value
h225.PrivatePartyNumber
h225.privateNumberDigits privateNumberDigits
String
h225.NumberDigits
h225.privateTypeOfNumber privateTypeOfNumber
Unsigned 32-bit integer
h225.PrivateTypeOfNumber
h225.productId productId
String
h225.OCTET_STRING_SIZE_1_256
h225.progress progress
No value
h225.Progress_UUIE
h225.protocol protocol
Unsigned 32-bit integer
h225.SEQUENCE_OF_SupportedProtocols
h225.protocolIdentifier protocolIdentifier
h225.ProtocolIdentifier
h225.protocolType protocolType
String
h225.IA5String_SIZE_1_64
h225.protocolVariant protocolVariant
String
h225.IA5String_SIZE_1_64
h225.protocol_discriminator protocol-discriminator
Unsigned 32-bit integer
h225.INTEGER_0_255
h225.protocol_item Item
Unsigned 32-bit integer
h225.SupportedProtocols
h225.protocols protocols
Unsigned 32-bit integer
h225.SEQUENCE_OF_SupportedProtocols
h225.protocols_item Item
Unsigned 32-bit integer
h225.SupportedProtocols
h225.provisionalRespToH245Tunneling provisionalRespToH245Tunneling
No value
h225.NULL
h225.publicNumberDigits publicNumberDigits
String
h225.NumberDigits
h225.publicTypeOfNumber publicTypeOfNumber
Unsigned 32-bit integer
h225.PublicTypeOfNumber
h225.q932Full q932Full
Boolean
h225.BOOLEAN
h225.q951Full q951Full
Boolean
h225.BOOLEAN
h225.q952Full q952Full
Boolean
h225.BOOLEAN
h225.q953Full q953Full
Boolean
h225.BOOLEAN
h225.q954Info q954Info
No value
h225.Q954Details
h225.q955Full q955Full
Boolean
h225.BOOLEAN
h225.q956Full q956Full
Boolean
h225.BOOLEAN
h225.q957Full q957Full
Boolean
h225.BOOLEAN
h225.qOSCapabilities qOSCapabilities
Unsigned 32-bit integer
h225.SEQUENCE_SIZE_1_256_OF_QOSCapability
h225.qOSCapabilities_item Item
No value
h245.QOSCapability
h225.qosControlNotSupported qosControlNotSupported
No value
h225.NULL
h225.qualificationInformationCode qualificationInformationCode
Byte array
h225.OCTET_STRING_SIZE_1
h225.range range
No value
h225.T_range
h225.ras.dup Duplicate RAS Message
Unsigned 32-bit integer
Duplicate RAS Message
h225.ras.reqframe RAS Request Frame
Frame number
RAS Request Frame
h225.ras.rspframe RAS Response Frame
Frame number
RAS Response Frame
h225.ras.timedelta RAS Service Response Time
Time duration
Timedelta between RAS-Request and RAS-Response
h225.rasAddress rasAddress
Unsigned 32-bit integer
h225.SEQUENCE_OF_TransportAddress
h225.rasAddress_item Item
Unsigned 32-bit integer
h225.TransportAddress
h225.raw raw
Byte array
h225.OCTET_STRING
h225.reason reason
Unsigned 32-bit integer
h225.ReleaseCompleteReason
h225.recvAddress recvAddress
Unsigned 32-bit integer
h225.TransportAddress
h225.refresh refresh
No value
h225.NULL
h225.registerWithAssignedGK registerWithAssignedGK
No value
h225.NULL
h225.registrationConfirm registrationConfirm
No value
h225.RegistrationConfirm
h225.registrationReject registrationReject
No value
h225.RegistrationReject
h225.registrationRequest registrationRequest
No value
h225.RegistrationRequest
h225.rehomingModel rehomingModel
Unsigned 32-bit integer
h225.RehomingModel
h225.rejectReason rejectReason
Unsigned 32-bit integer
h225.GatekeeperRejectReason
h225.releaseComplete releaseComplete
No value
h225.ReleaseComplete_UUIE
h225.releaseCompleteCauseIE releaseCompleteCauseIE
Byte array
h225.OCTET_STRING_SIZE_2_32
h225.remoteExtensionAddress remoteExtensionAddress
Unsigned 32-bit integer
h225.AliasAddress
h225.remoteExtensionAddress_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.replaceWithConferenceInvite replaceWithConferenceInvite
h225.ConferenceIdentifier
h225.replacementFeatureSet replacementFeatureSet
Boolean
h225.BOOLEAN
h225.replyAddress replyAddress
Unsigned 32-bit integer
h225.TransportAddress
h225.requestDenied requestDenied
No value
h225.NULL
h225.requestInProgress requestInProgress
No value
h225.RequestInProgress
h225.requestSeqNum requestSeqNum
Unsigned 32-bit integer
h225.RequestSeqNum
h225.requestToDropOther requestToDropOther
No value
h225.NULL
h225.required required
No value
h225.RasUsageInfoTypes
h225.reregistrationRequired reregistrationRequired
No value
h225.NULL
h225.resourceUnavailable resourceUnavailable
No value
h225.NULL
h225.resourcesAvailableConfirm resourcesAvailableConfirm
No value
h225.ResourcesAvailableConfirm
h225.resourcesAvailableIndicate resourcesAvailableIndicate
No value
h225.ResourcesAvailableIndicate
h225.restart restart
No value
h225.NULL
h225.result result
Unsigned 32-bit integer
h225.T_result
h225.route route
Unsigned 32-bit integer
h225.T_h245Route
h225.routeCallToGatekeeper routeCallToGatekeeper
No value
h225.NULL
h225.routeCallToMC routeCallToMC
No value
h225.NULL
h225.routeCallToSCN routeCallToSCN
Unsigned 32-bit integer
h225.SEQUENCE_OF_PartyNumber
h225.routeCallToSCN_item Item
Unsigned 32-bit integer
h225.PartyNumber
h225.routeCalltoSCN routeCalltoSCN
Unsigned 32-bit integer
h225.SEQUENCE_OF_PartyNumber
h225.routeCalltoSCN_item Item
Unsigned 32-bit integer
h225.PartyNumber
h225.route_item Item
Byte array
h225.OCTET_STRING_SIZE_4
h225.routing routing
Unsigned 32-bit integer
h225.T_h245Routing
h225.routingNumberNationalFormat routingNumberNationalFormat
No value
h225.NULL
h225.routingNumberNetworkSpecificFormat routingNumberNetworkSpecificFormat
No value
h225.NULL
h225.routingNumberWithCalledDirectoryNumber routingNumberWithCalledDirectoryNumber
No value
h225.NULL
h225.rtcpAddress rtcpAddress
No value
h225.TransportChannelInfo
h225.rtcpAddresses rtcpAddresses
No value
h225.TransportChannelInfo
h225.rtpAddress rtpAddress
No value
h225.TransportChannelInfo
h225.screeningIndicator screeningIndicator
Unsigned 32-bit integer
h225.ScreeningIndicator
h225.sctp sctp
Unsigned 32-bit integer
h225.SEQUENCE_OF_TransportAddress
h225.sctp_item Item
Unsigned 32-bit integer
h225.TransportAddress
h225.securityCertificateDateInvalid securityCertificateDateInvalid
No value
h225.NULL
h225.securityCertificateExpired securityCertificateExpired
No value
h225.NULL
h225.securityCertificateIncomplete securityCertificateIncomplete
No value
h225.NULL
h225.securityCertificateMissing securityCertificateMissing
No value
h225.NULL
h225.securityCertificateNotReadable securityCertificateNotReadable
No value
h225.NULL
h225.securityCertificateRevoked securityCertificateRevoked
No value
h225.NULL
h225.securityCertificateSignatureInvalid securityCertificateSignatureInvalid
No value
h225.NULL
h225.securityDHmismatch securityDHmismatch
No value
h225.NULL
h225.securityDenial securityDenial
No value
h225.NULL
h225.securityDenied securityDenied
No value
h225.NULL
h225.securityError securityError
Unsigned 32-bit integer
h225.SecurityErrors
h225.securityIntegrityFailed securityIntegrityFailed
No value
h225.NULL
h225.securityReplay securityReplay
No value
h225.NULL
h225.securityUnknownCA securityUnknownCA
No value
h225.NULL
h225.securityUnsupportedCertificateAlgOID securityUnsupportedCertificateAlgOID
No value
h225.NULL
h225.securityWrongGeneralID securityWrongGeneralID
No value
h225.NULL
h225.securityWrongOID securityWrongOID
No value
h225.NULL
h225.securityWrongSendersID securityWrongSendersID
No value
h225.NULL
h225.securityWrongSyncTime securityWrongSyncTime
No value
h225.NULL
h225.segment segment
Unsigned 32-bit integer
h225.INTEGER_0_65535
h225.segmentedResponseSupported segmentedResponseSupported
No value
h225.NULL
h225.sendAddress sendAddress
Unsigned 32-bit integer
h225.TransportAddress
h225.sender sender
Boolean
h225.BOOLEAN
h225.sent sent
Boolean
h225.BOOLEAN
h225.serviceControl serviceControl
Unsigned 32-bit integer
h225.SEQUENCE_OF_ServiceControlSession
h225.serviceControlIndication serviceControlIndication
No value
h225.ServiceControlIndication
h225.serviceControlResponse serviceControlResponse
No value
h225.ServiceControlResponse
h225.serviceControl_item Item
No value
h225.ServiceControlSession
h225.sesn sesn
String
h225.TBCD_STRING_SIZE_16
h225.sessionId sessionId
Unsigned 32-bit integer
h225.INTEGER_0_255
h225.set set
Byte array
h225.BIT_STRING_SIZE_32
h225.setup setup
No value
h225.Setup_UUIE
h225.setupAcknowledge setupAcknowledge
No value
h225.SetupAcknowledge_UUIE
h225.sid sid
String
h225.TBCD_STRING_SIZE_1_4
h225.signal signal
Byte array
h225.H248SignalsDescriptor
h225.sip sip
No value
h225.SIPCaps
h225.sipGwCallsAvailable sipGwCallsAvailable
Unsigned 32-bit integer
h225.SEQUENCE_OF_CallsAvailable
h225.sipGwCallsAvailable_item Item
No value
h225.CallsAvailable
h225.soc soc
String
h225.TBCD_STRING_SIZE_3_16
h225.sourceAddress sourceAddress
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.sourceAddress_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.sourceCallSignalAddress sourceCallSignalAddress
Unsigned 32-bit integer
h225.TransportAddress
h225.sourceCircuitID sourceCircuitID
No value
h225.CircuitIdentifier
h225.sourceEndpointInfo sourceEndpointInfo
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.sourceEndpointInfo_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.sourceInfo sourceInfo
No value
h225.EndpointType
h225.sourceInfo_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.srcAlternatives srcAlternatives
Unsigned 32-bit integer
h225.SEQUENCE_OF_Endpoint
h225.srcAlternatives_item Item
No value
h225.Endpoint
h225.srcCallSignalAddress srcCallSignalAddress
Unsigned 32-bit integer
h225.TransportAddress
h225.srcInfo srcInfo
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.srcInfo_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.ssrc ssrc
Unsigned 32-bit integer
h225.INTEGER_1_4294967295
h225.standard standard
Unsigned 32-bit integer
h225.T_standard
h225.start start
No value
h225.NULL
h225.startH245 startH245
No value
h225.NULL
h225.startOfRange startOfRange
Unsigned 32-bit integer
h225.PartyNumber
h225.startTime startTime
No value
h225.NULL
h225.started started
No value
h225.NULL
h225.status status
No value
h225.Status_UUIE
h225.statusInquiry statusInquiry
No value
h225.StatusInquiry_UUIE
h225.stimulusControl stimulusControl
No value
h225.StimulusControl
h225.stopped stopped
No value
h225.NULL
h225.strict strict
No value
h225.NULL
h225.subIdentifier subIdentifier
String
h225.IA5String_SIZE_1_64
h225.subscriberNumber subscriberNumber
No value
h225.NULL
h225.substituteConfIDs substituteConfIDs
Unsigned 32-bit integer
h225.SEQUENCE_OF_ConferenceIdentifier
h225.substituteConfIDs_item Item
h225.ConferenceIdentifier
h225.supportedFeatures supportedFeatures
Unsigned 32-bit integer
h225.SEQUENCE_OF_FeatureDescriptor
h225.supportedFeatures_item Item
No value
h225.FeatureDescriptor
h225.supportedH248Packages supportedH248Packages
Unsigned 32-bit integer
h225.SEQUENCE_OF_H248PackagesDescriptor
h225.supportedH248Packages_item Item
Byte array
h225.H248PackagesDescriptor
h225.supportedPrefixes supportedPrefixes
Unsigned 32-bit integer
h225.SEQUENCE_OF_SupportedPrefix
h225.supportedPrefixes_item Item
No value
h225.SupportedPrefix
h225.supportedProtocols supportedProtocols
Unsigned 32-bit integer
h225.SEQUENCE_OF_SupportedProtocols
h225.supportedProtocols_item Item
Unsigned 32-bit integer
h225.SupportedProtocols
h225.supportedTunnelledProtocols supportedTunnelledProtocols
Unsigned 32-bit integer
h225.SEQUENCE_OF_TunnelledProtocol
h225.supportedTunnelledProtocols_item Item
No value
h225.TunnelledProtocol
h225.supportsACFSequences supportsACFSequences
No value
h225.NULL
h225.supportsAdditiveRegistration supportsAdditiveRegistration
No value
h225.NULL
h225.supportsAltGK supportsAltGK
No value
h225.NULL
h225.supportsAssignedGK supportsAssignedGK
Boolean
h225.BOOLEAN
h225.symmetricOperationRequired symmetricOperationRequired
No value
h225.NULL
h225.systemAccessType systemAccessType
Byte array
h225.OCTET_STRING_SIZE_1
h225.systemMyTypeCode systemMyTypeCode
Byte array
h225.OCTET_STRING_SIZE_1
h225.system_id system-id
Unsigned 32-bit integer
h225.T_system_id
h225.t120OnlyGwCallsAvailable t120OnlyGwCallsAvailable
Unsigned 32-bit integer
h225.SEQUENCE_OF_CallsAvailable
h225.t120OnlyGwCallsAvailable_item Item
No value
h225.CallsAvailable
h225.t120_only t120-only
No value
h225.T120OnlyCaps
h225.t35CountryCode t35CountryCode
Unsigned 32-bit integer
h225.T_t35CountryCode
h225.t35Extension t35Extension
Unsigned 32-bit integer
h225.T_t35Extension
h225.t38FaxAnnexbOnly t38FaxAnnexbOnly
No value
h225.T38FaxAnnexbOnlyCaps
h225.t38FaxAnnexbOnlyGwCallsAvailable t38FaxAnnexbOnlyGwCallsAvailable
Unsigned 32-bit integer
h225.SEQUENCE_OF_CallsAvailable
h225.t38FaxAnnexbOnlyGwCallsAvailable_item Item
No value
h225.CallsAvailable
h225.t38FaxProfile t38FaxProfile
No value
h245.T38FaxProfile
h225.t38FaxProtocol t38FaxProtocol
Unsigned 32-bit integer
h245.DataProtocolCapability
h225.tcp tcp
No value
h225.NULL
h225.telexPartyNumber telexPartyNumber
String
h225.NumberDigits
h225.terminal terminal
No value
h225.TerminalInfo
h225.terminalAlias terminalAlias
Unsigned 32-bit integer
h225.SEQUENCE_OF_AliasAddress
h225.terminalAliasPattern terminalAliasPattern
Unsigned 32-bit integer
h225.SEQUENCE_OF_AddressPattern
h225.terminalAliasPattern_item Item
Unsigned 32-bit integer
h225.AddressPattern
h225.terminalAlias_item Item
Unsigned 32-bit integer
h225.AliasAddress
h225.terminalCallsAvailable terminalCallsAvailable
Unsigned 32-bit integer
h225.SEQUENCE_OF_CallsAvailable
h225.terminalCallsAvailable_item Item
No value
h225.CallsAvailable
h225.terminalExcluded terminalExcluded
No value
h225.NULL
h225.terminalType terminalType
No value
h225.EndpointType
h225.terminationCause terminationCause
No value
h225.NULL
h225.text text
String
h225.IA5String
h225.threadId threadId
h225.GloballyUniqueID
h225.threePartyService threePartyService
Boolean
h225.BOOLEAN
h225.timeStamp timeStamp
Date/Time stamp
h235.TimeStamp
h225.timeToLive timeToLive
Unsigned 32-bit integer
h225.TimeToLive
h225.tls tls
No value
h225.SecurityCapabilities
h225.tmsi tmsi
Byte array
h225.OCTET_STRING_SIZE_1_4
h225.token token
No value
h235.HASHED
h225.tokens tokens
Unsigned 32-bit integer
h225.SEQUENCE_OF_ClearToken
h225.tokens_item Item
No value
h235.ClearToken
h225.totalBandwidthRestriction totalBandwidthRestriction
Unsigned 32-bit integer
h225.BandWidth
h225.transport transport
Unsigned 32-bit integer
h225.TransportAddress
h225.transportID transportID
Unsigned 32-bit integer
h225.TransportAddress
h225.transportNotSupported transportNotSupported
No value
h225.NULL
h225.transportQOS transportQOS
Unsigned 32-bit integer
h225.TransportQOS
h225.transportQOSNotSupported transportQOSNotSupported
No value
h225.NULL
h225.transportedInformation transportedInformation
No value
h225.NULL
h225.ttlExpired ttlExpired
No value
h225.NULL
h225.tunnelledProtocolAlternateID tunnelledProtocolAlternateID
No value
h225.TunnelledProtocolAlternateIdentifier
h225.tunnelledProtocolID tunnelledProtocolID
No value
h225.TunnelledProtocol
h225.tunnelledProtocolObjectID tunnelledProtocolObjectID
h225.T_tunnelledProtocolObjectID
h225.tunnelledSignallingMessage tunnelledSignallingMessage
No value
h225.T_tunnelledSignallingMessage
h225.tunnelledSignallingRejected tunnelledSignallingRejected
No value
h225.NULL
h225.tunnellingRequired tunnellingRequired
No value
h225.NULL
h225.unallocatedNumber unallocatedNumber
No value
h225.NULL
h225.undefinedNode undefinedNode
Boolean
h225.BOOLEAN
h225.undefinedReason undefinedReason
No value
h225.NULL
h225.unicode unicode
String
h225.BMPString
h225.unknown unknown
No value
h225.NULL
h225.unknownMessageResponse unknownMessageResponse
No value
h225.UnknownMessageResponse
h225.unreachableDestination unreachableDestination
No value
h225.NULL
h225.unreachableGatekeeper unreachableGatekeeper
No value
h225.NULL
h225.unregistrationConfirm unregistrationConfirm
No value
h225.UnregistrationConfirm
h225.unregistrationReject unregistrationReject
No value
h225.UnregistrationReject
h225.unregistrationRequest unregistrationRequest
No value
h225.UnregistrationRequest
h225.unsolicited unsolicited
Boolean
h225.BOOLEAN
h225.url url
String
h225.IA5String_SIZE_0_512
h225.url_ID url-ID
String
h225.IA5String_SIZE_1_512
h225.usageInfoRequested usageInfoRequested
No value
h225.RasUsageInfoTypes
h225.usageInformation usageInformation
No value
h225.RasUsageInformation
h225.usageReportingCapability usageReportingCapability
No value
h225.RasUsageInfoTypes
h225.usageSpec usageSpec
Unsigned 32-bit integer
h225.SEQUENCE_OF_RasUsageSpecification
h225.usageSpec_item Item
No value
h225.RasUsageSpecification
h225.useGKCallSignalAddressToAnswer useGKCallSignalAddressToAnswer
Boolean
h225.BOOLEAN
h225.useGKCallSignalAddressToMakeCall useGKCallSignalAddressToMakeCall
Boolean
h225.BOOLEAN
h225.useSpecifiedTransport useSpecifiedTransport
Unsigned 32-bit integer
h225.UseSpecifiedTransport
h225.user_data user-data
No value
h225.T_user_data
h225.user_information user-information
Byte array
h225.OCTET_STRING_SIZE_1_131
h225.uuiesRequested uuiesRequested
No value
h225.UUIEsRequested
h225.vendor vendor
No value
h225.VendorIdentifier
h225.versionId versionId
String
h225.OCTET_STRING_SIZE_1_256
h225.video video
Unsigned 32-bit integer
h225.SEQUENCE_OF_RTPSession
h225.video_item Item
No value
h225.RTPSession
h225.voice voice
No value
h225.VoiceCaps
h225.voiceGwCallsAvailable voiceGwCallsAvailable
Unsigned 32-bit integer
h225.SEQUENCE_OF_CallsAvailable
h225.voiceGwCallsAvailable_item Item
No value
h225.CallsAvailable
h225.vplmn vplmn
String
h225.TBCD_STRING_SIZE_1_4
h225.when when
No value
h225.CapacityReportingSpecification_when
h225.wildcard wildcard
Unsigned 32-bit integer
h225.AliasAddress
h225.willRespondToIRR willRespondToIRR
Boolean
h225.BOOLEAN
h225.willSupplyUUIEs willSupplyUUIEs
Boolean
h225.BOOLEAN
hpext.dxsap DXSAP
Unsigned 16-bit integer
hpext.sxsap SXSAP
Unsigned 16-bit integer
rmp.filename Filename
String
rmp.machtype Machine Type
String
rmp.offset Offset
Unsigned 32-bit integer
rmp.retcode Returncode
Unsigned 8-bit integer
rmp.seqnum Sequence Number
Unsigned 32-bit integer
rmp.sessionid Session ID
Unsigned 16-bit integer
rmp.size Size
Unsigned 16-bit integer
rmp.type Type
Unsigned 8-bit integer
rmp.version Version
Unsigned 16-bit integer
hpsw.tlv_len Length
Unsigned 8-bit integer
hpsw.tlv_type Type
Unsigned 8-bit integer
hpsw.type Type
Unsigned 8-bit integer
hpsw.version Version
Unsigned 8-bit integer
nettl.devid Device ID
Signed 32-bit integer
HP-UX Device ID
nettl.kind Trace Kind
Unsigned 32-bit integer
HP-UX Trace record kind
nettl.pid Process ID (pid/ktid)
Signed 32-bit integer
HP-UX Process/thread id
nettl.subsys Subsystem
Unsigned 16-bit integer
HP-UX Subsystem/Driver
nettl.uid User ID (uid)
Unsigned 16-bit integer
HP-UX User ID
hilscher.information_type Hilscher information block type
Unsigned 8-bit integer
hilscher.net_analyzer.gpio_edge Event type
Unsigned 8-bit integer
hilscher.net_analyzer.gpio_number Event on
Unsigned 8-bit integer
homeplug.cer Channel Estimation Response
No value
Channel Estimation Response
homeplug.cer.bda Bridged Destination Address
6-byte Hardware (MAC) Address
Bridged Destination Address
homeplug.cer.bp Bridge Proxy
Unsigned 8-bit integer
Bridge Proxy
homeplug.cer.cerv Channel Estimation Response Version
Unsigned 8-bit integer
Channel Estimation Response Version
homeplug.cer.mod Modulation Method
Unsigned 8-bit integer
Modulation Method
homeplug.cer.nbdas Number Bridged Destination Addresses
Unsigned 8-bit integer
Number Bridged Destination Addresses
homeplug.cer.rate FEC Rate
Unsigned 8-bit integer
FEC Rate
homeplug.cer.rsvd1 Reserved
No value
Reserved
homeplug.cer.rsvd2 Reserved
Unsigned 8-bit integer
Reserved
homeplug.cer.rxtmi Receive Tone Map Index
Unsigned 8-bit integer
Receive Tone Map Index
homeplug.cer.vt Valid Tone Flags
Unsigned 8-bit integer
Valid Tone Flags
homeplug.cer.vt11 Valid Tone Flags [83-80]
Unsigned 8-bit integer
Valid Tone Flags [83-80]
homeplug.mctrl MAC Control Field
Unsigned 8-bit integer
MAC Control Field
homeplug.mctrl.ne Number of MAC Data Entries
Unsigned 8-bit integer
Number of MAC Data Entries
homeplug.mctrl.rsvd Reserved
No value
Reserved
homeplug.mehdr MAC Management Entry Header
No value
MAC Management Entry Header
homeplug.mehdr.metype MAC Entry Type
Unsigned 8-bit integer
MAC Entry Type
homeplug.mehdr.mev MAC Entry Version
Unsigned 8-bit integer
MAC Entry Version
homeplug.melen MAC Management Entry Length
Unsigned 8-bit integer
MAC Management Entry Length
homeplug.mmentry MAC Management Entry Data
Unsigned 8-bit integer
MAC Management Entry Data
homeplug.ns Network Statistics Basic
No value
Network Statistics Basic
homeplug.ns.ac Action Control
Boolean
Action Control
homeplug.ns.bytes40 Bytes in 40 symbols
Unsigned 16-bit integer
Bytes in 40 symbols
homeplug.ns.bytes40_robo Bytes in 40 symbols in ROBO
Unsigned 16-bit integer
Bytes in 40 symbols in ROBO
homeplug.ns.drops Frame Drops
Unsigned 16-bit integer
Frame Drops
homeplug.ns.drops_robo Frame Drops in ROBO
Unsigned 16-bit integer
Frame Drops in ROBO
homeplug.ns.fails Fails Received
Unsigned 16-bit integer
Fails Received
homeplug.ns.fails_robo Fails Received in ROBO
Unsigned 16-bit integer
Fails Received in ROBO
homeplug.ns.icid IC_ID
Unsigned 8-bit integer
IC_ID
homeplug.ns.netw_da Address of Network DA
6-byte Hardware (MAC) Address
Address of Network DA
homeplug.psr Parameters and Statistics Response
No value
Parameters and Statistics Response
homeplug.psr.rxbp40 Receive Cumulative Bytes per 40-symbol
Unsigned 32-bit integer
Receive Cumulative Bytes per 40-symbol
homeplug.psr.txack Transmit ACK Counter
Unsigned 16-bit integer
Transmit ACK Counter
homeplug.psr.txca0lat Transmit CA0 Latency Counter
Unsigned 16-bit integer
Transmit CA0 Latency Counter
homeplug.psr.txca1lat Transmit CA1 Latency Counter
Unsigned 16-bit integer
Transmit CA1 Latency Counter
homeplug.psr.txca2lat Transmit CA2 Latency Counter
Unsigned 16-bit integer
Transmit CA2 Latency Counter
homeplug.psr.txca3lat Transmit CA3 Latency Counter
Unsigned 16-bit integer
Transmit CA3 Latency Counter
homeplug.psr.txcloss Transmit Contention Loss Counter
Unsigned 16-bit integer
Transmit Contention Loss Counter
homeplug.psr.txcoll Transmit Collision Counter
Unsigned 16-bit integer
Transmit Collision Counter
homeplug.psr.txfail Transmit FAIL Counter
Unsigned 16-bit integer
Transmit FAIL Counter
homeplug.psr.txnack Transmit NACK Counter
Unsigned 16-bit integer
Transmit NACK Counter
homeplug.rce Request Channel Estimation
No value
Request Channel Estimation
homeplug.rce.cev Channel Estimation Version
Unsigned 8-bit integer
Channel Estimation Version
homeplug.rce.rsvd Reserved
No value
Reserved
homeplug.rps Request Parameters and Statistics
No value
Request Parameters and Statistics
hclnfsd.access Access
Unsigned 32-bit integer
Access
hclnfsd.authorize.ident.obscure Obscure Ident
String
Authentication Obscure Ident
hclnfsd.cookie Cookie
Unsigned 32-bit integer
Cookie
hclnfsd.copies Copies
Unsigned 32-bit integer
Copies
hclnfsd.device Device
String
Device
hclnfsd.exclusive Exclusive
Unsigned 32-bit integer
Exclusive
hclnfsd.fileext File Extension
Unsigned 32-bit integer
File Extension
hclnfsd.filename Filename
String
Filename
hclnfsd.gid GID
Unsigned 32-bit integer
Group ID
hclnfsd.group Group
String
Group
hclnfsd.host_ip Host IP
IPv4 address
Host IP
hclnfsd.hostname Hostname
String
Hostname
hclnfsd.jobstatus Job Status
Unsigned 32-bit integer
Job Status
hclnfsd.length Length
Unsigned 32-bit integer
Length
hclnfsd.lockname Lockname
String
Lockname
hclnfsd.lockowner Lockowner
Byte array
Lockowner
hclnfsd.logintext Login Text
String
Login Text
hclnfsd.mode Mode
Unsigned 32-bit integer
Mode
hclnfsd.npp Number of Physical Printers
Unsigned 32-bit integer
Number of Physical Printers
hclnfsd.offset Offset
Unsigned 32-bit integer
Offset
hclnfsd.pqn Print Queue Number
Unsigned 32-bit integer
Print Queue Number
hclnfsd.printername Printer Name
String
Printer name
hclnfsd.printparameters Print Parameters
String
Print Parameters
hclnfsd.printqueuecomment Comment
String
Print Queue Comment
hclnfsd.printqueuename Name
String
Print Queue Name
hclnfsd.procedure_v1 V1 Procedure
Unsigned 32-bit integer
V1 Procedure
hclnfsd.queuestatus Queue Status
Unsigned 32-bit integer
Queue Status
hclnfsd.request_type Request Type
Unsigned 32-bit integer
Request Type
hclnfsd.sequence Sequence
Unsigned 32-bit integer
Sequence
hclnfsd.server_ip Server IP
IPv4 address
Server IP
hclnfsd.size Size
Unsigned 32-bit integer
Size
hclnfsd.status Status
Unsigned 32-bit integer
Status
hclnfsd.timesubmitted Time Submitted
Unsigned 32-bit integer
Time Submitted
hclnfsd.uid UID
Unsigned 32-bit integer
User ID
hclnfsd.unknown_data Unknown
Byte array
Data
hclnfsd.username Username
String
Username
hyperscsi.cmd HyperSCSI Command
Unsigned 8-bit integer
hyperscsi.fragno Fragment No
Unsigned 16-bit integer
hyperscsi.lastfrag Last Fragment
Boolean
hyperscsi.reserved Reserved
Unsigned 8-bit integer
hyperscsi.tagno Tag No
Unsigned 16-bit integer
hyperscsi.version HyperSCSI Version
Unsigned 8-bit integer
http.accept Accept
String
HTTP Accept
http.accept_encoding Accept Encoding
String
HTTP Accept Encoding
http.accept_language Accept-Language
String
HTTP Accept Language
http.authbasic Credentials
String
http.authorization Authorization
String
HTTP Authorization header
http.cache_control Cache-Control
String
HTTP Cache Control
http.connection Connection
String
HTTP Connection
http.content_encoding Content-Encoding
String
HTTP Content-Encoding header
http.content_length Content-Length
Unsigned 32-bit integer
HTTP Content-Length header
http.content_type Content-Type
String
HTTP Content-Type header
http.cookie Cookie
String
HTTP Cookie
http.date Date
String
HTTP Date
http.host Host
String
HTTP Host
http.last_modified Last-Modified
String
HTTP Last Modified
http.location Location
String
HTTP Location
http.notification Notification
Boolean
TRUE if HTTP notification
http.proxy_authenticate Proxy-Authenticate
String
HTTP Proxy-Authenticate header
http.proxy_authorization Proxy-Authorization
String
HTTP Proxy-Authorization header
http.proxy_connect_host Proxy-Connect-Hostname
String
HTTP Proxy Connect Hostname
http.proxy_connect_port Proxy-Connect-Port
Unsigned 16-bit integer
HTTP Proxy Connect Port
http.referer Referer
String
HTTP Referer
http.request Request
Boolean
TRUE if HTTP request
http.request.method Request Method
String
HTTP Request Method
http.request.uri Request URI
String
HTTP Request-URI
http.request.version Request Version
String
HTTP Request HTTP-Version
http.response Response
Boolean
TRUE if HTTP response
http.response.code Response Code
Unsigned 16-bit integer
HTTP Response Code
http.server Server
String
HTTP Server
http.set_cookie Set-Cookie
String
HTTP Set Cookie
http.transfer_encoding Transfer-Encoding
String
HTTP Transfer-Encoding header
http.user_agent User-Agent
String
HTTP User-Agent header
http.www_authenticate WWW-Authenticate
String
HTTP WWW-Authenticate header
http.x_forwarded_for X-Forwarded-For
String
HTTP X-Forwarded-For
cba.acco.cb_conn_data CBA Connection data
No value
cba.acco.cb_count Count
Unsigned 16-bit integer
cba.acco.cb_flags Flags
Unsigned 8-bit integer
cba.acco.cb_item Item
No value
cba.acco.cb_item_data Data(Hex)
Byte array
cba.acco.cb_item_hole Hole
No value
cba.acco.cb_item_length Length
Unsigned 16-bit integer
cba.acco.cb_length Length
Unsigned 32-bit integer
cba.acco.cb_version Version
Unsigned 8-bit integer
cba.connect_in Connect in frame
Frame number
This connection Connect was in the packet with this number
cba.data_first_in First data in frame
Frame number
The first data of this connection/frame in the packet with this number
cba.data_last_in Last data in frame
Frame number
The last data of this connection/frame in the packet with this number
cba.disconnect_in Disconnect in frame
Frame number
This connection Disconnect was in the packet with this number
cba.disconnectme_in DisconnectMe in frame
Frame number
This connection/frame DisconnectMe was in the packet with this number
cba.acco.addconnectionin ADDCONNECTIONIN
No value
cba.acco.addconnectionout ADDCONNECTIONOUT
No value
cba.acco.cdb_cookie CDBCookie
Unsigned 32-bit integer
cba.acco.conn_cons_id ConsumerID
Unsigned 32-bit integer
cba.acco.conn_consumer Consumer
String
cba.acco.conn_consumer_item ConsumerItem
String
cba.acco.conn_epsilon Epsilon
No value
cba.acco.conn_error_state ConnErrorState
Unsigned 32-bit integer
cba.acco.conn_persist Persistence
Unsigned 16-bit integer
cba.acco.conn_prov_id ProviderID
Unsigned 32-bit integer
cba.acco.conn_provider Provider
String
cba.acco.conn_provider_item ProviderItem
String
cba.acco.conn_qos_type QoSType
Unsigned 16-bit integer
cba.acco.conn_qos_value QoSValue
Unsigned 16-bit integer
cba.acco.conn_state State
Unsigned 8-bit integer
cba.acco.conn_substitute Substitute
No value
cba.acco.conn_version ConnVersion
Unsigned 16-bit integer
cba.acco.connectin CONNECTIN
No value
cba.acco.connectincr CONNECTINCR
No value
cba.acco.connectout CONNECTOUT
No value
cba.acco.connectoutcr CONNECTOUTCR
No value
cba.acco.count Count
Unsigned 32-bit integer
cba.acco.data Data
No value
cba.acco.dcom DcomRuntime
Boolean
This is a DCOM runtime context
cba.acco.diag_data Data
Byte array
cba.acco.diag_in_length InLength
Unsigned 32-bit integer
cba.acco.diag_out_length OutLength
Unsigned 32-bit integer
cba.acco.diag_req Request
Unsigned 32-bit integer
cba.acco.diagconsconnout DIAGCONSCONNOUT
No value
cba.acco.getconnectionout GETCONNECTIONOUT
No value
cba.acco.getconsconnout GETCONSCONNOUT
No value
cba.acco.getidout GETIDOUT
No value
cba.acco.info_curr Current
Unsigned 32-bit integer
cba.acco.info_max Max
Unsigned 32-bit integer
cba.acco.item Item
String
cba.acco.opnum Operation
Unsigned 16-bit integer
Operation
cba.acco.ping_factor PingFactor
Unsigned 16-bit integer
cba.acco.prov_crid ProviderCRID
Unsigned 32-bit integer
cba.acco.qc QualityCode
Unsigned 8-bit integer
cba.acco.readitemout ReadItemOut
No value
cba.acco.rtauto RTAuto
String
cba.acco.srt SrtRuntime
Boolean
This is an SRT runtime context
cba.acco.time_stamp TimeStamp
Unsigned 64-bit integer
cba.acco.writeitemin WriteItemIn
No value
cba.acco.getprovconnout GETPROVCONNOUT
No value
cba.acco.server_first_connect FirstConnect
Unsigned 8-bit integer
cba.acco.server_pICBAAccoCallback pICBAAccoCallback
Byte array
cba.acco.serversrt_action Action
Unsigned 32-bit integer
cba.acco.serversrt_cons_mac ConsumerMAC
6-byte Hardware (MAC) Address
cba.acco.serversrt_cr_flags Flags
Unsigned 32-bit integer
cba.acco.serversrt_cr_flags_reconfigure Reconfigure
Boolean
cba.acco.serversrt_cr_flags_timestamped Timestamped
Boolean
cba.acco.serversrt_cr_id ConsumerCRID
Unsigned 16-bit integer
cba.acco.serversrt_cr_length CRLength
Unsigned 16-bit integer
cba.acco.serversrt_last_connect LastConnect
Unsigned 8-bit integer
cba.acco.serversrt_prov_mac ProviderMAC
6-byte Hardware (MAC) Address
cba.acco.serversrt_record_length RecordLength
Unsigned 16-bit integer
cba.acco.type_desc_len TypeDescLen
Unsigned 16-bit integer
cba.browse.access_right AccessRights
No value
cba.browse.count Count
Unsigned 32-bit integer
cba.browse.data_type DataTypes
No value
cba.browse.info1 Info1
No value
cba.browse.info2 Info2
No value
cba.browse.item ItemNames
No value
cba.browse.max_return MaxReturn
Unsigned 32-bit integer
cba.browse.offset Offset
Unsigned 32-bit integer
cba.browse.selector Selector
Unsigned 32-bit integer
cba.cookie Cookie
Unsigned 32-bit integer
cba.grouperror GroupError
Unsigned 16-bit integer
cba.grouperror_new NewGroupError
Unsigned 16-bit integer
cba.grouperror_old OldGroupError
Unsigned 16-bit integer
cba.opnum Operation
Unsigned 16-bit integer
Operation
cba.production_date ProductionDate
Double-precision floating point
cba.serial_no SerialNo
No value
cba.state State
Unsigned 16-bit integer
cba.state_new NewState
Unsigned 16-bit integer
cba.state_old OldState
Unsigned 16-bit integer
cba.time Time
Double-precision floating point
cba.component_id ComponentID
String
cba.component_version Version
String
cba.multi_app MultiApp
Unsigned 16-bit integer
cba.name Name
String
cba.pbaddress PROFIBUS Address
No value
cba.pbaddress.address Address
Unsigned 8-bit integer
cba.pbaddress.system_id SystemID
Unsigned 8-bit integer
cba.pdev_stamp PDevStamp
Unsigned 32-bit integer
cba.producer Producer
String
cba.product Product
String
cba.profinet_dcom_stack PROFInetDCOMStack
Unsigned 16-bit integer
cba.revision_major Major
Unsigned 16-bit integer
cba.revision_minor Minor
Unsigned 16-bit integer
cba.revision_service_pack ServicePack
Unsigned 16-bit integer
cba.save_ldev_name LDevName
No value
cba.save_result PatialResult
No value
cba_revision_build Build
Unsigned 16-bit integer
icq.checkcode Checkcode
Unsigned 32-bit integer
icq.client_cmd Client command
Unsigned 16-bit integer
icq.decode Decode
String
icq.server_cmd Server command
Unsigned 16-bit integer
icq.sessionid Session ID
Unsigned 32-bit integer
icq.type Type
Unsigned 16-bit integer
icq.uin UIN
Unsigned 32-bit integer
radiotap.antenna Antenna
Unsigned 32-bit integer
Antenna number this frame was sent/received over (starting at 0)
radiotap.channel Channel
Unsigned 32-bit integer
802.11 channel number that this frame was sent/received on
radiotap.channel.freq Channel frequency
Unsigned 32-bit integer
Channel frequency in megahertz that this frame was sent/received on
radiotap.channel.type Channel type
Unsigned 16-bit integer
Channel type
radiotap.channel.type.2ghz 2 GHz spectrum
Boolean
Channel Type 2 GHz spectrum
radiotap.channel.type.5ghz 5 GHz spectrum
Boolean
Channel Type 5 GHz spectrum
radiotap.channel.type.cck Complementary Code Keying (CCK)
Boolean
Channel Type Complementary Code Keying (CCK) Modulation
radiotap.channel.type.dynamic Dynamic CCK-OFDM
Boolean
Channel Type Dynamic CCK-OFDM Channel
radiotap.channel.type.gfsk Gaussian Frequency Shift Keying (GFSK)
Boolean
Channel Type Gaussian Frequency Shift Keying (GFSK) Modulation
radiotap.channel.type.gsm GSM (900MHz)
Boolean
Channel Type GSM
radiotap.channel.type.half Half Rate Channel (10MHz Channel Width)
Boolean
Channel Type Half Rate
radiotap.channel.type.ofdm Orthogonal Frequency-Division Multiplexing (OFDM)
Boolean
Channel Type Orthogonal Frequency-Division Multiplexing (OFDM)
radiotap.channel.type.passive Passive
Boolean
Channel Type Passive
radiotap.channel.type.quarter Quarter Rate Channel (5MHz Channel Width)
Boolean
Channel Type Quarter Rate
radiotap.channel.type.sturbo Static Turbo
Boolean
Channel Type Status Turbo
radiotap.channel.type.turbo Turbo
Boolean
Channel Type Turbo
radiotap.channel.xtype.passive Passive
Boolean
Channel Type Passive
radiotap.datarate Data rate
Unsigned 32-bit integer
Speed this frame was sent/received at
radiotap.db_antnoise SSI Noise (dB)
Unsigned 32-bit integer
RF noise power at the antenna from a fixed, arbitrary value in decibels
radiotap.db_antsignal SSI Signal (dB)
Unsigned 32-bit integer
RF signal power at the antenna from a fixed, arbitrary value in decibels
radiotap.db_txattenuation Transmit attenuation (dB)
Unsigned 16-bit integer
Transmit power expressed as decibels from max power set at factory (0 is max power)
radiotap.dbm_antsignal SSI Signal (dBm)
Signed 32-bit integer
RF signal power at the antenna from a fixed, arbitrary value in decibels from one milliwatt
radiotap.fcs 802.11 FCS
Unsigned 32-bit integer
Frame check sequence of this frame
radiotap.fcs_bad Bad FCS
Boolean
Specifies if this frame has a bad frame check sequence
radiotap.fhss.hopset FHSS Hop Set
Unsigned 8-bit integer
Frequency Hopping Spread Spectrum hopset
radiotap.fhss.pattern FHSS Pattern
Unsigned 8-bit integer
Frequency Hopping Spread Spectrum hop pattern
radiotap.flags Flags
Unsigned 8-bit integer
radiotap.flags.badfcs Bad FCS
Boolean
Frame received with bad FCS
radiotap.flags.cfp CFP
Boolean
Sent/Received during CFP
radiotap.flags.datapad Data Pad
Boolean
Frame has padding between 802.11 header and payload
radiotap.flags.fcs FCS at end
Boolean
Frame includes FCS at end
radiotap.flags.frag Fragmentation
Boolean
Sent/Received with fragmentation
radiotap.flags.preamble Preamble
Boolean
Sent/Received with short preamble
radiotap.flags.shortgi Short GI
Boolean
Frame Sent/Received with HT short Guard Interval
radiotap.flags.wep WEP
Boolean
Sent/Received with WEP encryption
radiotap.length Header length
Unsigned 16-bit integer
Length of header including version, pad, length and data fields
radiotap.mactime MAC timestamp
Unsigned 64-bit integer
Value in microseconds of the MAC's Time Synchronization Function timer when the first bit of the MPDU arrived at the MAC.
radiotap.pad Header pad
Unsigned 8-bit integer
Padding
radiotap.present Present flags
Unsigned 32-bit integer
Bitmask indicating which fields are present
radiotap.present.antenna Antenna
Boolean
Specifies if the antenna number field is present
radiotap.present.channel Channel
Boolean
Specifies if the transmit/receive frequency field is present
radiotap.present.db_antnoise DB Antenna Noise
Boolean
Specifies if the RF signal power at antenna in dBm field is present
radiotap.present.db_antsignal DB Antenna Signal
Boolean
Specifies if the RF signal power at antenna in dB field is present
radiotap.present.db_tx_attenuation DB TX Attenuation
Boolean
Specifies if the transmit power from max power (in dB) field is present
radiotap.present.dbm_antnoise DBM Antenna Noise
Boolean
Specifies if the RF noise power at antenna field is present
radiotap.present.dbm_antsignal DBM Antenna Signal
Boolean
Specifies if the antenna signal strength in dBm is present
radiotap.present.dbm_tx_attenuation DBM TX Attenuation
Boolean
Specifies if the transmit power from max power (in dBm) field is present
radiotap.present.ext Ext
Boolean
Specifies if there are any extensions to the header present
radiotap.present.fcs FCS in header
Boolean
Specifies if the FCS field is present
radiotap.present.fhss FHSS
Boolean
Specifies if the hop set and pattern is present for frequency hopping radios
radiotap.present.flags Flags
Boolean
Specifies if the channel flags field is present
radiotap.present.lock_quality Lock Quality
Boolean
Specifies if the signal quality field is present
radiotap.present.rate Rate
Boolean
Specifies if the transmit/receive rate field is present
radiotap.present.tsft TSFT
Boolean
Specifies if the Time Synchronization Function Timer field is present
radiotap.present.tx_attenuation TX Attenuation
Boolean
Specifies if the transmit power from max power field is present
radiotap.present.xchannel Channel+
Boolean
Specifies if the extended channel info field is present
radiotap.quality Signal Quality
Unsigned 16-bit integer
Signal quality (unitless measure)
radiotap.txattenuation Transmit attenuation
Unsigned 16-bit integer
Transmit power expressed as unitless distance from max power set at factory (0 is max power)
radiotap.txpower Transmit power
Signed 32-bit integer
Transmit power in decibels per one milliwatt (dBm)
radiotap.version Header revision
Unsigned 8-bit integer
Version of radiotap header format
radiotap.xchannel Channel number
Unsigned 32-bit integer
radiotap.xchannel.flags Channel type
Unsigned 32-bit integer
radiotap.xchannel.freq Channel frequency
Unsigned 32-bit integer
radiotap.xchannel.type.2ghz 2 GHz spectrum
Boolean
Channel Type 2 GHz spectrum
radiotap.xchannel.type.5ghz 5 GHz spectrum
Boolean
Channel Type 5 GHz spectrum
radiotap.xchannel.type.cck Complementary Code Keying (CCK)
Boolean
Channel Type Complementary Code Keying (CCK) Modulation
radiotap.xchannel.type.dynamic Dynamic CCK-OFDM
Boolean
Channel Type Dynamic CCK-OFDM Channel
radiotap.xchannel.type.gfsk Gaussian Frequency Shift Keying (GFSK)
Boolean
Channel Type Gaussian Frequency Shift Keying (GFSK) Modulation
radiotap.xchannel.type.gsm GSM (900MHz)
Boolean
Channel Type GSM
radiotap.xchannel.type.half Half Rate Channel (10MHz Channel Width)
Boolean
Channel Type Half Rate
radiotap.xchannel.type.ht20 HT Channel (20MHz Channel Width)
Boolean
Channel Type HT/20
radiotap.xchannel.type.ht40d HT Channel (40MHz Channel Width with Extension channel below)
Boolean
Channel Type HT/40-
radiotap.xchannel.type.ht40u HT Channel (40MHz Channel Width with Extension channel above)
Boolean
Channel Type HT/40+
radiotap.xchannel.type.ofdm Orthogonal Frequency-Division Multiplexing (OFDM)
Boolean
Channel Type Orthogonal Frequency-Division Multiplexing (OFDM)
radiotap.xchannel.type.quarter Quarter Rate Channel (5MHz Channel Width)
Boolean
Channel Type Quarter Rate
radiotap.xchannel.type.sturbo Static Turbo
Boolean
Channel Type Status Turbo
radiotap.xchannel.type.turbo Turbo
Boolean
Channel Type Turbo
radiotap.dbm_antnoise SSI Noise (dBm)
Signed 32-bit integer
RF noise power at the antenna from a fixed, arbitrary value in decibels per one milliwatt
wlan.addr Source or Destination address
6-byte Hardware (MAC) Address
Source or Destination Hardware Address
wlan.aid Association ID
Unsigned 16-bit integer
Association-ID field
wlan.analysis.retransmission Retransmission
No value
This frame is a suspected wireless retransmission
wlan.analysis.retransmission_frame Retransmission of frame
Frame number
This is a retransmission of frame #
wlan.antenna Antenna
Unsigned 32-bit integer
Antenna number this frame was sent/received over (starting at 0)
wlan.ba.basic.tidinfo TID for which a Basic BlockAck frame is requested
Unsigned 16-bit integer
Traffic Identifier (TID) for which a Basic BlockAck frame is requested
wlan.ba.control Block Ack Request Control
Unsigned 16-bit integer
Block Ack Request Control
wlan.ba.control.ackpolicy BAR Ack Policy
Boolean
Block Ack Request (BAR) Ack Policy
wlan.ba.control.cbitmap Compressed Bitmap
Boolean
Compressed Bitmap
wlan.ba.control.multitid Multi-TID
Boolean
Multi-Traffic Identifier (TID)
wlan.ba.mtid.tid Traffic Identifier (TID) Info
Unsigned 8-bit integer
Traffic Identifier (TID) Info
wlan.ba.mtid.tidinfo Number of TIDs Present
Unsigned 16-bit integer
Number of Traffic Identifiers (TIDs) Present
wlan.ba.type Block Ack Request Type
Unsigned 8-bit integer
Block Ack Request Type
wlan.bar.compressed.tidinfo TID for which a BlockAck frame is requested
Unsigned 16-bit integer
Traffic Identifier (TID) for which a BlockAck frame is requested
wlan.bar.control Block Ack Request (BAR) Control
Unsigned 16-bit integer
Block Ack Request (BAR) Control
wlan.bar.mtid.tidinfo.reserved Reserved
Unsigned 16-bit integer
Reserved
wlan.bar.mtid.tidinfo.value Multi-TID Value
Unsigned 16-bit integer
Multi-TID Value
wlan.bar.type Block Ack Request Type
Unsigned 8-bit integer
Block Ack Request (BAR) Type
wlan.bssid BSS Id
6-byte Hardware (MAC) Address
Basic Service Set ID
wlan.ccmp.extiv CCMP Ext. Initialization Vector
String
CCMP Extended Initialization Vector
wlan.channel Channel
Unsigned 8-bit integer
802.11 channel number that this frame was sent/received on
wlan.channel_frequency Channel frequency
Unsigned 32-bit integer
Channel frequency in megahertz that this frame was sent/received on
wlan.controlwrap.addr1 First Address of Contained Frame
6-byte Hardware (MAC) Address
First Address of Contained Frame
wlan.da Destination address
6-byte Hardware (MAC) Address
Destination Hardware Address
wlan.data_rate Data Rate
Unsigned 64-bit integer
Data rate (b/s)
wlan.dbm_antsignal SSI Signal (dBm)
Signed 32-bit integer
RF signal power at the antenna from a fixed, arbitrary value in decibels from one milliwatt
wlan.duration Duration
Unsigned 16-bit integer
Duration field
wlan.fc Frame Control Field
Unsigned 16-bit integer
MAC Frame control
wlan.fc.ds DS status
Unsigned 8-bit integer
Data-frame DS-traversal status
wlan.fc.frag More Fragments
Boolean
More Fragments flag
wlan.fc.fromds From DS
Boolean
From DS flag
wlan.fc.moredata More Data
Boolean
More data flag
wlan.fc.order Order flag
Boolean
Strictly ordered flag
wlan.fc.protected Protected flag
Boolean
Protected flag
wlan.fc.pwrmgt PWR MGT
Boolean
Power management status
wlan.fc.retry Retry
Boolean
Retransmission flag
wlan.fc.subtype Subtype
Unsigned 8-bit integer
Frame subtype
wlan.fc.tods To DS
Boolean
To DS flag
wlan.fc.type Type
Unsigned 8-bit integer
Frame type
wlan.fc.type_subtype Type/Subtype
Unsigned 8-bit integer
Type and subtype combined (first byte: type, second byte: subtype)
wlan.fc.version Version
Unsigned 8-bit integer
MAC Protocol version
wlan.fcs Frame check sequence
Unsigned 32-bit integer
Frame Check Sequence (FCS)
wlan.fcs_bad Bad
Boolean
True if the FCS is incorrect
wlan.fcs_good Good
Boolean
True if the FCS is correct
wlan.flags Protocol Flags
Unsigned 8-bit integer
Protocol flags
wlan.frag Fragment number
Unsigned 16-bit integer
Fragment number
wlan.fragment 802.11 Fragment
Frame number
802.11 Fragment
wlan.fragment.error Defragmentation error
Frame number
Defragmentation error due to illegal fragments
wlan.fragment.multipletails Multiple tail fragments found
Boolean
Several tails were found when defragmenting the packet
wlan.fragment.overlap Fragment overlap
Boolean
Fragment overlaps with other fragments
wlan.fragment.overlap.conflict Conflicting data in fragment overlap
Boolean
Overlapping fragments contained conflicting data
wlan.fragment.toolongfragment Fragment too long
Boolean
Fragment contained data past end of packet
wlan.fragments 802.11 Fragments
No value
802.11 Fragments
wlan.hosttime Host timestamp
Unsigned 64-bit integer
wlan.mactime MAC timestamp
Unsigned 64-bit integer
Value in microseconds of the MAC's Time Synchronization Function timer when the first bit of the MPDU arrived at the MAC
wlan.normrssi_antnoise Normalized RSSI Noise
Unsigned 32-bit integer
RF noise power at the antenna, normalized to the range 0-1000
wlan.normrssi_antsignal Normalized RSSI Signal
Unsigned 32-bit integer
RF signal power at the antenna, normalized to the range 0-1000
wlan.qos.ack Ack Policy
Unsigned 8-bit integer
Ack Policy
wlan.qos.amsdupresent Payload Type
Boolean
Payload Type
wlan.qos.eosp EOSP
Boolean
EOSP Field
wlan.qos.fc_content Content
Unsigned 16-bit integer
Content1
wlan.qos.priority Priority
Unsigned 16-bit integer
802.1D Tag
wlan.ra Receiver address
6-byte Hardware (MAC) Address
Receiving Station Hardware Address
wlan.rawrssi_antnoise Raw RSSI Noise
Unsigned 32-bit integer
RF noise power at the antenna, reported as RSSI by the adapter
wlan.rawrssi_antsignal Raw RSSI Signal
Unsigned 32-bit integer
RF signal power at the antenna, reported as RSSI by the adapter
wlan.reassembled_in Reassembled 802.11 in frame
Frame number
This 802.11 packet is reassembled in this frame
wlan.sa Source address
6-byte Hardware (MAC) Address
Source Hardware Address
wlan.seq Sequence number
Unsigned 16-bit integer
Sequence number
wlan.signal_strength Signal Strength
Unsigned 8-bit integer
Signal strength (Percentage)
wlan.ta Transmitter address
6-byte Hardware (MAC) Address
Transmitting Station Hardware Address
wlan.tkip.extiv TKIP Ext. Initialization Vector
String
TKIP Extended Initialization Vector
wlan.wep.icv WEP ICV
Unsigned 32-bit integer
WEP ICV
wlan.wep.iv Initialization Vector
Unsigned 24-bit integer
Initialization Vector
wlan.wep.key Key Index
Unsigned 8-bit integer
Key Index
wlan.wep.weakiv Weak IV
Boolean
Weak IV
wlan_aggregate.msduheader MAC Service Data Unit (MSDU)
Unsigned 16-bit integer
MAC Service Data Unit (MSDU)
wlan_mgt.aironet.data Aironet IE data
Byte array
Aironet IE data
wlan_mgt.aironet.qos.paramset Aironet IE QoS paramset
Unsigned 8-bit integer
Aironet IE QoS paramset
wlan_mgt.aironet.qos.unk1 Aironet IE QoS unknown 1
Unsigned 8-bit integer
Aironet IE QoS unknown 1
wlan_mgt.aironet.qos.val Aironet IE QoS valueset
Byte array
Aironet IE QoS valueset
wlan_mgt.aironet.type Aironet IE type
Unsigned 8-bit integer
Aironet IE type
wlan_mgt.aironet.version Aironet IE CCX version?
Unsigned 8-bit integer
Aironet IE CCX version?
wlan_mgt.asel Antenna Selection (ASEL) Capabilities
Unsigned 8-bit integer
Antenna Selection (ASEL) Capabilities
wlan_mgt.asel.capable Antenna Selection Capable
Boolean
Antenna Selection Capable
wlan_mgt.asel.csi Explicit CSI Feedback
Boolean
Explicit CSI Feedback
wlan_mgt.asel.if Antenna Indices Feedback
Boolean
Antenna Indices Feedback
wlan_mgt.asel.reserved Reserved
Unsigned 8-bit integer
Reserved
wlan_mgt.asel.rx Rx ASEL
Boolean
Rx ASEL
wlan_mgt.asel.sppdu Tx Sounding PPDUs
Boolean
Tx Sounding PPDUs
wlan_mgt.asel.txcsi Explicit CSI Feedback Based Tx ASEL
Boolean
Explicit CSI Feedback Based Tx ASEL
wlan_mgt.asel.txif Antenna Indices Feedback Based Tx ASEL
Boolean
Antenna Indices Feedback Based Tx ASEL
wlan_mgt.extcap.infoexchange HT Information Exchange Support
Unsigned 8-bit integer
HT Information Exchange Support
wlan_mgt.extchanswitch.new.channumber New Channel Number
Unsigned 8-bit integer
New Channel Number
wlan_mgt.extchanswitch.new.regclass New Regulatory Class
Unsigned 8-bit integer
New Regulatory Class
wlan_mgt.extchanswitch.switchcount Channel Switch Count
Unsigned 8-bit integer
Channel Switch Count
wlan_mgt.extchanswitch.switchmode Channel Switch Mode
Unsigned 8-bit integer
Channel Switch Mode
wlan_mgt.fixed.action Action
Unsigned 8-bit integer
Action
wlan_mgt.fixed.action_code Action code
Unsigned 16-bit integer
Management action code
wlan_mgt.fixed.aid Association ID
Unsigned 16-bit integer
Association ID
wlan_mgt.fixed.all Fixed parameters
Unsigned 16-bit integer
Fixed parameters
wlan_mgt.fixed.antsel Antenna Selection
Unsigned 8-bit integer
Antenna Selection
wlan_mgt.fixed.antsel.ant0 Antenna 0
Unsigned 8-bit integer
Antenna 0
wlan_mgt.fixed.antsel.ant1 Antenna 1
Unsigned 8-bit integer
Antenna 1
wlan_mgt.fixed.antsel.ant2 Antenna 2
Unsigned 8-bit integer
Antenna 2
wlan_mgt.fixed.antsel.ant3 Antenna 3
Unsigned 8-bit integer
Antenna 3
wlan_mgt.fixed.antsel.ant4 Antenna 4
Unsigned 8-bit integer
Antenna 4
wlan_mgt.fixed.antsel.ant5 Antenna 5
Unsigned 8-bit integer
Antenna 5
wlan_mgt.fixed.antsel.ant6 Antenna 6
Unsigned 8-bit integer
Antenna 6
wlan_mgt.fixed.antsel.ant7 Antenna 7
Unsigned 8-bit integer
Antenna 7
wlan_mgt.fixed.auth.alg Authentication Algorithm
Unsigned 16-bit integer
Authentication Algorithm
wlan_mgt.fixed.auth_seq Authentication SEQ
Unsigned 16-bit integer
Authentication Sequence Number
wlan_mgt.fixed.baparams Block Ack Parameters
Unsigned 16-bit integer
Block Ack Parameters
wlan_mgt.fixed.baparams.amsdu A-MSDUs
Boolean
A-MSDU Permitted in QoS Data MPDUs
wlan_mgt.fixed.baparams.buffersize Number of Buffers (1 Buffer = 2304 Bytes)
Unsigned 16-bit integer
Number of Buffers
wlan_mgt.fixed.baparams.policy Block Ack Policy
Boolean
Block Ack Policy
wlan_mgt.fixed.baparams.tid Traffic Identifier
Unsigned 8-bit integer
Traffic Identifier
wlan_mgt.fixed.batimeout Block Ack Timeout
Unsigned 16-bit integer
Block Ack Timeout
wlan_mgt.fixed.beacon Beacon Interval
Double-precision floating point
Beacon Interval
wlan_mgt.fixed.capabilities Capabilities
Unsigned 16-bit integer
Capability information
wlan_mgt.fixed.capabilities.agility Channel Agility
Boolean
Channel Agility
wlan_mgt.fixed.capabilities.apsd Automatic Power Save Delivery
Boolean
Automatic Power Save Delivery
wlan_mgt.fixed.capabilities.cfpoll.ap CFP participation capabilities
Unsigned 16-bit integer
CF-Poll capabilities for an AP
wlan_mgt.fixed.capabilities.cfpoll.sta CFP participation capabilities
Unsigned 16-bit integer
CF-Poll capabilities for a STA
wlan_mgt.fixed.capabilities.del_blk_ack Delayed Block Ack
Boolean
Delayed Block Ack
wlan_mgt.fixed.capabilities.dsss_ofdm DSSS-OFDM
Boolean
DSSS-OFDM Modulation
wlan_mgt.fixed.capabilities.ess ESS capabilities
Boolean
ESS capabilities
wlan_mgt.fixed.capabilities.ibss IBSS status
Boolean
IBSS participation
wlan_mgt.fixed.capabilities.imm_blk_ack Immediate Block Ack
Boolean
Immediate Block Ack
wlan_mgt.fixed.capabilities.pbcc PBCC
Boolean
PBCC Modulation
wlan_mgt.fixed.capabilities.preamble Short Preamble
Boolean
Short Preamble
wlan_mgt.fixed.capabilities.privacy Privacy
Boolean
WEP support
wlan_mgt.fixed.capabilities.short_slot_time Short Slot Time
Boolean
Short Slot Time
wlan_mgt.fixed.capabilities.spec_man Spectrum Management
Boolean
Spectrum Management
wlan_mgt.fixed.category_code Category code
Unsigned 16-bit integer
Management action category
wlan_mgt.fixed.chanwidth Supported Channel Width
Unsigned 8-bit integer
Supported Channel Width
wlan_mgt.fixed.country Country String
String
Country String
wlan_mgt.fixed.current_ap Current AP
6-byte Hardware (MAC) Address
MAC address of current AP
wlan_mgt.fixed.delba.param Delete Block Ack (DELBA) Parameter Set
Unsigned 16-bit integer
Delete Block Ack (DELBA) Parameter Set
wlan_mgt.fixed.delba.param.initiator Initiator
Boolean
Initiator
wlan_mgt.fixed.delba.param.reserved Reserved
Unsigned 16-bit integer
Reserved
wlan_mgt.fixed.delba.param.tid TID
Unsigned 16-bit integer
Traffic Identifier (TID)
wlan_mgt.fixed.dialog_token Dialog token
Unsigned 8-bit integer
Management action dialog token
wlan_mgt.fixed.dls_timeout DLS timeout
Unsigned 16-bit integer
DLS timeout value
wlan_mgt.fixed.dst_mac_addr Destination address
6-byte Hardware (MAC) Address
Destination MAC address
wlan_mgt.fixed.extchansw Extended Channel Switch Announcement
Unsigned 32-bit integer
wlan_mgt.fixed.fragment Fragment
Unsigned 16-bit integer
Fragment
wlan_mgt.fixed.htact HT Action
Unsigned 8-bit integer
HT Action Code
wlan_mgt.fixed.listen_ival Listen Interval
Unsigned 16-bit integer
Listen Interval
wlan_mgt.fixed.maxregpwr Maximum Regulation Power
Unsigned 16-bit integer
Maximum Regulation Power
wlan_mgt.fixed.maxtxpwr Maximum Transmit Power
Unsigned 8-bit integer
Maximum Transmit Power
wlan_mgt.fixed.mimo.control.chanwidth Channel Width
Boolean
Channel Width
wlan_mgt.fixed.mimo.control.codebookinfo Codebook Information
Unsigned 16-bit integer
Codebook Information
wlan_mgt.fixed.mimo.control.cosize Coefficient Size (Nb)
Unsigned 16-bit integer
Coefficient Size (Nb)
wlan_mgt.fixed.mimo.control.grouping Grouping (Ng)
Unsigned 16-bit integer
Grouping (Ng)
wlan_mgt.fixed.mimo.control.matrixseg Remaining Matrix Segment
Unsigned 16-bit integer
Remaining Matrix Segment
wlan_mgt.fixed.mimo.control.ncindex Nc Index
Unsigned 16-bit integer
Number of Columns Less One
wlan_mgt.fixed.mimo.control.nrindex Nr Index
Unsigned 16-bit integer
Number of Rows Less One
wlan_mgt.fixed.mimo.control.reserved Reserved
Unsigned 16-bit integer
Reserved
wlan_mgt.fixed.mimo.control.soundingtime Sounding Timestamp
Unsigned 32-bit integer
Sounding Timestamp
wlan_mgt.fixed.msmtpilotint Measurement Pilot Interval
Unsigned 16-bit integer
Measurement Pilot Interval Fixed Field
wlan_mgt.fixed.pco.phasecntrl Phased Coexistence Operation (PCO) Phase Control
Boolean
Phased Coexistence Operation (PCO) Phase Control
wlan_mgt.fixed.psmp.paramset Power Save Multi-Poll (PSMP) Parameter Set
Unsigned 16-bit integer
Power Save Multi-Poll (PSMP) Parameter Set
wlan_mgt.fixed.psmp.paramset.more More PSMP
Boolean
More Power Save Multi-Poll (PSMP)
wlan_mgt.fixed.psmp.paramset.nsta Number of STA Info Fields Present
Unsigned 8-bit integer
Number of STA Info Fields Present
wlan_mgt.fixed.psmp.paramset.seqduration PSMP Sequence Duration
Unsigned 16-bit integer
Power Save Multi-Poll (PSMP) Sequence Duration
wlan_mgt.fixed.psmp.stainfo Power Save Multi-Poll (PSMP) Station Information
Unsigned 8-bit integer
Power Save Multi-Poll (PSMP) Station Information
wlan_mgt.fixed.psmp.stainfo.dttduration DTT Duration
Unsigned 8-bit integer
DTT Duration
wlan_mgt.fixed.psmp.stainfo.dttstart DTT Start Offset
Unsigned 16-bit integer
DTT Start Offset
wlan_mgt.fixed.psmp.stainfo.multicastid Power Save Multi-Poll (PSMP) Multicast ID
Unsigned 64-bit integer
Power Save Multi-Poll (PSMP) Multicast ID
wlan_mgt.fixed.psmp.stainfo.reserved Reserved
Unsigned 16-bit integer
Reserved
wlan_mgt.fixed.psmp.stainfo.staid Target Station ID
Unsigned 16-bit integer
Target Station ID
wlan_mgt.fixed.psmp.stainfo.uttduration UTT Duration
Unsigned 16-bit integer
UTT Duration
wlan_mgt.fixed.psmp.stainfo.uttstart UTT Start Offset
Unsigned 16-bit integer
UTT Start Offset
wlan_mgt.fixed.qosinfo.ap QoS Inforamtion (AP)
Unsigned 8-bit integer
QoS Inforamtion (AP)
wlan_mgt.fixed.qosinfo.ap.edcaupdate EDCA Parameter Set Update Count
Unsigned 8-bit integer
Enhanced Distributed Channel Access (EDCA) Parameter Set Update Count
wlan_mgt.fixed.qosinfo.ap.qack Q-Ack
Boolean
QoS Ack
wlan_mgt.fixed.qosinfo.ap.reserved Reserved
Boolean
Reserved
wlan_mgt.fixed.qosinfo.ap.txopreq TXOP Request
Boolean
Transmit Opportunity (TXOP) Request
wlan_mgt.fixed.qosinfo.sta QoS Inforamtion (STA)
Unsigned 8-bit integer
QoS Inforamtion (STA)
wlan_mgt.fixed.qosinfo.sta.ac.be AC_BE
Boolean
AC_BE
wlan_mgt.fixed.qosinfo.sta.ac.bk AC_BK
Boolean
AC_BK
wlan_mgt.fixed.qosinfo.sta.ac.vi AC_VI
Boolean
AC_VI
wlan_mgt.fixed.qosinfo.sta.ac.vo AC_VO
Boolean
AC_VO
wlan_mgt.fixed.qosinfo.sta.moredataack More Data Ack
Boolean
More Data Ack
wlan_mgt.fixed.qosinfo.sta.qack Q-Ack
Boolean
QoS Ack
wlan_mgt.fixed.qosinfo.sta.splen Service Period (SP) Length
Unsigned 8-bit integer
Service Period (SP) Length
wlan_mgt.fixed.reason_code Reason code
Unsigned 16-bit integer
Reason for unsolicited notification
wlan_mgt.fixed.sequence Starting Sequence Number
Unsigned 16-bit integer
Starting Sequence Number
wlan_mgt.fixed.sm.powercontrol Spatial Multiplexing (SM) Power Control
Unsigned 8-bit integer
Spatial Multiplexing (SM) Power Control
wlan_mgt.fixed.sm.powercontrol.enabled SM Power Save
Boolean
Spatial Multiplexing (SM) Power Save
wlan_mgt.fixed.sm.powercontrol.mode SM Mode
Boolean
Spatial Multiplexing (SM) Mode
wlan_mgt.fixed.sm.powercontrol.reserved Reserved
Unsigned 8-bit integer
Reserved
wlan_mgt.fixed.src_mac_addr Source address
6-byte Hardware (MAC) Address
Source MAC address
wlan_mgt.fixed.ssc Block Ack Starting Sequence Control (SSC)
Unsigned 16-bit integer
Block Ack Starting Sequence Control (SSC)
wlan_mgt.fixed.status_code Status code
Unsigned 16-bit integer
Status of requested event
wlan_mgt.fixed.timestamp Timestamp
String
Timestamp
wlan_mgt.fixed.tnoisefloor Transceiver Noise Floor
Unsigned 8-bit integer
Transceiver Noise Floor
wlan_mgt.fixed.txpwr Transmit Power Used
Unsigned 8-bit integer
Transmit Power Used
wlan_mgt.ht.ampduparam A-MPDU Parameters
Unsigned 16-bit integer
A-MPDU Parameters
wlan_mgt.ht.ampduparam.maxlength Maximum Rx A-MPDU Length
Unsigned 8-bit integer
Maximum Rx A-MPDU Length
wlan_mgt.ht.ampduparam.mpdudensity MPDU Density
Unsigned 8-bit integer
MPDU Density
wlan_mgt.ht.ampduparam.reserved Reserved
Unsigned 8-bit integer
Reserved
wlan_mgt.ht.capabilities HT Capabilities Info
Unsigned 16-bit integer
HT Capability information
wlan_mgt.ht.capabilities.40mhzintolerant HT Forty MHz Intolerant
Boolean
HT Forty MHz Intolerant
wlan_mgt.ht.capabilities.amsdu HT Max A-MSDU length
Boolean
HT Max A-MSDU length
wlan_mgt.ht.capabilities.delayedblockack HT Delayed Block ACK
Boolean
HT Delayed Block ACK
wlan_mgt.ht.capabilities.dsscck HT DSSS/CCK mode in 40MHz
Boolean
HT DSS/CCK mode in 40MHz
wlan_mgt.ht.capabilities.green HT Green Field
Boolean
HT Green Field
wlan_mgt.ht.capabilities.ldpccoding HT LDPC coding capability
Boolean
HT LDPC coding capability
wlan_mgt.ht.capabilities.lsig HT L-SIG TXOP Protection support
Boolean
HT L-SIG TXOP Protection support
wlan_mgt.ht.capabilities.psmp HT PSMP Support
Boolean
HT PSMP Support
wlan_mgt.ht.capabilities.rxstbc HT Rx STBC
Unsigned 16-bit integer
HT Tx STBC
wlan_mgt.ht.capabilities.short20 HT Short GI for 20MHz
Boolean
HT Short GI for 20MHz
wlan_mgt.ht.capabilities.short40 HT Short GI for 40MHz
Boolean
HT Short GI for 40MHz
wlan_mgt.ht.capabilities.sm HT SM Power Save
Unsigned 16-bit integer
HT SM Power Save
wlan_mgt.ht.capabilities.txstbc HT Tx STBC
Boolean
HT Tx STBC
wlan_mgt.ht.capabilities.width HT Support channel width
Boolean
HT Support channel width
wlan_mgt.ht.info. Shortest service interval
Unsigned 8-bit integer
Shortest service interval
wlan_mgt.ht.info.burstlim Transmit burst limit
Boolean
Transmit burst limit
wlan_mgt.ht.info.chanwidth Supported channel width
Boolean
Supported channel width
wlan_mgt.ht.info.delim1 HT Information Delimiter #1
Unsigned 8-bit integer
HT Information Delimiter #1
wlan_mgt.ht.info.delim2 HT Information Delimiter #2
Unsigned 16-bit integer
HT Information Delimiter #2
wlan_mgt.ht.info.delim3 HT Information Delimiter #3
Unsigned 16-bit integer
HT Information Delimiter #3
wlan_mgt.ht.info.dualbeacon Dual beacon
Boolean
Dual beacon
wlan_mgt.ht.info.dualcts Dual Clear To Send (CTS) protection
Boolean
Dual Clear To Send (CTS) protection
wlan_mgt.ht.info.greenfield Non-greenfield STAs present
Boolean
Non-greenfield STAs present
wlan_mgt.ht.info.lsigprotsupport L-SIG TXOP Protection Full Support
Boolean
L-SIG TXOP Protection Full Support
wlan_mgt.ht.info.obssnonht OBSS non-HT STAs present
Boolean
OBSS non-HT STAs present
wlan_mgt.ht.info.operatingmode Operating mode of BSS
Unsigned 16-bit integer
Operating mode of BSS
wlan_mgt.ht.info.pco.active Phased Coexistence Operation (PCO)
Boolean
Phased Coexistence Operation (PCO)
wlan_mgt.ht.info.pco.phase Phased Coexistence Operation (PCO) Phase
Boolean
Phased Coexistence Operation (PCO) Phase
wlan_mgt.ht.info.primarychannel Primary Channel
Unsigned 8-bit integer
Primary Channel
wlan_mgt.ht.info.psmponly Power Save Multi-Poll (PSMP) stations only
Boolean
Power Save Multi-Poll (PSMP) stations only
wlan_mgt.ht.info.reserved1 Reserved
Unsigned 16-bit integer
Reserved
wlan_mgt.ht.info.reserved2 Reserved
Unsigned 16-bit integer
Reserved
wlan_mgt.ht.info.reserved3 Reserved
Unsigned 16-bit integer
Reserved
wlan_mgt.ht.info.rifs Reduced Interframe Spacing (RIFS)
Boolean
Reduced Interframe Spacing (RIFS)
wlan_mgt.ht.info.secchanoffset Secondary channel offset
Unsigned 8-bit integer
Secondary channel offset
wlan_mgt.ht.info.secondarybeacon Beacon ID
Boolean
Beacon ID
wlan_mgt.ht.mcsset Rx Supported Modulation and Coding Scheme Set
String
Rx Supported Modulation and Coding Scheme Set
wlan_mgt.ht.mcsset.highestdatarate Highest Supported Data Rate
Unsigned 16-bit integer
Highest Supported Data Rate
wlan_mgt.ht.mcsset.rxbitmask.0to7 Rx Bitmask Bits 0-7
Unsigned 32-bit integer
Rx Bitmask Bits 0-7
wlan_mgt.ht.mcsset.rxbitmask.16to23 Rx Bitmask Bits 16-23
Unsigned 32-bit integer
Rx Bitmask Bits 16-23
wlan_mgt.ht.mcsset.rxbitmask.24to31 Rx Bitmask Bits 24-31
Unsigned 32-bit integer
Rx Bitmask Bits 24-31
wlan_mgt.ht.mcsset.rxbitmask.32 Rx Bitmask Bit 32
Unsigned 32-bit integer
Rx Bitmask Bit 32
wlan_mgt.ht.mcsset.rxbitmask.33to38 Rx Bitmask Bits 33-38
Unsigned 32-bit integer
Rx Bitmask Bits 33-38
wlan_mgt.ht.mcsset.rxbitmask.39to52 Rx Bitmask Bits 39-52
Unsigned 32-bit integer
Rx Bitmask Bits 39-52
wlan_mgt.ht.mcsset.rxbitmask.53to76 Rx Bitmask Bits 53-76
Unsigned 32-bit integer
Rx Bitmask Bits 53-76
wlan_mgt.ht.mcsset.rxbitmask.8to15 Rx Bitmask Bits 8-15
Unsigned 32-bit integer
Rx Bitmask Bits 8-15
wlan_mgt.ht.mcsset.txmaxss Tx Maximum Number of Spatial Streams Supported
Unsigned 16-bit integer
Tx Maximum Number of Spatial Streams Supported
wlan_mgt.ht.mcsset.txrxmcsnotequal Tx and Rx MCS Set
Boolean
Tx and Rx MCS Set
wlan_mgt.ht.mcsset.txsetdefined Tx Supported MCS Set
Boolean
Tx Supported MCS Set
wlan_mgt.ht.mcsset.txunequalmod Unequal Modulation
Boolean
Unequal Modulation
wlan_mgt.hta.capabilities HT Additional Capabilities
Unsigned 16-bit integer
HT Additional Capability information
wlan_mgt.hta.capabilities. Basic STB Modulation and Coding Scheme (MCS)
Unsigned 16-bit integer
Basic STB Modulation and Coding Scheme (MCS)
wlan_mgt.hta.capabilities.controlledaccess Controlled Access Only
Boolean
Controlled Access Only
wlan_mgt.hta.capabilities.extchan Extension Channel Offset
Unsigned 16-bit integer
Extension Channel Offset
wlan_mgt.hta.capabilities.nongfdevices Non Greenfield (GF) devices Present
Boolean
on Greenfield (GF) devices Present
wlan_mgt.hta.capabilities.operatingmode Operating Mode
Unsigned 16-bit integer
Operating Mode
wlan_mgt.hta.capabilities.rectxwidth Recommended Tx Channel Width
Boolean
Recommended Transmit Channel Width
wlan_mgt.hta.capabilities.rifsmode Reduced Interframe Spacing (RIFS) Mode
Boolean
Reduced Interframe Spacing (RIFS) Mode
wlan_mgt.hta.capabilities.serviceinterval Service Interval Granularity
Unsigned 16-bit integer
Service Interval Granularity
wlan_mgt.htc HT Control (+HTC)
Unsigned 32-bit integer
High Throughput Control (+HTC)
wlan_mgt.htc.ac_constraint AC Constraint
Boolean
High Throughput Control AC Constraint
wlan_mgt.htc.cal.pos Calibration Position
Unsigned 16-bit integer
High Throughput Control Calibration Position
wlan_mgt.htc.cal.seq Calibration Sequence Identifier
Unsigned 16-bit integer
High Throughput Control Calibration Sequence Identifier
wlan_mgt.htc.csi_steering CSI/Steering
Unsigned 16-bit integer
High Throughput Control CSI/Steering
wlan_mgt.htc.lac Link Adaptation Control (LAC)
Unsigned 16-bit integer
High Throughput Control Link Adaptation Control (LAC)
wlan_mgt.htc.lac.asel.command Antenna Selection (ASEL) Command
Unsigned 16-bit integer
High Throughput Control Link Adaptation Control Antenna Selection (ASEL) Command
wlan_mgt.htc.lac.asel.data Antenna Selection (ASEL) Data
Unsigned 16-bit integer
High Throughput Control Link Adaptation Control Antenna Selection (ASEL) Data
wlan_mgt.htc.lac.mai.aseli Antenna Selection Indication (ASELI)
Unsigned 16-bit integer
High Throughput Control Link Adaptation Control MAI Antenna Selection Indication
wlan_mgt.htc.lac.mai.mrq MCS Request (MRQ)
Boolean
High Throughput Control Link Adaptation Control MAI MCS Request
wlan_mgt.htc.lac.mai.msi MCS Request Sequence Identifier (MSI)
Unsigned 16-bit integer
High Throughput Control Link Adaptation Control MAI MCS Request Sequence Identifier
wlan_mgt.htc.lac.mai.reserved Reserved
Unsigned 16-bit integer
High Throughput Control Link Adaptation Control MAI Reserved
wlan_mgt.htc.lac.mfb MCS Feedback (MFB)
Unsigned 16-bit integer
High Throughput Control Link Adaptation Control MCS Feedback
wlan_mgt.htc.lac.mfsi MCS Feedback Sequence Identifier (MFSI)
Unsigned 16-bit integer
High Throughput Control Link Adaptation Control MCS Feedback Sequence Identifier (MSI)
wlan_mgt.htc.lac.reserved Reserved
Boolean
High Throughput Control Link Adaptation Control Reserved
wlan_mgt.htc.lac.trq Training Request (TRQ)
Boolean
High Throughput Control Link Adaptation Control Training Request (TRQ)
wlan_mgt.htc.ndp_announcement NDP Announcement
Boolean
High Throughput Control NDP Announcement
wlan_mgt.htc.rdg_more_ppdu RDG/More PPDU
Boolean
High Throughput Control RDG/More PPDU
wlan_mgt.htc.reserved1 Reserved
Unsigned 16-bit integer
High Throughput Control Reserved
wlan_mgt.htc.reserved2 Reserved
Unsigned 16-bit integer
High Throughput Control Reserved
wlan_mgt.htex.capabilities HT Extended Capabilities
Unsigned 16-bit integer
HT Extended Capability information
wlan_mgt.htex.capabilities.htc High Throughput
Boolean
High Throughput
wlan_mgt.htex.capabilities.mcs MCS Feedback capability
Unsigned 16-bit integer
MCS Feedback capability
wlan_mgt.htex.capabilities.pco Transmitter supports PCO
Boolean
Transmitter supports PCO
wlan_mgt.htex.capabilities.rdresponder Reverse Direction Responder
Boolean
Reverse Direction Responder
wlan_mgt.htex.capabilities.transtime Time needed to transition between 20MHz and 40MHz
Unsigned 16-bit integer
Time needed to transition between 20MHz and 40MHz
wlan_mgt.measure.rep.antid Antenna ID
Unsigned 8-bit integer
Antenna ID
wlan_mgt.measure.rep.bssid BSSID Being Reported
6-byte Hardware (MAC) Address
BSSID Being Reported
wlan_mgt.measure.rep.ccabusy CCA Busy Fraction
Unsigned 8-bit integer
CCA Busy Fraction
wlan_mgt.measure.rep.chanload Channel Load
Unsigned 8-bit integer
Channel Load
wlan_mgt.measure.rep.channelnumber Measurement Channel Number
Unsigned 8-bit integer
Measurement Channel Number
wlan_mgt.measure.rep.frameinfo Reported Frame Information
Unsigned 8-bit integer
Reported Frame Information
wlan_mgt.measure.rep.frameinfo.frametype Reported Frame Type
Unsigned 8-bit integer
Reported Frame Type
wlan_mgt.measure.rep.frameinfo.phytype Condensed PHY
Unsigned 8-bit integer
Condensed PHY
wlan_mgt.measure.rep.mapfield Map Field
Unsigned 8-bit integer
Map Field
wlan_mgt.measure.rep.parenttsf Parent Timing Synchronization Function (TSF)
Unsigned 32-bit integer
Parent Timing Synchronization Function (TSF)
wlan_mgt.measure.rep.rcpi Received Channel Power Indicator (RCPI)
Unsigned 8-bit integer
Received Channel Power Indicator (RCPI)
wlan_mgt.measure.rep.regclass Regulatory Class
Unsigned 8-bit integer
Regulatory Class
wlan_mgt.measure.rep.repmode.incapable Measurement Reports
Boolean
Measurement Reports
wlan_mgt.measure.rep.repmode.late Measurement Report Mode Field
Boolean
Measurement Report Mode Field
wlan_mgt.measure.rep.repmode.mapfield.bss BSS
Boolean
BSS
wlan_mgt.measure.rep.repmode.mapfield.radar Radar
Boolean
Radar
wlan_mgt.measure.rep.repmode.mapfield.reserved Reserved
Unsigned 8-bit integer
Reserved
wlan_mgt.measure.rep.repmode.mapfield.unidentsig Unidentified Signal
Boolean
Unidentified Signal
wlan_mgt.measure.rep.repmode.mapfield.unmeasured Unmeasured
Boolean
Unmeasured
wlan_mgt.measure.rep.repmode.refused Autonomous Measurement Reports
Boolean
Autonomous Measurement Reports
wlan_mgt.measure.rep.repmode.reserved Reserved
Unsigned 8-bit integer
Reserved
wlan_mgt.measure.rep.reptype Measurement Report Type
Unsigned 8-bit integer
Measurement Report Type
wlan_mgt.measure.rep.rpi.histogram_report Receive Power Indicator (RPI) Histogram Report
String
Receive Power Indicator (RPI) Histogram Report
wlan_mgt.measure.rep.rpi.rpi0density RPI 0 Density
Unsigned 8-bit integer
Receive Power Indicator (RPI) 0 Density
wlan_mgt.measure.rep.rpi.rpi1density RPI 1 Density
Unsigned 8-bit integer
Receive Power Indicator (RPI) 1 Density
wlan_mgt.measure.rep.rpi.rpi2density RPI 2 Density
Unsigned 8-bit integer
Receive Power Indicator (RPI) 2 Density
wlan_mgt.measure.rep.rpi.rpi3density RPI 3 Density
Unsigned 8-bit integer
Receive Power Indicator (RPI) 3 Density
wlan_mgt.measure.rep.rpi.rpi4density RPI 4 Density
Unsigned 8-bit integer
Receive Power Indicator (RPI) 4 Density
wlan_mgt.measure.rep.rpi.rpi5density RPI 5 Density
Unsigned 8-bit integer
Receive Power Indicator (RPI) 5 Density
wlan_mgt.measure.rep.rpi.rpi6density RPI 6 Density
Unsigned 8-bit integer
Receive Power Indicator (RPI) 6 Density
wlan_mgt.measure.rep.rpi.rpi7density RPI 7 Density
Unsigned 8-bit integer
Receive Power Indicator (RPI) 7 Density
wlan_mgt.measure.rep.rsni Received Signal to Noise Indicator (RSNI)
Unsigned 8-bit integer
Received Signal to Noise Indicator (RSNI)
wlan_mgt.measure.rep.starttime Measurement Start Time
Unsigned 64-bit integer
Measurement Start Time
wlan_mgt.measure.req.bssid BSSID
6-byte Hardware (MAC) Address
BSSID
wlan_mgt.measure.req.channelnumber Measurement Channel Number
Unsigned 8-bit integer
Measurement Channel Number
wlan_mgt.measure.req.clr Measurement Token
Unsigned 8-bit integer
Measurement Token
wlan_mgt.measure.req.groupid Group ID
Unsigned 8-bit integer
Group ID
wlan_mgt.measure.req.measurementmode Measurement Mode
Unsigned 8-bit integer
Measurement Mode
wlan_mgt.measure.req.measuretoken Measurement Token
Unsigned 8-bit integer
Measurement Token
wlan_mgt.measure.req.randint Randomization Interval
Unsigned 16-bit integer
Randomization Interval
wlan_mgt.measure.req.regclass Measurement Channel Number
Unsigned 8-bit integer
Measurement Channel Number
wlan_mgt.measure.req.repcond Reporting Condition
Unsigned 8-bit integer
Reporting Condition
wlan_mgt.measure.req.reportmac MAC on wich to gather data
6-byte Hardware (MAC) Address
MAC on wich to gather data
wlan_mgt.measure.req.reqmode Measurement Request Mode
Unsigned 8-bit integer
Measurement Request Mode
wlan_mgt.measure.req.reqmode.enable Measurement Request Mode Field
Boolean
Measurement Request Mode Field
wlan_mgt.measure.req.reqmode.report Autonomous Measurement Reports
Boolean
Autonomous Measurement Reports
wlan_mgt.measure.req.reqmode.request Measurement Reports
Boolean
Measurement Reports
wlan_mgt.measure.req.reqmode.reserved1 Reserved
Unsigned 8-bit integer
Reserved
wlan_mgt.measure.req.reqmode.reserved2 Reserved
Unsigned 8-bit integer
Reserved
wlan_mgt.measure.req.reqtype Measurement Request Type
Unsigned 8-bit integer
Measurement Request Type
wlan_mgt.measure.req.starttime Measurement Start Time
Unsigned 64-bit integer
Measurement Start Time
wlan_mgt.measure.req.threshold Threshold/Offset
Unsigned 8-bit integer
Threshold/Offset
wlan_mgt.mimo.csimatrices.snr Signal to Noise Ratio (SNR)
Unsigned 8-bit integer
Signal to Noise Ratio (SNR)
wlan_mgt.nreport.bssid BSSID
6-byte Hardware (MAC) Address
BSSID
wlan_mgt.nreport.bssid.info BSSID Information
Unsigned 32-bit integer
BSSID Information
wlan_mgt.nreport.bssid.info.capability.apsd Capability: APSD
Unsigned 16-bit integer
Capability: APSD
wlan_mgt.nreport.bssid.info.capability.dback Capability: Delayed Block Ack
Unsigned 16-bit integer
Capability: Delayed Block Ack
wlan_mgt.nreport.bssid.info.capability.iback Capability: Immediate Block Ack
Unsigned 16-bit integer
Capability: Immediate Block Ack
wlan_mgt.nreport.bssid.info.capability.qos Capability: QoS
Unsigned 16-bit integer
Capability: QoS
wlan_mgt.nreport.bssid.info.capability.radiomsnt Capability: Radio Measurement
Unsigned 16-bit integer
Capability: Radio Measurement
wlan_mgt.nreport.bssid.info.capability.specmngt Capability: Spectrum Management
Unsigned 16-bit integer
Capability: Spectrum Management
wlan_mgt.nreport.bssid.info.hthoughput High Throughput
Unsigned 16-bit integer
High Throughput
wlan_mgt.nreport.bssid.info.keyscope Key Scope
Unsigned 16-bit integer
Key Scope
wlan_mgt.nreport.bssid.info.mobilitydomain Mobility Domain
Unsigned 16-bit integer
Mobility Domain
wlan_mgt.nreport.bssid.info.reachability AP Reachability
Unsigned 16-bit integer
AP Reachability
wlan_mgt.nreport.bssid.info.reserved Reserved
Unsigned 32-bit integer
Reserved
wlan_mgt.nreport.bssid.info.security Security
Unsigned 16-bit integer
Security
wlan_mgt.nreport.channumber Channel Number
Unsigned 8-bit integer
Channel Number
wlan_mgt.nreport.phytype PHY Type
Unsigned 8-bit integer
PHY Type
wlan_mgt.nreport.regclass Regulatory Class
Unsigned 8-bit integer
Regulatory Class
wlan_mgt.powercap.max Maximum Transmit Power
Unsigned 8-bit integer
Maximum Transmit Power
wlan_mgt.powercap.min Minimum Transmit Power
Unsigned 8-bit integer
Minimum Transmit Power
wlan_mgt.qbss.adc Available Admission Capabilities
Unsigned 8-bit integer
Available Admission Capabilities
wlan_mgt.qbss.cu Channel Utilization
Unsigned 8-bit integer
Channel Utilization
wlan_mgt.qbss.scount Station Count
Unsigned 16-bit integer
Station Count
wlan_mgt.qbss.version QBSS Version
Unsigned 8-bit integer
QBSS Version
wlan_mgt.qbss2.cal Call Admission Limit
Unsigned 8-bit integer
Call Admission Limit
wlan_mgt.qbss2.cu Channel Utilization
Unsigned 8-bit integer
Channel Utilization
wlan_mgt.qbss2.glimit G.711 CU Quantum
Unsigned 8-bit integer
G.711 CU Quantum
wlan_mgt.qbss2.scount Station Count
Unsigned 16-bit integer
Station Count
wlan_mgt.rsn.capabilities RSN Capabilities
Unsigned 16-bit integer
RSN Capability information
wlan_mgt.rsn.capabilities.gtksa_replay_counter RSN GTKSA Replay Counter capabilities
Unsigned 16-bit integer
RSN GTKSA Replay Counter capabilities
wlan_mgt.rsn.capabilities.no_pairwise RSN No Pairwise capabilities
Boolean
RSN No Pairwise capabilities
wlan_mgt.rsn.capabilities.preauth RSN Pre-Auth capabilities
Boolean
RSN Pre-Auth capabilities
wlan_mgt.rsn.capabilities.ptksa_replay_counter RSN PTKSA Replay Counter capabilities
Unsigned 16-bit integer
RSN PTKSA Replay Counter capabilities
wlan_mgt.sched.sched_info Schedule Info
Unsigned 16-bit integer
Schedule Info field
wlan_mgt.sched.spec_int Specification Interval
Unsigned 16-bit integer
Specification Interval
wlan_mgt.sched.srv_int Service Interval
Unsigned 32-bit integer
Service Interval
wlan_mgt.sched.srv_start Service Start Time
Unsigned 32-bit integer
Service Start Time
wlan_mgt.secchanoffset Secondary Channel Offset
Unsigned 8-bit integer
Secondary Channel Offset
wlan_mgt.supchan Supported Channels Set
Unsigned 8-bit integer
Supported Channels Set
wlan_mgt.supchan.first First Supported Channel
Unsigned 8-bit integer
First Supported Channel
wlan_mgt.supchan.range Supported Channel Range
Unsigned 8-bit integer
Supported Channel Range
wlan_mgt.supregclass.alt Alternate Regulatory Classes
String
Alternate Regulatory Classes
wlan_mgt.supregclass.current Current Regulatory Class
Unsigned 8-bit integer
Current Regulatory Class
wlan_mgt.tag.interpretation Tag interpretation
String
Interpretation of tag
wlan_mgt.tag.length Tag length
Unsigned 8-bit integer
Length of tag
wlan_mgt.tag.number Tag
Unsigned 8-bit integer
Element ID
wlan_mgt.tag.oui OUI
Byte array
OUI of vendor specific IE
wlan_mgt.tagged.all Tagged parameters
Unsigned 16-bit integer
Tagged parameters
wlan_mgt.tclas.class_mask Classifier Mask
Unsigned 8-bit integer
Classifier Mask
wlan_mgt.tclas.class_type Classifier Type
Unsigned 8-bit integer
Classifier Type
wlan_mgt.tclas.params.dscp IPv4 DSCP
Unsigned 8-bit integer
IPv4 Differentiated Services Code Point (DSCP) Field
wlan_mgt.tclas.params.dst_port Destination Port
Unsigned 16-bit integer
Destination Port
wlan_mgt.tclas.params.flow Flow Label
Unsigned 24-bit integer
IPv6 Flow Label
wlan_mgt.tclas.params.ipv4_dst IPv4 Dst Addr
IPv4 address
IPv4 Dst Addr
wlan_mgt.tclas.params.ipv4_src IPv4 Src Addr
IPv4 address
IPv4 Src Addr
wlan_mgt.tclas.params.ipv6_dst IPv6 Dst Addr
IPv6 address
IPv6 Dst Addr
wlan_mgt.tclas.params.ipv6_src IPv6 Src Addr
IPv6 address
IPv6 Src Addr
wlan_mgt.tclas.params.protocol Protocol
Unsigned 8-bit integer
IPv4 Protocol
wlan_mgt.tclas.params.src_port Source Port
Unsigned 16-bit integer
Source Port
wlan_mgt.tclas.params.tag_type 802.1Q Tag Type
Unsigned 16-bit integer
802.1Q Tag Type
wlan_mgt.tclas.params.type Ethernet Type
Unsigned 8-bit integer
Classifier Parameters Ethernet Type
wlan_mgt.tclas.params.version IP Version
Unsigned 8-bit integer
IP Version
wlan_mgt.tclas_proc.processing Processing
Unsigned 8-bit integer
TCLAS Processing
wlan_mgt.tim.bmapctl Bitmap control
Unsigned 8-bit integer
Bitmap control
wlan_mgt.tim.dtim_count DTIM count
Unsigned 8-bit integer
DTIM count
wlan_mgt.tim.dtim_period DTIM period
Unsigned 8-bit integer
DTIM period
wlan_mgt.tim.length TIM length
Unsigned 8-bit integer
Traffic Indication Map length
wlan_mgt.ts_delay Traffic Stream (TS) Delay
Unsigned 32-bit integer
Traffic Stream (TS) Delay
wlan_mgt.ts_info Traffic Stream (TS) Info
Unsigned 24-bit integer
Traffic Stream (TS) Info field
wlan_mgt.ts_info.ack Ack Policy
Unsigned 8-bit integer
Traffic Stream (TS) Info Ack Policy
wlan_mgt.ts_info.agg Aggregation
Unsigned 8-bit integer
Traffic Stream (TS) Info Access Policy
wlan_mgt.ts_info.apsd Automatic Power-Save Delivery (APSD)
Unsigned 8-bit integer
Traffic Stream (TS) Info Automatic Power-Save Delivery (APSD)
wlan_mgt.ts_info.dir Direction
Unsigned 8-bit integer
Traffic Stream (TS) Info Direction
wlan_mgt.ts_info.sched Schedule
Unsigned 8-bit integer
Traffic Stream (TS) Info Schedule
wlan_mgt.ts_info.tsid Traffic Stream ID (TSID)
Unsigned 8-bit integer
Traffic Stream ID (TSID) Info TSID
wlan_mgt.ts_info.type Traffic Type
Unsigned 8-bit integer
Traffic Stream (TS) Info Traffic Type
wlan_mgt.ts_info.up User Priority
Unsigned 8-bit integer
Traffic Stream (TS) Info User Priority
wlan_mgt.tspec.burst_size Burst Size
Unsigned 32-bit integer
Burst Size
wlan_mgt.tspec.delay_bound Delay Bound
Unsigned 32-bit integer
Delay Bound
wlan_mgt.tspec.inact_int Inactivity Interval
Unsigned 32-bit integer
Inactivity Interval
wlan_mgt.tspec.max_msdu Maximum MSDU Size
Unsigned 16-bit integer
Maximum MSDU Size
wlan_mgt.tspec.max_srv Maximum Service Interval
Unsigned 32-bit integer
Maximum Service Interval
wlan_mgt.tspec.mean_data Mean Data Rate
Unsigned 32-bit integer
Mean Data Rate
wlan_mgt.tspec.medium Medium Time
Unsigned 16-bit integer
Medium Time
wlan_mgt.tspec.min_data Minimum Data Rate
Unsigned 32-bit integer
Minimum Data Rate
wlan_mgt.tspec.min_phy Minimum PHY Rate
Unsigned 32-bit integer
Minimum PHY Rate
wlan_mgt.tspec.min_srv Minimum Service Interval
Unsigned 32-bit integer
Minimum Service Interval
wlan_mgt.tspec.nor_msdu Normal MSDU Size
Unsigned 16-bit integer
Normal MSDU Size
wlan_mgt.tspec.peak_data Peak Data Rate
Unsigned 32-bit integer
Peak Data Rate
wlan_mgt.tspec.srv_start Service Start Time
Unsigned 32-bit integer
Service Start Time
wlan_mgt.tspec.surplus Surplus Bandwidth Allowance
Unsigned 16-bit integer
Surplus Bandwidth Allowance
wlan_mgt.tspec.susp_int Suspension Interval
Unsigned 32-bit integer
Suspension Interval
wlan_mgt.txbf Transmit Beam Forming (TxBF) Capabilities
Unsigned 16-bit integer
Transmit Beam Forming (TxBF) Capabilities
wlan_mgt.txbf.calibration Calibration
Unsigned 32-bit integer
Calibration
wlan_mgt.txbf.channelest Maximum number of space time streams for which channel dimensions can be simultaneously estimated
Unsigned 32-bit integer
Maximum number of space time streams for which channel dimensions can be simultaneously estimated
wlan_mgt.txbf.csi STA can apply TxBF using CSI explicit feedback
Boolean
Station can apply TxBF using CSI explicit feedback
wlan_mgt.txbf.csi.maxrows Maximum number of rows of CSI explicit feeback
Unsigned 32-bit integer
Maximum number of rows of CSI explicit feeback
wlan_mgt.txbf.csinumant Max antennae STA can support when CSI feedback required
Unsigned 32-bit integer
Max antennae station can support when CSI feedback required
wlan_mgt.txbf.fm.compressed.bf STA can compress and use compressed Beamforming Feedback Matrix
Unsigned 32-bit integer
Station can compress and use compressed Beamforming Feedback Matrix
wlan_mgt.txbf.fm.compressed.maxant Max antennae STA can support when compressed Beamforming feedback required
Unsigned 32-bit integer
Max antennae station can support when compressed Beamforming feedback required
wlan_mgt.txbf.fm.compressed.tbf STA can apply TxBF using compressed beamforming feedback matrix
Boolean
Station can apply TxBF using compressed beamforming feedback matrix
wlan_mgt.txbf.fm.uncompressed.maxant Max antennae STA can support when uncompressed Beamforming feedback required
Unsigned 32-bit integer
Max antennae station can support when uncompressed Beamforming feedback required
wlan_mgt.txbf.fm.uncompressed.rbf Receiver can return explicit uncompressed Beamforming Feedback Matrix
Unsigned 32-bit integer
Receiver can return explicit uncompressed Beamforming Feedback Matrix
wlan_mgt.txbf.fm.uncompressed.tbf STA can apply TxBF using uncompressed beamforming feedback matrix
Boolean
Station can apply TxBF using uncompressed beamforming feedback matrix
wlan_mgt.txbf.impltxbf Implicit TxBF capable
Boolean
Implicit Transmit Beamforming (TxBF) capable
wlan_mgt.txbf.mingroup Minimal grouping used for explicit feedback reports
Unsigned 32-bit integer
Minimal grouping used for explicit feedback reports
wlan_mgt.txbf.rcsi Receiver can return explicit CSI feedback
Unsigned 32-bit integer
Receiver can return explicit CSI feedback
wlan_mgt.txbf.reserved Reserved
Unsigned 32-bit integer
Reserved
wlan_mgt.txbf.rxndp Receive Null Data packet (NDP)
Boolean
Receive Null Data packet (NDP)
wlan_mgt.txbf.rxss Receive Staggered Sounding
Boolean
Receive Staggered Sounding
wlan_mgt.txbf.txbf Transmit Beamforming
Boolean
Transmit Beamforming
wlan_mgt.txbf.txndp Transmit Null Data packet (NDP)
Boolean
Transmit Null Data packet (NDP)
wlan_mgt.txbf.txss Transmit Staggered Sounding
Boolean
Transmit staggered sounding
wlan_mgt.vs.asel Antenna Selection (ASEL) Capabilities (VS)
Unsigned 8-bit integer
Vendor Specific Antenna Selection (ASEL) Capabilities
wlan_mgt.vs.ht.ampduparam A-MPDU Parameters (VS)
Unsigned 16-bit integer
Vendor Specific A-MPDU Parameters
wlan_mgt.vs.ht.capabilities HT Capabilities Info (VS)
Unsigned 16-bit integer
Vendor Specific HT Capability information
wlan_mgt.vs.ht.mcsset Rx Supported Modulation and Coding Scheme Set (VS)
String
Vendor Specific Rx Supported Modulation and Coding Scheme Set
wlan_mgt.vs.htex.capabilities HT Extended Capabilities (VS)
Unsigned 16-bit integer
Vendor Specific HT Extended Capability information
wlan_mgt.vs.txbf Transmit Beam Forming (TxBF) Capabilities (VS)
Unsigned 16-bit integer
Vendor Specific Transmit Beam Forming (TxBF) Capabilities
wpan.ack_request Acknowledge Request
Boolean
Whether the sender of this packet requests acknowledgement or not.
wpan.bcn.assoc_permit Association Permit
Boolean
Whether this PAN is accepting association requests or not.
wpan.bcn.battery_ext Battery Extension
Boolean
Whether transmissions may not extend past the length of the beacon frame.
wpan.bcn.beacon_order Beacon Interval
Unsigned 8-bit integer
Specifies the transmission interval of the beacons.
wpan.bcn.cap Final CAP Slot
Unsigned 8-bit integer
Specifies the final superframe slot used by the CAP.
wpan.bcn.coord PAN Coordinator
Boolean
Whether this beacon frame is being transmitted by the PAN coordinator or not.
wpan.bcn.gts.count GTS Descriptor Count
Unsigned 8-bit integer
The number of GTS descriptors present in this beacon frame.
wpan.bcn.gts.direction Direction
Boolean
A flag defining the direction of the GTS Slot.
wpan.bcn.gts.permit GTS Permit
Boolean
Whether the PAN coordinator is accepting GTS requests or not.
wpan.bcn.pending16 Address
Unsigned 16-bit integer
Device with pending data to receive.
wpan.bcn.pending64 Address
Unsigned 64-bit integer
Device with pending data to receive.
wpan.bcn.superframe_order Superframe Interval
Unsigned 8-bit integer
Specifies the length of time the coordinator will interact with the PAN.
wpan.cmd.asrsp.addr Short Address
Unsigned 16-bit integer
The short address that the device should assume.
wpan.cmd.asrsp.status Association Status
Unsigned 8-bit integer
wpan.cmd.cinfo.alloc_addr Allocate Address
Boolean
Whether this device wishes to use a 16-bit short address instead of its IEEE 802.15.4 64-bit long address.
wpan.cmd.cinfo.alt_coord Alternate PAN Coordinator
Boolean
Whether this device can act as a PAN coordinator or not.
wpan.cmd.cinfo.device_type Device Type
Boolean
Whether this device is RFD (reduced-function device) or FFD (full-function device).
wpan.cmd.cinfo.idle_rx Receive On When Idle
Boolean
Whether this device can receive packets while idle or not.
wpan.cmd.cinfo.power_src Power Source
Boolean
Whether this device is operating on AC/mains or battery power.
wpan.cmd.cinfo.sec_capable Security Capability
Boolean
Whether this device is capable of receiving encrypted packets.
wpan.cmd.coord.addr Coordinator Short Address
Unsigned 16-bit integer
The 16-bit address the coordinator wishes to use for future communication.
wpan.cmd.coord.channel Logical Channel
Unsigned 8-bit integer
The logical channel the coordinator wishes to use for future communication.
wpan.cmd.coord.channel_page Channel Page
Unsigned 8-bit integer
The logical channel page the coordinator wishes to use for future communication.
wpan.cmd.coord.pan PAN ID
Unsigned 16-bit integer
The PAN identifier the coordinator wishes to use for future communication.
wpan.cmd.disas.reason Disassociation Reason
Unsigned 8-bit integer
wpan.cmd.gts.direction GTS Direction
Boolean
The direction of traffic in the guaranteed timeslot.
wpan.cmd.gts.length GTS Length
Unsigned 8-bit integer
Number of superframe slots the device is requesting.
wpan.cmd.gts.type Characteristic Type
Boolean
Whether this request is to allocate or deallocate a timeslot.
wpan.cmd.id Command Identifier
Unsigned 8-bit integer
wpan.correlation LQI Correlation Value
Unsigned 8-bit integer
wpan.dst_addr16 Destination
Unsigned 16-bit integer
wpan.dst_addr64 Destination
Unsigned 64-bit integer
wpan.dst_addr_mode Destination Addressing Mode
Unsigned 16-bit integer
wpan.dst_pan Destination PAN
Unsigned 16-bit integer
wpan.fcs FCS
Unsigned 16-bit integer
wpan.fcs_ok FCS Valid
Boolean
wpan.frame_type Frame Type
Unsigned 16-bit integer
wpan.intra_pan Intra-PAN
Boolean
Whether this packet originated and terminated within the same PAN or not.
wpan.pending Frame Pending
Boolean
Indication of additional packets waiting to be transferred from the source device.
wpan.rssi RSSI
Signed 8-bit integer
Received Signal Strength
wpan.security Security Enabled
Boolean
Whether security operations are performed at the MAC layer or not.
wpan.seq_no Sequence Number
Unsigned 8-bit integer
wpan.src_addr16 Source
Unsigned 16-bit integer
wpan.src_addr64 Source
Unsigned 64-bit integer
wpan.src_addr_mode Source Addressing Mode
Unsigned 16-bit integer
wpan.src_pan Source PAN
Unsigned 16-bit integer
wpan.version Frame Version
Unsigned 16-bit integer
ieee8021ad.cvid ID
Unsigned 16-bit integer
C-Vlan ID
ieee8021ad.dei DEI
Unsigned 16-bit integer
Drop Eligiblity
ieee8021ad.id ID
Unsigned 16-bit integer
Vlan ID
ieee8021ad.priority Priority
Unsigned 16-bit integer
Priority
ieee8021ad.svid ID
Unsigned 16-bit integer
S-Vlan ID
ieee8021ah.cdst C-Destination
6-byte Hardware (MAC) Address
Customer Destination Address
ieee8021ah.csrc C-Source
6-byte Hardware (MAC) Address
Customer Source Address
ieee8021ah.drop DROP
Unsigned 32-bit integer
Drop
ieee8021ah.etype Type
Unsigned 16-bit integer
Type
ieee8021ah.isid I-SID
Unsigned 32-bit integer
I-SID
ieee8021ah.len Length
Unsigned 16-bit integer
Length
ieee8021ah.nca NCA
Unsigned 32-bit integer
No Customer Addresses
ieee8021ah.priority Priority
Unsigned 32-bit integer
Priority
ieee8021ah.res1 RES1
Unsigned 32-bit integer
Reserved1
ieee8021ah.res2 RES2
Unsigned 32-bit integer
Reserved2
ieee8021ah.trailer Trailer
Byte array
802.1ah Trailer
ieee802a.oui Organization Code
Unsigned 24-bit integer
ieee802a.pid Protocol ID
Unsigned 16-bit integer
ipdc.length Payload length
Unsigned 16-bit integer
Payload length
ipdc.message_code Message code
Unsigned 16-bit integer
Message Code
ipdc.nr N(r)
Unsigned 8-bit integer
Receive sequence number
ipdc.ns N(s)
Unsigned 8-bit integer
Transmit sequence number
ipdc.protocol_id Protocol ID
Unsigned 8-bit integer
Protocol ID
ipdc.trans_id Transaction ID
Byte array
Transaction ID
ipdc.trans_id_size Transaction ID size
Unsigned 8-bit integer
Transaction ID size
ipfc.nh.da Network DA
String
ipfc.nh.sa Network SA
String
ipcomp.cpi IPComp CPI
Unsigned 16-bit integer
IP Payload Compression Protocol Compression Parameter Index
ipcomp.flags IPComp Flags
Unsigned 8-bit integer
IP Payload Compression Protocol Flags
ipvs.caddr Client Address
IPv4 address
Client Address
ipvs.conncount Connection Count
Unsigned 8-bit integer
Connection Count
ipvs.cport Client Port
Unsigned 16-bit integer
Client Port
ipvs.daddr Destination Address
IPv4 address
Destination Address
ipvs.dport Destination Port
Unsigned 16-bit integer
Destination Port
ipvs.flags Flags
Unsigned 16-bit integer
Flags
ipvs.in_seq.delta Input Sequence (Delta)
Unsigned 32-bit integer
Input Sequence (Delta)
ipvs.in_seq.initial Input Sequence (Initial)
Unsigned 32-bit integer
Input Sequence (Initial)
ipvs.in_seq.pdelta Input Sequence (Previous Delta)
Unsigned 32-bit integer
Input Sequence (Previous Delta)
ipvs.out_seq.delta Output Sequence (Delta)
Unsigned 32-bit integer
Output Sequence (Delta)
ipvs.out_seq.initial Output Sequence (Initial)
Unsigned 32-bit integer
Output Sequence (Initial)
ipvs.out_seq.pdelta Output Sequence (Previous Delta)
Unsigned 32-bit integer
Output Sequence (Previous Delta)
ipvs.proto Protocol
Unsigned 8-bit integer
Protocol
ipvs.resv8 Reserved
Unsigned 8-bit integer
Reserved
ipvs.size Size
Unsigned 16-bit integer
Size
ipvs.state State
Unsigned 16-bit integer
State
ipvs.syncid Synchronization ID
Unsigned 8-bit integer
Syncronization ID
ipvs.vaddr Virtual Address
IPv4 address
Virtual Address
ipvs.vport Virtual Port
Unsigned 16-bit integer
Virtual Port
ipxmsg.conn Connection Number
Unsigned 8-bit integer
Connection Number
ipxmsg.sigchar Signature Char
Unsigned 8-bit integer
Signature Char
ipxrip.request Request
Boolean
TRUE if IPX RIP request
ipxrip.response Response
Boolean
TRUE if IPX RIP response
ipxwan.accept_option Accept Option
Unsigned 8-bit integer
ipxwan.compression.type Compression Type
Unsigned 8-bit integer
ipxwan.extended_node_id Extended Node ID
IPX network or server name
ipxwan.identifier Identifier
String
ipxwan.nlsp_information.delay Delay
Unsigned 32-bit integer
ipxwan.nlsp_information.throughput Throughput
Unsigned 32-bit integer
ipxwan.nlsp_raw_throughput_data.delta_time Delta Time
Unsigned 32-bit integer
ipxwan.nlsp_raw_throughput_data.request_size Request Size
Unsigned 32-bit integer
ipxwan.node_id Node ID
Unsigned 32-bit integer
ipxwan.node_number Node Number
6-byte Hardware (MAC) Address
ipxwan.num_options Number of Options
Unsigned 8-bit integer
ipxwan.option_data_len Option Data Length
Unsigned 16-bit integer
ipxwan.option_num Option Number
Unsigned 8-bit integer
ipxwan.packet_type Packet Type
Unsigned 8-bit integer
ipxwan.rip_sap_info_exchange.common_network_number Common Network Number
IPX network or server name
ipxwan.rip_sap_info_exchange.router_name Router Name
String
ipxwan.rip_sap_info_exchange.wan_link_delay WAN Link Delay
Unsigned 16-bit integer
ipxwan.routing_type Routing Type
Unsigned 8-bit integer
ipxwan.sequence_number Sequence Number
Unsigned 8-bit integer
remunk_flags Flags
Unsigned 32-bit integer
remunk_iids IIDs
Unsigned 16-bit integer
remunk_int_refs InterfaceRefs
Unsigned 32-bit integer
remunk_opnum Operation
Unsigned 16-bit integer
Operation
remunk_private_refs PrivateRefs
Unsigned 32-bit integer
remunk_public_refs PublicRefs
Unsigned 32-bit integer
remunk_qiresult QIResult
No value
remunk_refs Refs
Unsigned 32-bit integer
remunk_reminterfaceref RemInterfaceRef
No value
omapi.authid Authentication ID
Unsigned 32-bit integer
omapi.authlength Authentication length
Unsigned 32-bit integer
omapi.handle Handle
Unsigned 32-bit integer
omapi.hlength Header length
Unsigned 32-bit integer
omapi.id ID
Unsigned 32-bit integer
omapi.msg_name Message name
String
omapi.msg_name_length Message name length
Unsigned 16-bit integer
omapi.msg_value Message value
String
omapi.msg_value_length Message value length
Unsigned 32-bit integer
omapi.obj_name Object name
String
omapi.obj_name_length Object name length
Unsigned 16-bit integer
omapi.obj_value Object value
Byte array
omapi.object_value_length Object value length
Unsigned 32-bit integer
omapi.opcode Opcode
Unsigned 32-bit integer
omapi.rid Response ID
Unsigned 32-bit integer
omapi.signature Signature
Byte array
omapi.version Version
Unsigned 32-bit integer
isdn.channel Channel
Unsigned 8-bit integer
iua.asp_identifier ASP identifier
Unsigned 32-bit integer
iua.asp_reason Reason
Unsigned 32-bit integer
iua.diagnostic_information Diagnostic information
Byte array
iua.dlci_one_bit One bit
Boolean
iua.dlci_sapi SAPI
Unsigned 8-bit integer
iua.dlci_spare Spare
Unsigned 16-bit integer
iua.dlci_spare_bit Spare bit
Boolean
iua.dlci_tei TEI
Unsigned 8-bit integer
iua.dlci_zero_bit Zero bit
Boolean
iua.error_code Error code
Unsigned 32-bit integer
iua.heartbeat_data Heartbeat data
Byte array
iua.info_string Info string
String
iua.int_interface_identifier Integer interface identifier
Unsigned 32-bit integer
iua.interface_range_end End
Unsigned 32-bit integer
iua.interface_range_start Start
Unsigned 32-bit integer
iua.message_class Message class
Unsigned 8-bit integer
iua.message_length Message length
Unsigned 32-bit integer
iua.message_type Message Type
Unsigned 8-bit integer
iua.parameter_length Parameter length
Unsigned 16-bit integer
iua.parameter_padding Parameter padding
Byte array
iua.parameter_tag Parameter Tag
Unsigned 16-bit integer
iua.parameter_value Parameter value
Byte array
iua.release_reason Reason
Unsigned 32-bit integer
iua.reserved Reserved
Unsigned 8-bit integer
iua.status_identification Status identification
Unsigned 16-bit integer
iua.status_type Status type
Unsigned 16-bit integer
iua.tei_status TEI status
Unsigned 32-bit integer
iua.text_interface_identifier Text interface identifier
String
iua.traffic_mode_type Traffic mode type
Unsigned 32-bit integer
iua.version Version
Unsigned 8-bit integer
ansi_isup.cause_indicator Cause indicator
Unsigned 8-bit integer
ansi_isup.coding_standard Coding standard
Unsigned 8-bit integer
bat_ase.Comp_Report_Reason Compabillity report reason
Unsigned 8-bit integer
bat_ase.Comp_Report_diagnostic Diagnostics
Unsigned 16-bit integer
bat_ase.ETSI_codec_type_subfield ETSI codec type subfield
Unsigned 8-bit integer
bat_ase.ITU_T_codec_type_subfield ITU-T codec type subfield
Unsigned 8-bit integer
bat_ase.Local_BCU_ID Local BCU ID
Unsigned 32-bit integer
bat_ase.acs Active Code Set
Unsigned 8-bit integer
bat_ase.acs.10_2 10.2 kbps rate
Unsigned 8-bit integer
bat_ase.acs.12_2 12.2 kbps rate
Unsigned 8-bit integer
bat_ase.acs.4_75 4.75 kbps rate
Unsigned 8-bit integer
bat_ase.acs.5_15 5.15 kbps rate
Unsigned 8-bit integer
bat_ase.acs.5_90 5.90 kbps rate
Unsigned 8-bit integer
bat_ase.acs.6_70 6.70 kbps rate
Unsigned 8-bit integer
bat_ase.acs.7_40 7.40 kbps rate
Unsigned 8-bit integer
bat_ase.acs.7_95 7.95 kbps rate
Unsigned 8-bit integer
bat_ase.bearer_control_tunneling Bearer control tunneling
Boolean
bat_ase.bearer_redir_ind Redirection Indicator
Unsigned 8-bit integer
bat_ase.bncid Backbone Network Connection Identifier (BNCId)
Unsigned 32-bit integer
bat_ase.char Backbone network connection characteristics
Unsigned 8-bit integer
bat_ase.late_cut_trough_cap_ind Late Cut-through capability indicator
Boolean
bat_ase.macs Maximal number of Codec Modes, MACS
Unsigned 8-bit integer
Maximal number of Codec Modes, MACS
bat_ase.optimisation_mode Optimisation Mode for ACS , OM
Unsigned 8-bit integer
Optimisation Mode for ACS , OM
bat_ase.organization_identifier_subfield Organization identifier subfield
Unsigned 8-bit integer
bat_ase.scs Supported Code Set
Unsigned 8-bit integer
bat_ase.scs.10_2 10.2 kbps rate
Unsigned 8-bit integer
bat_ase.scs.12_2 12.2 kbps rate
Unsigned 8-bit integer
bat_ase.scs.4_75 4.75 kbps rate
Unsigned 8-bit integer
bat_ase.scs.5_15 5.15 kbps rate
Unsigned 8-bit integer
bat_ase.scs.5_90 5.90 kbps rate
Unsigned 8-bit integer
bat_ase.scs.6_70 6.70 kbps rate
Unsigned 8-bit integer
bat_ase.scs.7_40 7.40 kbps rate
Unsigned 8-bit integer
bat_ase.scs.7_95 7.95 kbps rate
Unsigned 8-bit integer
bat_ase.signal_type Q.765.5 - Signal Type
Unsigned 8-bit integer
bat_ase_biwfa Interworking Function Address( X.213 NSAP encoded)
Byte array
bicc.bat_ase_BCTP_BVEI BVEI
Boolean
bicc.bat_ase_BCTP_Tunnelled_Protocol_Indicator Tunnelled Protocol Indicator
Unsigned 8-bit integer
bicc.bat_ase_BCTP_Version_Indicator BCTP Version Indicator
Unsigned 8-bit integer
bicc.bat_ase_BCTP_tpei TPEI
Boolean
bicc.bat_ase_Instruction_ind_for_general_action BAT ASE Instruction indicator for general action
Unsigned 8-bit integer
bicc.bat_ase_Instruction_ind_for_pass_on_not_possible Instruction ind for pass-on not possible
Unsigned 8-bit integer
bicc.bat_ase_Send_notification_ind_for_general_action Send notification indicator for general action
Boolean
bicc.bat_ase_Send_notification_ind_for_pass_on_not_possible Send notification indication for pass-on not possible
Boolean
bicc.bat_ase_bat_ase_action_indicator_field BAT ASE action indicator field
Unsigned 8-bit integer
bicc.bat_ase_identifier BAT ASE Identifiers
Unsigned 8-bit integer
bicc.bat_ase_length_indicator BAT ASE Element length indicator
Unsigned 16-bit integer
cg_alarm_car_ind Alarm Carrier Indicator
Unsigned 8-bit integer
cg_alarm_cnt_chk Continuity Check Indicator
Unsigned 8-bit integer
cg_carrier_ind CVR Circuit Group Carrier
Unsigned 8-bit integer
cg_char_ind.doubleSeize Doube Seize Control
Unsigned 8-bit integer
conn_rsp_ind CVR Response Ind
Unsigned 8-bit integer
isup.APM_Sequence_ind Sequence indicator (SI)
Boolean
isup.APM_slr Segmentation local reference (SLR)
Unsigned 8-bit integer
isup.Discard_message_ind_value Discard message indicator
Boolean
isup.Discard_parameter_ind Discard parameter indicator
Boolean
isup.IECD_inf_ind_vals IECD information indicator
Unsigned 8-bit integer
isup.IECD_req_ind_vals IECD request indicator
Unsigned 8-bit integer
isup.OECD_inf_ind_vals OECD information indicator
Unsigned 8-bit integer
isup.OECD_req_ind_vals OECD request indicator
Unsigned 8-bit integer
isup.Release_call_ind Release call indicator
Boolean
isup.Send_notification_ind Send notification indicator
Boolean
isup.UUI_network_discard_ind User-to-User indicator network discard indicator
Boolean
isup.UUI_req_service1 User-to-User indicator request service 1
Unsigned 8-bit integer
isup.UUI_req_service2 User-to-User indicator request service 2
Unsigned 8-bit integer
isup.UUI_req_service3 User-to-User indicator request service 3
Unsigned 8-bit integer
isup.UUI_res_service1 User-to-User indicator response service 1
Unsigned 8-bit integer
isup.UUI_res_service2 User-to-User indicator response service 2
Unsigned 8-bit integer
isup.UUI_res_service3 User-to-User response service 3
Unsigned 8-bit integer
isup.UUI_type User-to-User indicator type
Boolean
isup.access_delivery_ind Access delivery indicator
Boolean
isup.address_presentation_restricted_indicator Address presentation restricted indicator
Unsigned 8-bit integer
isup.apm_segmentation_ind APM segmentation indicator
Unsigned 8-bit integer
isup.app_Release_call_indicator Release call indicator (RCI)
Boolean
isup.app_Send_notification_ind Send notification indicator (SNI)
Boolean
isup.app_context_identifier Application context identifier
Unsigned 16-bit integer
isup.automatic_congestion_level Automatic congestion level
Unsigned 8-bit integer
isup.backw_call_echo_control_device_indicator Echo Control Device Indicator
Boolean
isup.backw_call_end_to_end_information_indicator End-to-end information indicator
Boolean
isup.backw_call_end_to_end_method_indicator End-to-end method indicator
Unsigned 16-bit integer
isup.backw_call_holding_indicator Holding indicator
Boolean
isup.backw_call_interworking_indicator Interworking indicator
Boolean
isup.backw_call_isdn_access_indicator ISDN access indicator
Boolean
isup.backw_call_isdn_user_part_indicator ISDN user part indicator
Boolean
isup.backw_call_sccp_method_indicator SCCP method indicator
Unsigned 16-bit integer
isup.call_diversion_may_occur_ind Call diversion may occur indicator
Boolean
isup.call_processing_state Call processing state
Unsigned 8-bit integer
isup.call_to_be_diverted_ind Call to be diverted indicator
Unsigned 8-bit integer
isup.call_to_be_offered_ind Call to be offered indicator
Unsigned 8-bit integer
isup.called ISUP Called Number
String
isup.called_party_even_address_signal_digit Address signal digit
Unsigned 8-bit integer
isup.called_party_nature_of_address_indicator Nature of address indicator
Unsigned 8-bit integer
isup.called_party_odd_address_signal_digit Address signal digit
Unsigned 8-bit integer
isup.called_partys_category_indicator Called party's category indicator
Unsigned 16-bit integer
isup.called_partys_status_indicator Called party's status indicator
Unsigned 16-bit integer
isup.calling ISUP Calling Number
String
isup.calling_party_address_request_indicator Calling party address request indicator
Boolean
isup.calling_party_address_response_indicator Calling party address response indicator
Unsigned 16-bit integer
isup.calling_party_even_address_signal_digit Address signal digit
Unsigned 8-bit integer
isup.calling_party_nature_of_address_indicator Nature of address indicator
Unsigned 8-bit integer
isup.calling_party_odd_address_signal_digit Address signal digit
Unsigned 8-bit integer
isup.calling_partys_category Calling Party's category
Unsigned 8-bit integer
isup.calling_partys_category_request_indicator Calling party's category request indicator
Boolean
isup.calling_partys_category_response_indicator Calling party's category response indicator
Boolean
isup.cause_indicator Cause indicator
Unsigned 8-bit integer
isup.cause_location Cause location
Unsigned 8-bit integer
isup.cgs_message_type Circuit group supervision message type
Unsigned 8-bit integer
isup.charge_indicator Charge indicator
Unsigned 16-bit integer
isup.charge_information_request_indicator Charge information request indicator
Boolean
isup.charge_information_response_indicator Charge information response indicator
Boolean
isup.charge_number_nature_of_address_indicator Nature of address indicator
Unsigned 8-bit integer
isup.cic CIC
Unsigned 16-bit integer
isup.clg_call_ind Closed user group call indicator
Unsigned 8-bit integer
isup.conference_acceptance_ind Conference acceptance indicator
Unsigned 8-bit integer
isup.connected_line_identity_request_ind Connected line identity request indicator
Boolean
isup.continuity_check_indicator Continuity Check Indicator
Unsigned 8-bit integer
isup.continuity_indicator Continuity indicator
Boolean
isup.echo_control_device_indicator Echo Control Device Indicator
Boolean
isup.event_ind Event indicator
Unsigned 8-bit integer
isup.event_presentatiation_restr_ind Event presentation restricted indicator
Boolean
isup.extension_ind Extension indicator
Boolean
isup.forw_call_end_to_end_information_indicator End-to-end information indicator
Boolean
isup.forw_call_end_to_end_method_indicator End-to-end method indicator
Unsigned 16-bit integer
isup.forw_call_interworking_indicator Interworking indicator
Boolean
isup.forw_call_isdn_access_indicator ISDN access indicator
Boolean
isup.forw_call_isdn_user_part_indicator ISDN user part indicator
Boolean
isup.forw_call_natnl_inatnl_call_indicator National/international call indicator
Boolean
isup.forw_call_ported_num_trans_indicator Ported number translation indicator
Boolean
isup.forw_call_preferences_indicator ISDN user part preference indicator
Unsigned 16-bit integer
isup.forw_call_sccp_method_indicator SCCP method indicator
Unsigned 16-bit integer
isup.hold_provided_indicator Hold provided indicator
Boolean
isup.hw_blocking_state HW blocking state
Unsigned 8-bit integer
isup.inband_information_ind In-band information indicator
Boolean
isup.info_req_holding_indicator Holding indicator
Boolean
isup.inn_indicator INN indicator
Boolean
isup.isdn_generic_name_availability Availability indicator
Boolean
isup.isdn_generic_name_ia5 Generic Name
String
isup.isdn_generic_name_presentation Presentation indicator
Unsigned 8-bit integer
isup.isdn_generic_name_type Type indicator
Unsigned 8-bit integer
isup.isdn_odd_even_indicator Odd/even indicator
Boolean
isup.loop_prevention_response_ind Response indicator
Unsigned 8-bit integer
isup.malicious_call_ident_request_indicator Malicious call identification request indicator (ISUP'88)
Boolean
isup.mandatory_variable_parameter_pointer Pointer to Parameter
Unsigned 8-bit integer
isup.map_type Map Type
Unsigned 8-bit integer
isup.message_type Message Type
Unsigned 8-bit integer
isup.mlpp_user MLPP user indicator
Boolean
isup.mtc_blocking_state Maintenance blocking state
Unsigned 8-bit integer
isup.network_identification_plan Network identification plan
Unsigned 8-bit integer
isup.ni_indicator NI indicator
Boolean
isup.numbering_plan_indicator Numbering plan indicator
Unsigned 8-bit integer
isup.optional_parameter_part_pointer Pointer to optional parameter part
Unsigned 8-bit integer
isup.orig_addr_len Originating Address length
Unsigned 8-bit integer
Originating Address length
isup.original_redirection_reason Original redirection reason
Unsigned 16-bit integer
isup.parameter_length Parameter Length
Unsigned 8-bit integer
isup.parameter_type Parameter Type
Unsigned 8-bit integer
isup.range_indicator Range indicator
Unsigned 8-bit integer
isup.redirecting ISUP Redirecting Number
String
isup.redirecting_ind Redirection indicator
Unsigned 16-bit integer
isup.redirection_counter Redirection counter
Unsigned 16-bit integer
isup.redirection_reason Redirection reason
Unsigned 16-bit integer
isup.satellite_indicator Satellite Indicator
Unsigned 8-bit integer
isup.screening_indicator Screening indicator
Unsigned 8-bit integer
isup.screening_indicator_enhanced Screening indicator
Unsigned 8-bit integer
isup.simple_segmentation_ind Simple segmentation indicator
Boolean
isup.solicided_indicator Solicited indicator
Boolean
isup.suspend_resume_indicator Suspend/Resume indicator
Boolean
isup.temporary_alternative_routing_ind Temporary alternative routing indicator
Boolean
isup.transit_at_intermediate_exchange_ind Transit at intermediate exchange indicator
Boolean
isup.transmission_medium_requirement Transmission medium requirement
Unsigned 8-bit integer
isup.transmission_medium_requirement_prime Transmission medium requirement prime
Unsigned 8-bit integer
isup.type_of_network_identification Type of network identification
Unsigned 8-bit integer
isup_Pass_on_not_possible_ind Pass on not possible indicator
Unsigned 8-bit integer
isup_Pass_on_not_possible_val Pass on not possible indicator
Boolean
isup_apm.msg.fragment Message fragment
Frame number
isup_apm.msg.fragment.error Message defragmentation error
Frame number
isup_apm.msg.fragment.multiple_tails Message has multiple tail fragments
Boolean
isup_apm.msg.fragment.overlap Message fragment overlap
Boolean
isup_apm.msg.fragment.overlap.conflicts Message fragment overlapping with conflicting data
Boolean
isup_apm.msg.fragment.too_long_fragment Message fragment too long
Boolean
isup_apm.msg.fragments Message fragments
No value
isup_apm.msg.reassembled.in Reassembled in
Frame number
isup_broadband-narrowband_interworking_ind Broadband narrowband interworking indicator Bits JF
Unsigned 8-bit integer
isup_broadband-narrowband_interworking_ind2 Broadband narrowband interworking indicator Bits GF
Unsigned 8-bit integer
nsap.iana_icp IANA ICP
Unsigned 16-bit integer
nsap.ipv4_addr IWFA IPv4 Address
IPv4 address
IPv4 address
nsap.ipv6_addr IWFA IPv6 Address
IPv6 address
IPv6 address
x213.afi X.213 Address Format Information ( AFI )
Unsigned 8-bit integer
x213.dsp X.213 Address Format Information ( DSP )
Byte array
isis.csnp.pdu_length PDU length
Unsigned 16-bit integer
isis.hello.circuit_type Circuit type
Unsigned 8-bit integer
isis.hello.clv_ipv4_int_addr IPv4 interface address
IPv4 address
isis.hello.clv_ipv6_int_addr IPv6 interface address
IPv6 address
isis.hello.clv_mt MT-ID
Unsigned 16-bit integer
isis.hello.clv_ptp_adj Point-to-point Adjacency
Unsigned 8-bit integer
isis.hello.clv_restart.neighbor Restarting Neighbor ID
Byte array
The System ID of the restarting neighbor
isis.hello.clv_restart.remain_time Remaining holding time
Unsigned 16-bit integer
How long the helper router will maintain the existing adjacency
isis.hello.clv_restart_flags Restart Signaling Flags
Unsigned 8-bit integer
isis.hello.clv_restart_flags.ra Restart Acknowledgment
Boolean
When set, the router is willing to enter helper mode
isis.hello.clv_restart_flags.rr Restart Request
Boolean
When set, the router is beginning a graceful restart
isis.hello.clv_restart_flags.sa Suppress Adjacency
Boolean
When set, the router is starting as opposed to restarting
isis.hello.holding_timer Holding timer
Unsigned 16-bit integer
isis.hello.lan_id SystemID{ Designated IS }
Byte array
isis.hello.local_circuit_id Local circuit ID
Unsigned 8-bit integer
isis.hello.pdu_length PDU length
Unsigned 16-bit integer
isis.hello.priority Priority
Unsigned 8-bit integer
isis.hello.source_id SystemID{ Sender of PDU }
Byte array
isis.irpd Intra Domain Routing Protocol Discriminator
Unsigned 8-bit integer
isis.len PDU Header Length
Unsigned 8-bit integer
isis.lsp.att Attachment
Unsigned 8-bit integer
isis.lsp.checksum Checksum
Unsigned 16-bit integer
isis.lsp.checksum_bad Bad Checksum
Boolean
Bad IS-IS LSP Checksum
isis.lsp.checksum_good Good Checksum
Boolean
Good IS-IS LSP Checksum
isis.lsp.clv_ipv4_int_addr IPv4 interface address
IPv4 address
isis.lsp.clv_ipv6_int_addr IPv6 interface address
IPv6 address
isis.lsp.clv_mt MT-ID
Unsigned 16-bit integer
isis.lsp.clv_te_router_id Traffic Engineering Router ID
IPv4 address
isis.lsp.hostname Hostname
String
isis.lsp.is_type Type of Intermediate System
Unsigned 8-bit integer
isis.lsp.lsp_id LSP-ID
String
isis.lsp.overload Overload bit
Boolean
If set, this router will not be used by any decision process to calculate routes
isis.lsp.partition_repair Partition Repair
Boolean
If set, this router supports the optional Partition Repair function
isis.lsp.pdu_length PDU length
Unsigned 16-bit integer
isis.lsp.remaining_life Remaining lifetime
Unsigned 16-bit integer
isis.lsp.sequence_number Sequence number
Unsigned 32-bit integer
isis.max_area_adr Max.AREAs: (0==3)
Unsigned 8-bit integer
isis.psnp.pdu_length PDU length
Unsigned 16-bit integer
isis.reserved Reserved (==0)
Unsigned 8-bit integer
isis.sysid_len System ID Length
Unsigned 8-bit integer
isis.type PDU Type
Unsigned 8-bit integer
isis.version Version (==1)
Unsigned 8-bit integer
isis.version2 Version2 (==1)
Unsigned 8-bit integer
cotp.destref Destination reference
Unsigned 16-bit integer
Destination address reference
cotp.dst-tsap Destination TSAP
String
Called TSAP
cotp.dst-tsap-bytes Destination TSAP
Byte array
Called TSAP (bytes representation)
cotp.eot Last data unit
Boolean
Is current TPDU the last data unit of a complete DT TPDU sequence (End of TSDU)?
cotp.li Length
Unsigned 8-bit integer
Length Indicator, length of this header
cotp.next-tpdu-number Your TPDU number
Unsigned 8-bit integer
Your TPDU number
cotp.reassembled_in Reassembled COTP in frame
Frame number
This COTP packet is reassembled in this frame
cotp.segment COTP Segment
Frame number
COTP Segment
cotp.segment.error Reassembly error
Frame number
Reassembly error due to illegal segments
cotp.segment.multipletails Multiple tail segments found
Boolean
Several tails were found when reassembling the packet
cotp.segment.overlap Segment overlap
Boolean
Segment overlaps with other segments
cotp.segment.overlap.conflict Conflicting data in segment overlap
Boolean
Overlapping segments contained conflicting data
cotp.segment.toolongsegment Segment too long
Boolean
Segment contained data past end of packet
cotp.segments COTP Segments
No value
COTP Segments
cotp.src-tsap Source TSAP
String
Calling TSAP
cotp.src-tsap-bytes Source TSAP
Byte array
Calling TSAP (bytes representation)
cotp.srcref Source reference
Unsigned 16-bit integer
Source address reference
cotp.tpdu-number TPDU number
Unsigned 8-bit integer
TPDU number
cotp.type PDU Type
Unsigned 8-bit integer
PDU Type - upper nibble of byte
ses.activity_identifier Activity Identifier
Unsigned 32-bit integer
Activity Identifier
ses.activity_management Activity management function unit
Boolean
Activity management function unit
ses.additional_reference_information Additional Reference Information
Byte array
Additional Reference Information
ses.begininng_of_SSDU beginning of SSDU
Boolean
beginning of SSDU
ses.called_session_selector Called Session Selector
Byte array
Called Session Selector
ses.called_ss_user_reference Called SS User Reference
Byte array
Called SS User Reference
ses.calling_session_selector Calling Session Selector
Byte array
Calling Session Selector
ses.calling_ss_user_reference Calling SS User Reference
Byte array
Calling SS User Reference
ses.capability_data Capability function unit
Boolean
Capability function unit
ses.common_reference Common Reference
Byte array
Common Reference
ses.connect.f1 Able to receive extended concatenated SPDU
Boolean
Able to receive extended concatenated SPDU
ses.connect.flags Flags
Unsigned 8-bit integer
ses.data_sep Data separation function unit
Boolean
Data separation function unit
ses.data_token data token
Boolean
data token
ses.data_token_setting data token setting
Unsigned 8-bit integer
data token setting
ses.duplex Duplex functional unit
Boolean
Duplex functional unit
ses.enclosure.flags Flags
Unsigned 8-bit integer
ses.end_of_SSDU end of SSDU
Boolean
end of SSDU
ses.exception_data Exception function unit
Boolean
Exception function unit
ses.exception_report. Session exception report
Boolean
Session exception report
ses.expedited_data Expedited data function unit
Boolean
Expedited data function unit
ses.half_duplex Half-duplex functional unit
Boolean
Half-duplex functional unit
ses.initial_serial_number Initial Serial Number
String
Initial Serial Number
ses.large_initial_serial_number Large Initial Serial Number
String
Large Initial Serial Number
ses.large_second_initial_serial_number Large Second Initial Serial Number
String
Large Second Initial Serial Number
ses.length Length
Unsigned 16-bit integer
ses.major.token major/activity token
Boolean
major/activity token
ses.major_activity_token_setting major/activity setting
Unsigned 8-bit integer
major/activity token setting
ses.major_resynchronize Major resynchronize function unit
Boolean
Major resynchronize function unit
ses.minor_resynchronize Minor resynchronize function unit
Boolean
Minor resynchronize function unit
ses.negotiated_release Negotiated release function unit
Boolean
Negotiated release function unit
ses.proposed_tsdu_maximum_size_i2r Proposed TSDU Maximum Size, Initiator to Responder
Unsigned 16-bit integer
Proposed TSDU Maximum Size, Initiator to Responder
ses.proposed_tsdu_maximum_size_r2i Proposed TSDU Maximum Size, Responder to Initiator
Unsigned 16-bit integer
Proposed TSDU Maximum Size, Responder to Initiator
ses.protocol_version1 Protocol Version 1
Boolean
Protocol Version 1
ses.protocol_version2 Protocol Version 2
Boolean
Protocol Version 2
ses.release_token release token
Boolean
release token
ses.release_token_setting release token setting
Unsigned 8-bit integer
release token setting
ses.req.flags Flags
Unsigned 16-bit integer
ses.reserved Reserved
Unsigned 8-bit integer
ses.resynchronize Resynchronize function unit
Boolean
Resynchronize function unit
ses.second_initial_serial_number Second Initial Serial Number
String
Second Initial Serial Number
ses.second_serial_number Second Serial Number
String
Second Serial Number
ses.serial_number Serial Number
String
Serial Number
ses.symm_sync Symmetric synchronize function unit
Boolean
Symmetric synchronize function unit
ses.synchronize_minor_token_setting synchronize-minor token setting
Unsigned 8-bit integer
synchronize-minor token setting
ses.synchronize_token synchronize minor token
Boolean
synchronize minor token
ses.tken_item.flags Flags
Unsigned 8-bit integer
ses.type SPDU Type
Unsigned 8-bit integer
ses.typed_data Typed data function unit
Boolean
Typed data function unit
ses.version Version
Unsigned 8-bit integer
ses.version.flags Flags
Unsigned 8-bit integer
clnp.checksum Checksum
Unsigned 16-bit integer
clnp.dsap DA
Byte array
clnp.dsap.len DAL
Unsigned 8-bit integer
clnp.len HDR Length
Unsigned 8-bit integer
clnp.nlpi Network Layer Protocol Identifier
Unsigned 8-bit integer
clnp.pdu.len PDU length
Unsigned 16-bit integer
clnp.reassembled_in Reassembled CLNP in frame
Frame number
This CLNP packet is reassembled in this frame
clnp.segment CLNP Segment
Frame number
CLNP Segment
clnp.segment.error Reassembly error
Frame number
Reassembly error due to illegal segments
clnp.segment.multipletails Multiple tail segments found
Boolean
Several tails were found when reassembling the packet
clnp.segment.overlap Segment overlap
Boolean
Segment overlaps with other segments
clnp.segment.overlap.conflict Conflicting data in segment overlap
Boolean
Overlapping segments contained conflicting data
clnp.segment.toolongsegment Segment too long
Boolean
Segment contained data past end of packet
clnp.segments CLNP Segments
No value
CLNP Segments
clnp.ssap SA
Byte array
clnp.ssap.len SAL
Unsigned 8-bit integer
clnp.ttl Holding Time
Unsigned 8-bit integer
clnp.type PDU Type
Unsigned 8-bit integer
clnp.version Version
Unsigned 8-bit integer
ftam.AND_Set_item Item
Unsigned 32-bit integer
ftam.AND_Set_item
ftam.Attribute_Extension_Names_item Item
No value
ftam.Attribute_Extension_Set_Name
ftam.Attribute_Extensions_Pattern_item Item
No value
ftam.Attribute_Extensions_Pattern_item
ftam.Attribute_Extensions_item Item
No value
ftam.Attribute_Extension_Set
ftam.Child_Objects_Attribute_item Item
String
ftam.GraphicString
ftam.OR_Set_item Item
Unsigned 32-bit integer
ftam.AND_Set
ftam.Pass_Passwords_item Item
Unsigned 32-bit integer
ftam.Password
ftam.Pathname_item Item
String
ftam.GraphicString
ftam._untag_item Item
Unsigned 32-bit integer
ftam.Contents_Type_List_item
ftam.abstract_Syntax_Pattern abstract-Syntax-Pattern
No value
ftam.Object_Identifier_Pattern
ftam.abstract_Syntax_name abstract-Syntax-name
ftam.Abstract_Syntax_Name
ftam.abstract_Syntax_not_supported abstract-Syntax-not-supported
No value
ftam.NULL
ftam.access-class access-class
Boolean
ftam.access_context access-context
No value
ftam.Access_Context
ftam.access_control access-control
Unsigned 32-bit integer
ftam.Access_Control_Change_Attribute
ftam.access_passwords access-passwords
No value
ftam.Access_Passwords
ftam.account account
String
ftam.Account
ftam.action_list action-list
Byte array
ftam.Access_Request
ftam.action_result action-result
Signed 32-bit integer
ftam.Action_Result
ftam.activity_identifier activity-identifier
Signed 32-bit integer
ftam.Activity_Identifier
ftam.actual_values actual-values
Unsigned 32-bit integer
ftam.SET_OF_Access_Control_Element
ftam.actual_values_item Item
No value
ftam.Access_Control_Element
ftam.ae ae
Unsigned 32-bit integer
ftam.AE_qualifier
ftam.any_match any-match
No value
ftam.NULL
ftam.ap ap
Unsigned 32-bit integer
ftam.AP_title
ftam.attribute_extension_names attribute-extension-names
Unsigned 32-bit integer
ftam.Attribute_Extension_Names
ftam.attribute_extensions attribute-extensions
Unsigned 32-bit integer
ftam.Attribute_Extensions
ftam.attribute_extensions_pattern attribute-extensions-pattern
Unsigned 32-bit integer
ftam.Attribute_Extensions_Pattern
ftam.attribute_groups attribute-groups
Byte array
ftam.Attribute_Groups
ftam.attribute_names attribute-names
Byte array
ftam.Attribute_Names
ftam.attribute_value_assertions attribute-value-assertions
Unsigned 32-bit integer
ftam.Attribute_Value_Assertions
ftam.attribute_value_asset_tions attribute-value-asset-tions
Unsigned 32-bit integer
ftam.Attribute_Value_Assertions
ftam.attributes attributes
No value
ftam.Select_Attributes
ftam.begin_end begin-end
Signed 32-bit integer
ftam.T_begin_end
ftam.boolean_value boolean-value
Boolean
ftam.BOOLEAN
ftam.bulk_Data_PDU bulk-Data-PDU
Unsigned 32-bit integer
ftam.Bulk_Data_PDU
ftam.bulk_transfer_number bulk-transfer-number
Signed 32-bit integer
ftam.INTEGER
ftam.change-attribute change-attribute
Boolean
ftam.change_attribute change-attribute
Signed 32-bit integer
ftam.Lock
ftam.change_attribute_password change-attribute-password
Unsigned 32-bit integer
ftam.Password
ftam.charging charging
Unsigned 32-bit integer
ftam.Charging
ftam.charging_unit charging-unit
String
ftam.GraphicString
ftam.charging_value charging-value
Signed 32-bit integer
ftam.INTEGER
ftam.checkpoint_identifier checkpoint-identifier
Signed 32-bit integer
ftam.INTEGER
ftam.checkpoint_window checkpoint-window
Signed 32-bit integer
ftam.INTEGER
ftam.child_objects child-objects
Unsigned 32-bit integer
ftam.Child_Objects_Attribute
ftam.child_objects_Pattern child-objects-Pattern
No value
ftam.Pathname_Pattern
ftam.complete_pathname complete-pathname
Unsigned 32-bit integer
ftam.Pathname
ftam.concurrency_access concurrency-access
No value
ftam.Concurrency_Access
ftam.concurrency_control concurrency-control
No value
ftam.Concurrency_Control
ftam.concurrent-access concurrent-access
Boolean
ftam.concurrent_bulk_transfer_number concurrent-bulk-transfer-number
Signed 32-bit integer
ftam.INTEGER
ftam.concurrent_recovery_point concurrent-recovery-point
Signed 32-bit integer
ftam.INTEGER
ftam.consecutive-access consecutive-access
Boolean
ftam.constraint_Set_Pattern constraint-Set-Pattern
No value
ftam.Object_Identifier_Pattern
ftam.constraint_set_abstract_Syntax_Pattern constraint-set-abstract-Syntax-Pattern
No value
ftam.T_constraint_set_abstract_Syntax_Pattern
ftam.constraint_set_and_abstract_Syntax constraint-set-and-abstract-Syntax
No value
ftam.T_constraint_set_and_abstract_Syntax
ftam.constraint_set_name constraint-set-name
ftam.Constraint_Set_Name
ftam.contents_type contents-type
Unsigned 32-bit integer
ftam.T_open_contents_type
ftam.contents_type_Pattern contents-type-Pattern
Unsigned 32-bit integer
ftam.Contents_Type_Pattern
ftam.contents_type_list contents-type-list
Unsigned 32-bit integer
ftam.Contents_Type_List
ftam.create_password create-password
Unsigned 32-bit integer
ftam.Password
ftam.date_and_time_of_creation date-and-time-of-creation
Unsigned 32-bit integer
ftam.Date_and_Time_Attribute
ftam.date_and_time_of_creation_Pattern date-and-time-of-creation-Pattern
No value
ftam.Date_and_Time_Pattern
ftam.date_and_time_of_last_attribute_modification date-and-time-of-last-attribute-modification
Unsigned 32-bit integer
ftam.Date_and_Time_Attribute
ftam.date_and_time_of_last_attribute_modification_Pattern date-and-time-of-last-attribute-modification-Pattern
No value
ftam.Date_and_Time_Pattern
ftam.date_and_time_of_last_modification date-and-time-of-last-modification
Unsigned 32-bit integer
ftam.Date_and_Time_Attribute
ftam.date_and_time_of_last_modification_Pattern date-and-time-of-last-modification-Pattern
No value
ftam.Date_and_Time_Pattern
ftam.date_and_time_of_last_read_access date-and-time-of-last-read-access
Unsigned 32-bit integer
ftam.Date_and_Time_Attribute
ftam.date_and_time_of_last_read_access_Pattern date-and-time-of-last-read-access-Pattern
No value
ftam.Date_and_Time_Pattern
ftam.define_contexts define-contexts
Unsigned 32-bit integer
ftam.SET_OF_Abstract_Syntax_Name
ftam.define_contexts_item Item
ftam.Abstract_Syntax_Name
ftam.degree_of_overlap degree-of-overlap
Signed 32-bit integer
ftam.Degree_Of_Overlap
ftam.delete-Object delete-Object
Boolean
ftam.delete_Object delete-Object
Signed 32-bit integer
ftam.Lock
ftam.delete_password delete-password
Unsigned 32-bit integer
ftam.Password
ftam.delete_values delete-values
Unsigned 32-bit integer
ftam.SET_OF_Access_Control_Element
ftam.delete_values_item Item
No value
ftam.Access_Control_Element
ftam.destination_file_directory destination-file-directory
Unsigned 32-bit integer
ftam.Destination_File_Directory
ftam.diagnostic diagnostic
Unsigned 32-bit integer
ftam.Diagnostic
ftam.diagnostic_type diagnostic-type
Signed 32-bit integer
ftam.T_diagnostic_type
ftam.document_type document-type
No value
ftam.T_document_type
ftam.document_type_Pattern document-type-Pattern
No value
ftam.Object_Identifier_Pattern
ftam.document_type_name document-type-name
ftam.Document_Type_Name
ftam.enable_fadu_locking enable-fadu-locking
Boolean
ftam.BOOLEAN
ftam.enhanced-file-management enhanced-file-management
Boolean
ftam.enhanced-filestore-management enhanced-filestore-management
Boolean
ftam.equality_comparision equality-comparision
Byte array
ftam.Equality_Comparision
ftam.equals-matches equals-matches
Boolean
ftam.erase erase
Signed 32-bit integer
ftam.Lock
ftam.erase_password erase-password
Unsigned 32-bit integer
ftam.Password
ftam.error_Source error-Source
Signed 32-bit integer
ftam.Entity_Reference
ftam.error_action error-action
Signed 32-bit integer
ftam.Error_Action
ftam.error_identifier error-identifier
Signed 32-bit integer
ftam.INTEGER
ftam.error_observer error-observer
Signed 32-bit integer
ftam.Entity_Reference
ftam.exclusive exclusive
Boolean
ftam.extend extend
Signed 32-bit integer
ftam.Lock
ftam.extend_password extend-password
Unsigned 32-bit integer
ftam.Password
ftam.extension extension
Boolean
ftam.extension_attribute extension-attribute
No value
ftam.T_extension_attribute
ftam.extension_attribute_Pattern extension-attribute-Pattern
No value
ftam.T_extension_attribute_Pattern
ftam.extension_attribute_identifier extension-attribute-identifier
ftam.T_extension_attribute_identifier
ftam.extension_attribute_names extension-attribute-names
Unsigned 32-bit integer
ftam.SEQUENCE_OF_Extension_Attribute_identifier
ftam.extension_attribute_names_item Item
ftam.Extension_Attribute_identifier
ftam.extension_set_attribute_Patterns extension-set-attribute-Patterns
Unsigned 32-bit integer
ftam.T_extension_set_attribute_Patterns
ftam.extension_set_attribute_Patterns_item Item
No value
ftam.T_extension_set_attribute_Patterns_item
ftam.extension_set_attributes extension-set-attributes
Unsigned 32-bit integer
ftam.SEQUENCE_OF_Extension_Attribute
ftam.extension_set_attributes_item Item
No value
ftam.Extension_Attribute
ftam.extension_set_identifier extension-set-identifier
ftam.Extension_Set_Identifier
ftam.f-erase f-erase
Boolean
ftam.f-extend f-extend
Boolean
ftam.f-insert f-insert
Boolean
ftam.f-read f-read
Boolean
ftam.f-replace f-replace
Boolean
ftam.fSM_PDU fSM-PDU
Unsigned 32-bit integer
ftam.FSM_PDU
ftam.fTAM_Regime_PDU fTAM-Regime-PDU
Unsigned 32-bit integer
ftam.FTAM_Regime_PDU
ftam.f_Change_Iink_attrib_response f-Change-Iink-attrib-response
No value
ftam.F_CHANGE_LINK_ATTRIB_response
ftam.f_Change_attrib_reques f-Change-attrib-reques
No value
ftam.F_CHANGE_ATTRIB_request
ftam.f_Change_attrib_respon f-Change-attrib-respon
No value
ftam.F_CHANGE_ATTRIB_response
ftam.f_Change_link_attrib_request f-Change-link-attrib-request
No value
ftam.F_CHANGE_LINK_ATTRIB_request
ftam.f_Change_prefix_request f-Change-prefix-request
No value
ftam.F_CHANGE_PREFIX_request
ftam.f_Change_prefix_response f-Change-prefix-response
No value
ftam.F_CHANGE_PREFIX_response
ftam.f_begin_group_request f-begin-group-request
No value
ftam.F_BEGIN_GROUP_request
ftam.f_begin_group_response f-begin-group-response
No value
ftam.F_BEGIN_GROUP_response
ftam.f_cancel_request f-cancel-request
No value
ftam.F_CANCEL_request
ftam.f_cancel_response f-cancel-response
No value
ftam.F_CANCEL_response
ftam.f_close_request f-close-request
No value
ftam.F_CLOSE_request
ftam.f_close_response f-close-response
No value
ftam.F_CLOSE_response
ftam.f_copy_request f-copy-request
No value
ftam.F_COPY_request
ftam.f_copy_response f-copy-response
No value
ftam.F_COPY_response
ftam.f_create_directory_request f-create-directory-request
No value
ftam.F_CREATE_DIRECTORY_request
ftam.f_create_directory_response f-create-directory-response
No value
ftam.F_CREATE_DIRECTORY_response
ftam.f_create_request f-create-request
No value
ftam.F_CREATE_request
ftam.f_create_response f-create-response
No value
ftam.F_CREATE_response
ftam.f_data_end_request f-data-end-request
No value
ftam.F_DATA_END_request
ftam.f_delete_request f-delete-request
No value
ftam.F_DELETE_request
ftam.f_delete_response f-delete-response
No value
ftam.F_DELETE_response
ftam.f_deselect_request f-deselect-request
No value
ftam.F_DESELECT_request
ftam.f_deselect_response f-deselect-response
No value
ftam.F_DESELECT_response
ftam.f_end_group_request f-end-group-request
No value
ftam.F_END_GROUP_request
ftam.f_end_group_response f-end-group-response
No value
ftam.F_END_GROUP_response
ftam.f_erase_request f-erase-request
No value
ftam.F_ERASE_request
ftam.f_erase_response f-erase-response
No value
ftam.F_ERASE_response
ftam.f_group_Change_attrib_request f-group-Change-attrib-request
No value
ftam.F_GROUP_CHANGE_ATTRIB_request
ftam.f_group_Change_attrib_response f-group-Change-attrib-response
No value
ftam.F_GROUP_CHANGE_ATTRIB_response
ftam.f_group_copy_request f-group-copy-request
No value
ftam.F_GROUP_COPY_request
ftam.f_group_copy_response f-group-copy-response
No value
ftam.F_GROUP_COPY_response
ftam.f_group_delete_request f-group-delete-request
No value
ftam.F_GROUP_DELETE_request
ftam.f_group_delete_response f-group-delete-response
No value
ftam.F_GROUP_DELETE_response
ftam.f_group_list_request f-group-list-request
No value
ftam.F_GROUP_LIST_request
ftam.f_group_list_response f-group-list-response
No value
ftam.F_GROUP_LIST_response
ftam.f_group_move_request f-group-move-request
No value
ftam.F_GROUP_MOVE_request
ftam.f_group_move_response f-group-move-response
No value
ftam.F_GROUP_MOVE_response
ftam.f_group_select_request f-group-select-request
No value
ftam.F_GROUP_SELECT_request
ftam.f_group_select_response f-group-select-response
No value
ftam.F_GROUP_SELECT_response
ftam.f_initialize_request f-initialize-request
No value
ftam.F_INITIALIZE_request
ftam.f_initialize_response f-initialize-response
No value
ftam.F_INITIALIZE_response
ftam.f_link_request f-link-request
No value
ftam.F_LINK_request
ftam.f_link_response f-link-response
No value
ftam.F_LINK_response
ftam.f_list_request f-list-request
No value
ftam.F_LIST_request
ftam.f_list_response f-list-response
No value
ftam.F_LIST_response
ftam.f_locate_request f-locate-request
No value
ftam.F_LOCATE_request
ftam.f_locate_response f-locate-response
No value
ftam.F_LOCATE_response
ftam.f_move_request f-move-request
No value
ftam.F_MOVE_request
ftam.f_move_response f-move-response
No value
ftam.F_MOVE_response
ftam.f_open_request f-open-request
No value
ftam.F_OPEN_request
ftam.f_open_response f-open-response
No value
ftam.F_OPEN_response
ftam.f_p_abort_request f-p-abort-request
No value
ftam.F_P_ABORT_request
ftam.f_read_attrib_request f-read-attrib-request
No value
ftam.F_READ_ATTRIB_request
ftam.f_read_attrib_response f-read-attrib-response
No value
ftam.F_READ_ATTRIB_response
ftam.f_read_link_attrib_request f-read-link-attrib-request
No value
ftam.F_READ_LINK_ATTRIB_request
ftam.f_read_link_attrib_response f-read-link-attrib-response
No value
ftam.F_READ_LINK_ATTRIB_response
ftam.f_read_request f-read-request
No value
ftam.F_READ_request
ftam.f_recover_request f-recover-request
No value
ftam.F_RECOVER_request
ftam.f_recover_response f-recover-response
No value
ftam.F_RECOVER_response
ftam.f_restart_request f-restart-request
No value
ftam.F_RESTART_request
ftam.f_restart_response f-restart-response
No value
ftam.F_RESTART_response
ftam.f_select_another_request f-select-another-request
No value
ftam.F_SELECT_ANOTHER_request
ftam.f_select_another_response f-select-another-response
No value
ftam.F_SELECT_ANOTHER_response
ftam.f_select_request f-select-request
No value
ftam.F_SELECT_request
ftam.f_select_response f-select-response
No value
ftam.F_SELECT_response
ftam.f_terminate_request f-terminate-request
No value
ftam.F_TERMINATE_request
ftam.f_terminate_response f-terminate-response
No value
ftam.F_TERMINATE_response
ftam.f_transfer_end_request f-transfer-end-request
No value
ftam.F_TRANSFER_END_request
ftam.f_transfer_end_response f-transfer-end-response
No value
ftam.F_TRANSFER_END_response
ftam.f_u_abort_request f-u-abort-request
No value
ftam.F_U_ABORT_request
ftam.f_unlink_request f-unlink-request
No value
ftam.F_UNLINK_request
ftam.f_unlink_response f-unlink-response
No value
ftam.F_UNLINK_response
ftam.f_write_request f-write-request
No value
ftam.F_WRITE_request
ftam.fadu-locking fadu-locking
Boolean
ftam.fadu_lock fadu-lock
Signed 32-bit integer
ftam.FADU_Lock
ftam.fadu_number fadu-number
Signed 32-bit integer
ftam.INTEGER
ftam.file-access file-access
Boolean
ftam.file_PDU file-PDU
Unsigned 32-bit integer
ftam.File_PDU
ftam.file_access_data_unit_Operation file-access-data-unit-Operation
Signed 32-bit integer
ftam.T_file_access_data_unit_Operation
ftam.file_access_data_unit_identity file-access-data-unit-identity
Unsigned 32-bit integer
ftam.FADU_Identity
ftam.filestore_password filestore-password
Unsigned 32-bit integer
ftam.Password
ftam.first_last first-last
Signed 32-bit integer
ftam.T_first_last
ftam.ftam_quality_of_Service ftam-quality-of-Service
Signed 32-bit integer
ftam.FTAM_Quality_of_Service
ftam.functional_units functional-units
Byte array
ftam.Functional_Units
ftam.further_details further-details
String
ftam.GraphicString
ftam.future_Object_size future-Object-size
Unsigned 32-bit integer
ftam.Object_Size_Attribute
ftam.future_object_size_Pattern future-object-size-Pattern
No value
ftam.Integer_Pattern
ftam.graphicString graphicString
String
ftam.GraphicString
ftam.greater-than-matches greater-than-matches
Boolean
ftam.group-manipulation group-manipulation
Boolean
ftam.grouping grouping
Boolean
ftam.identity identity
String
ftam.User_Identity
ftam.identity_last_attribute_modifier identity-last-attribute-modifier
Unsigned 32-bit integer
ftam.User_Identity_Attribute
ftam.identity_of_creator identity-of-creator
Unsigned 32-bit integer
ftam.User_Identity_Attribute
ftam.identity_of_creator_Pattern identity-of-creator-Pattern
No value
ftam.User_Identity_Pattern
ftam.identity_of_last_attribute_modifier_Pattern identity-of-last-attribute-modifier-Pattern
No value
ftam.User_Identity_Pattern
ftam.identity_of_last_modifier identity-of-last-modifier
Unsigned 32-bit integer
ftam.User_Identity_Attribute
ftam.identity_of_last_modifier_Pattern identity-of-last-modifier-Pattern
No value
ftam.User_Identity_Pattern
ftam.identity_of_last_reader identity-of-last-reader
Unsigned 32-bit integer
ftam.User_Identity_Attribute
ftam.identity_of_last_reader_Pattern identity-of-last-reader-Pattern
No value
ftam.User_Identity_Pattern
ftam.implementation_information implementation-information
String
ftam.Implementation_Information
ftam.incomplete_pathname incomplete-pathname
Unsigned 32-bit integer
ftam.Pathname
ftam.initial_attributes initial-attributes
No value
ftam.Create_Attributes
ftam.initiator_identity initiator-identity
String
ftam.User_Identity
ftam.insert insert
Signed 32-bit integer
ftam.Lock
ftam.insert_password insert-password
Unsigned 32-bit integer
ftam.Password
ftam.insert_values insert-values
Unsigned 32-bit integer
ftam.SET_OF_Access_Control_Element
ftam.insert_values_item Item
No value
ftam.Access_Control_Element
ftam.integer_value integer-value
Signed 32-bit integer
ftam.INTEGER
ftam.last_member_indicator last-member-indicator
Boolean
ftam.BOOLEAN
ftam.last_transfer_end_read_request last-transfer-end-read-request
Signed 32-bit integer
ftam.INTEGER
ftam.last_transfer_end_read_response last-transfer-end-read-response
Signed 32-bit integer
ftam.INTEGER
ftam.last_transfer_end_write_request last-transfer-end-write-request
Signed 32-bit integer
ftam.INTEGER
ftam.last_transfer_end_write_response last-transfer-end-write-response
Signed 32-bit integer
ftam.INTEGER
ftam.legal_quailfication_Pattern legal-quailfication-Pattern
No value
ftam.String_Pattern
ftam.legal_qualification legal-qualification
Unsigned 32-bit integer
ftam.Legal_Qualification_Attribute
ftam.less-than-matches less-than-matches
Boolean
ftam.level_number level-number
Signed 32-bit integer
ftam.INTEGER
ftam.limited-file-management limited-file-management
Boolean
ftam.limited-filestore-management limited-filestore-management
Boolean
ftam.link link
Boolean
ftam.link_password link-password
Unsigned 32-bit integer
ftam.Password
ftam.linked_Object linked-Object
Unsigned 32-bit integer
ftam.Pathname_Attribute
ftam.linked_Object_Pattern linked-Object-Pattern
No value
ftam.Pathname_Pattern
ftam.location location
Unsigned 32-bit integer
ftam.Application_Entity_Title
ftam.management-class management-class
Boolean
ftam.match_bitstring match-bitstring
Byte array
ftam.BIT_STRING
ftam.maximum_set_size maximum-set-size
Signed 32-bit integer
ftam.INTEGER
ftam.nBS9 nBS9
No value
ftam.F_READ_ATTRIB_response
ftam.name_list name-list
Unsigned 32-bit integer
ftam.SEQUENCE_OF_Node_Name
ftam.name_list_item Item
No value
ftam.Node_Name
ftam.no-access no-access
Boolean
ftam.no-value-available-matches no-value-available-matches
Boolean
ftam.no_value_available no-value-available
No value
ftam.NULL
ftam.not-required not-required
Boolean
ftam.number_of_characters_match number-of-characters-match
Signed 32-bit integer
ftam.INTEGER
ftam.object-manipulation object-manipulation
Boolean
ftam.object_availabiiity_Pattern object-availabiiity-Pattern
No value
ftam.Boolean_Pattern
ftam.object_availability object-availability
Unsigned 32-bit integer
ftam.Object_Availability_Attribute
ftam.object_identifier_value object-identifier-value
ftam.OBJECT_IDENTIFIER
ftam.object_size object-size
Unsigned 32-bit integer
ftam.Object_Size_Attribute
ftam.object_size_Pattern object-size-Pattern
No value
ftam.Integer_Pattern
ftam.object_type object-type
Signed 32-bit integer
ftam.Object_Type_Attribute
ftam.object_type_Pattern object-type-Pattern
No value
ftam.Integer_Pattern
ftam.objects_attributes_list objects-attributes-list
Unsigned 32-bit integer
ftam.Objects_Attributes_List
ftam.octetString octetString
Byte array
ftam.OCTET_STRING
ftam.operation_result operation-result
Unsigned 32-bit integer
ftam.Operation_Result
ftam.override override
Signed 32-bit integer
ftam.Override
ftam.parameter parameter
No value
ftam.T_parameter
ftam.pass pass
Boolean
ftam.pass_passwords pass-passwords
Unsigned 32-bit integer
ftam.Pass_Passwords
ftam.passwords passwords
No value
ftam.Access_Passwords
ftam.path_access_control path-access-control
Unsigned 32-bit integer
ftam.Access_Control_Change_Attribute
ftam.path_access_passwords path-access-passwords
Unsigned 32-bit integer
ftam.Path_Access_Passwords
ftam.pathname pathname
Unsigned 32-bit integer
ftam.Pathname_Attribute
ftam.pathname_Pattern pathname-Pattern
No value
ftam.Pathname_Pattern
ftam.pathname_value pathname-value
Unsigned 32-bit integer
ftam.T_pathname_value
ftam.pathname_value_item Item
Unsigned 32-bit integer
ftam.T_pathname_value_item
ftam.permitted_actions permitted-actions
Byte array
ftam.Permitted_Actions_Attribute
ftam.permitted_actions_Pattern permitted-actions-Pattern
No value
ftam.Bitstring_Pattern
ftam.presentation_action presentation-action
Boolean
ftam.BOOLEAN
ftam.presentation_tontext_management presentation-tontext-management
Boolean
ftam.BOOLEAN
ftam.primaty_pathname primaty-pathname
Unsigned 32-bit integer
ftam.Pathname_Attribute
ftam.primaty_pathname_Pattern primaty-pathname-Pattern
No value
ftam.Pathname_Pattern
ftam.private private
Boolean
ftam.private_use private-use
Unsigned 32-bit integer
ftam.Private_Use_Attribute
ftam.processing_mode processing-mode
Byte array
ftam.T_processing_mode
ftam.proposed proposed
Unsigned 32-bit integer
ftam.Contents_Type_Attribute
ftam.protocol_Version protocol-Version
Byte array
ftam.Protocol_Version
ftam.random-Order random-Order
Boolean
ftam.read read
Signed 32-bit integer
ftam.Lock
ftam.read-Child-objects read-Child-objects
Boolean
ftam.read-Object-availability read-Object-availability
Boolean
ftam.read-Object-size read-Object-size
Boolean
ftam.read-Object-type read-Object-type
Boolean
ftam.read-access-control read-access-control
Boolean
ftam.read-attribute read-attribute
Boolean
ftam.read-contents-type read-contents-type
Boolean
ftam.read-date-and-time-of-creation read-date-and-time-of-creation
Boolean
ftam.read-date-and-time-of-last-attribute-modification read-date-and-time-of-last-attribute-modification
Boolean
ftam.read-date-and-time-of-last-modification read-date-and-time-of-last-modification
Boolean
ftam.read-date-and-time-of-last-read-access read-date-and-time-of-last-read-access
Boolean
ftam.read-future-Object-size read-future-Object-size
Boolean
ftam.read-identity-of-creator read-identity-of-creator
Boolean
ftam.read-identity-of-last-attribute-modifier read-identity-of-last-attribute-modifier
Boolean
ftam.read-identity-of-last-modifier read-identity-of-last-modifier
Boolean
ftam.read-identity-of-last-reader read-identity-of-last-reader
Boolean
ftam.read-legal-qualifiCatiOnS read-legal-qualifiCatiOnS
Boolean
ftam.read-linked-Object read-linked-Object
Boolean
ftam.read-path-access-control read-path-access-control
Boolean
ftam.read-pathname read-pathname
Boolean
ftam.read-permitted-actions read-permitted-actions
Boolean
ftam.read-primary-pathname read-primary-pathname
Boolean
ftam.read-private-use read-private-use
Boolean
ftam.read-storage-account read-storage-account
Boolean
ftam.read_attribute read-attribute
Signed 32-bit integer
ftam.Lock
ftam.read_attribute_password read-attribute-password
Unsigned 32-bit integer
ftam.Password
ftam.read_password read-password
Unsigned 32-bit integer
ftam.Password
ftam.recovefy_Point recovefy-Point
Signed 32-bit integer
ftam.INTEGER
ftam.recovery recovery
Boolean
ftam.recovery_mode recovery-mode
Signed 32-bit integer
ftam.T_request_recovery_mode
ftam.recovety_Point recovety-Point
Signed 32-bit integer
ftam.INTEGER
ftam.referent_indicator referent-indicator
Boolean
ftam.Referent_Indicator
ftam.relational_camparision relational-camparision
Byte array
ftam.Equality_Comparision
ftam.relational_comparision relational-comparision
Byte array
ftam.Relational_Comparision
ftam.relative relative
Signed 32-bit integer
ftam.T_relative
ftam.remove_contexts remove-contexts
Unsigned 32-bit integer
ftam.SET_OF_Abstract_Syntax_Name
ftam.remove_contexts_item Item
ftam.Abstract_Syntax_Name
ftam.replace replace
Signed 32-bit integer
ftam.Lock
ftam.replace_password replace-password
Unsigned 32-bit integer
ftam.Password
ftam.request_Operation_result request-Operation-result
Signed 32-bit integer
ftam.Request_Operation_Result
ftam.request_type request-type
Signed 32-bit integer
ftam.Request_Type
ftam.requested_access requested-access
Byte array
ftam.Access_Request
ftam.reset reset
Boolean
ftam.BOOLEAN
ftam.resource_identifier resource-identifier
String
ftam.GraphicString
ftam.restart-data-transfer restart-data-transfer
Boolean
ftam.retrieval_scope retrieval-scope
Signed 32-bit integer
ftam.T_retrieval_scope
ftam.reverse-traversal reverse-traversal
Boolean
ftam.root_directory root-directory
Unsigned 32-bit integer
ftam.Pathname_Attribute
ftam.scope scope
Unsigned 32-bit integer
ftam.Scope
ftam.security security
Boolean
ftam.service_class service-class
Byte array
ftam.Service_Class
ftam.shared shared
Boolean
ftam.shared_ASE_infonnation shared-ASE-infonnation
No value
ftam.Shared_ASE_Information
ftam.shared_ASE_information shared-ASE-information
No value
ftam.Shared_ASE_Information
ftam.significance_bitstring significance-bitstring
Byte array
ftam.BIT_STRING
ftam.single_name single-name
No value
ftam.Node_Name
ftam.state_result state-result
Signed 32-bit integer
ftam.State_Result
ftam.storage storage
Boolean
ftam.storage_account storage-account
Unsigned 32-bit integer
ftam.Account_Attribute
ftam.storage_account_Pattern storage-account-Pattern
No value
ftam.String_Pattern
ftam.string_match string-match
No value
ftam.String_Pattern
ftam.string_value string-value
Unsigned 32-bit integer
ftam.T_string_value
ftam.string_value_item Item
Unsigned 32-bit integer
ftam.T_string_value_item
ftam.substring_match substring-match
String
ftam.GraphicString
ftam.success_Object_count success-Object-count
Signed 32-bit integer
ftam.INTEGER
ftam.success_Object_names success-Object-names
Unsigned 32-bit integer
ftam.SEQUENCE_OF_Pathname
ftam.success_Object_names_item Item
Unsigned 32-bit integer
ftam.Pathname
ftam.suggested_delay suggested-delay
Signed 32-bit integer
ftam.INTEGER
ftam.target_Object target-Object
Unsigned 32-bit integer
ftam.Pathname_Attribute
ftam.target_object target-object
Unsigned 32-bit integer
ftam.Pathname_Attribute
ftam.threshold threshold
Signed 32-bit integer
ftam.INTEGER
ftam.time_and_date_value time-and-date-value
String
ftam.GeneralizedTime
ftam.transfer-and-management-class transfer-and-management-class
Boolean
ftam.transfer-class transfer-class
Boolean
ftam.transfer_number transfer-number
Signed 32-bit integer
ftam.INTEGER
ftam.transfer_window transfer-window
Signed 32-bit integer
ftam.INTEGER
ftam.traversal traversal
Boolean
ftam.unconstrained-class unconstrained-class
Boolean
ftam.unknown unknown
No value
ftam.NULL
ftam.unstructured_binary ISO FTAM unstructured binary
Byte array
ISO FTAM unstructured binary
ftam.unstructured_text ISO FTAM unstructured text
String
ISO FTAM unstructured text
ftam.version-1 version-1
Boolean
ftam.version-2 version-2
Boolean
ftam.write write
Boolean
cltp.li Length
Unsigned 8-bit integer
Length Indicator, length of this header
cltp.type PDU Type
Unsigned 8-bit integer
PDU Type
acse.ASOI_tag_item Item
No value
acse.ASOI_tag_item
acse.ASO_context_name_list_item Item
acse.ASO_context_name
acse.Association_data_item Association-data
No value
acse.EXTERNALt
acse.Context_list_item Item
No value
acse.Context_list_item
acse.Default_Context_List_item Item
No value
acse.Default_Context_List_item
acse.P_context_result_list_item Item
No value
acse.P_context_result_list_item
acse.aSO-context-negotiation aSO-context-negotiation
Boolean
acse.aSO_context_name aSO-context-name
acse.T_AARQ_aSO_context_name
acse.aSO_context_name_list aSO-context-name-list
Unsigned 32-bit integer
acse.ASO_context_name_list
acse.a_user_data a-user-data
Unsigned 32-bit integer
acse.User_Data
acse.aare aare
No value
acse.AARE_apdu
acse.aarq aarq
No value
acse.AARQ_apdu
acse.abort_diagnostic abort-diagnostic
Unsigned 32-bit integer
acse.ABRT_diagnostic
acse.abort_source abort-source
Unsigned 32-bit integer
acse.ABRT_source
acse.abrt abrt
No value
acse.ABRT_apdu
acse.abstract_syntax abstract-syntax
acse.Abstract_syntax_name
acse.abstract_syntax_name abstract-syntax-name
acse.Abstract_syntax_name
acse.acrp acrp
No value
acse.ACRP_apdu
acse.acrq acrq
No value
acse.ACRQ_apdu
acse.acse_service_provider acse-service-provider
Unsigned 32-bit integer
acse.T_acse_service_provider
acse.acse_service_user acse-service-user
Unsigned 32-bit integer
acse.T_acse_service_user
acse.adt adt
No value
acse.A_DT_apdu
acse.ae_title_form1 ae-title-form1
Unsigned 32-bit integer
acse.AE_title_form1
acse.ae_title_form2 ae-title-form2
acse.AE_title_form2
acse.ap_title_form1 ap-title-form1
Unsigned 32-bit integer
acse.AP_title_form1
acse.ap_title_form2 ap-title-form2
acse.AP_title_form2
acse.ap_title_form3 ap-title-form3
String
acse.AP_title_form3
acse.arbitrary arbitrary
Byte array
acse.BIT_STRING
acse.aso_qualifier aso-qualifier
Unsigned 32-bit integer
acse.ASO_qualifier
acse.aso_qualifier_form1 aso-qualifier-form1
Unsigned 32-bit integer
acse.ASO_qualifier_form1
acse.aso_qualifier_form2 aso-qualifier-form2
Signed 32-bit integer
acse.ASO_qualifier_form2
acse.aso_qualifier_form3 aso-qualifier-form3
String
acse.ASO_qualifier_form3
acse.aso_qualifier_form_any_octets aso-qualifier-form-any-octets
Byte array
acse.ASO_qualifier_form_octets
acse.asoi_identifier asoi-identifier
Unsigned 32-bit integer
acse.ASOI_identifier
acse.authentication authentication
Boolean
acse.bitstring bitstring
Byte array
acse.BIT_STRING
acse.called_AE_invocation_identifier called-AE-invocation-identifier
Signed 32-bit integer
acse.AE_invocation_identifier
acse.called_AE_qualifier called-AE-qualifier
Unsigned 32-bit integer
acse.AE_qualifier
acse.called_AP_invocation_identifier called-AP-invocation-identifier
Signed 32-bit integer
acse.AP_invocation_identifier
acse.called_AP_title called-AP-title
Unsigned 32-bit integer
acse.AP_title
acse.called_asoi_tag called-asoi-tag
Unsigned 32-bit integer
acse.ASOI_tag
acse.calling_AE_invocation_identifier calling-AE-invocation-identifier
Signed 32-bit integer
acse.AE_invocation_identifier
acse.calling_AE_qualifier calling-AE-qualifier
Unsigned 32-bit integer
acse.AE_qualifier
acse.calling_AP_invocation_identifier calling-AP-invocation-identifier
Signed 32-bit integer
acse.AP_invocation_identifier
acse.calling_AP_title calling-AP-title
Unsigned 32-bit integer
acse.AP_title
acse.calling_asoi_tag calling-asoi-tag
Unsigned 32-bit integer
acse.ASOI_tag
acse.calling_authentication_value calling-authentication-value
Unsigned 32-bit integer
acse.Authentication_value
acse.charstring charstring
String
acse.GraphicString
acse.concrete_syntax_name concrete-syntax-name
acse.Concrete_syntax_name
acse.context_list context-list
Unsigned 32-bit integer
acse.Context_list
acse.data_value_descriptor data-value-descriptor
String
acse.ObjectDescriptor
acse.default_contact_list default-contact-list
Unsigned 32-bit integer
acse.Default_Context_List
acse.direct_reference direct-reference
acse.T_direct_reference
acse.encoding encoding
Unsigned 32-bit integer
acse.T_encoding
acse.external external
No value
acse.EXTERNALt
acse.fully_encoded_data fully-encoded-data
No value
acse.PDV_list
acse.higher-level-association higher-level-association
Boolean
acse.identifier identifier
Unsigned 32-bit integer
acse.ASOI_identifier
acse.implementation_information implementation-information
String
acse.Implementation_data
acse.indirect_reference indirect-reference
Signed 32-bit integer
acse.T_indirect_reference
acse.mechanism_name mechanism-name
acse.Mechanism_name
acse.nested-association nested-association
Boolean
acse.octet_aligned octet-aligned
Byte array
acse.T_octet_aligned
acse.other other
No value
acse.Authentication_value_other
acse.other_mechanism_name other-mechanism-name
acse.T_other_mechanism_name
acse.other_mechanism_value other-mechanism-value
No value
acse.T_other_mechanism_value
acse.p_context_definition_list p-context-definition-list
Unsigned 32-bit integer
acse.Syntactic_context_list
acse.p_context_result_list p-context-result-list
Unsigned 32-bit integer
acse.P_context_result_list
acse.pci pci
Signed 32-bit integer
acse.Presentation_context_identifier
acse.presentation_context_identifier presentation-context-identifier
Signed 32-bit integer
acse.Presentation_context_identifier
acse.presentation_data_values presentation-data-values
Unsigned 32-bit integer
acse.T_presentation_data_values
acse.protocol_version protocol-version
Byte array
acse.T_AARQ_protocol_version
acse.provider_reason provider-reason
Signed 32-bit integer
acse.T_provider_reason
acse.qualifier qualifier
Unsigned 32-bit integer
acse.ASO_qualifier
acse.reason reason
Signed 32-bit integer
acse.Release_request_reason
acse.responder_acse_requirements responder-acse-requirements
Byte array
acse.ACSE_requirements
acse.responding_AE_invocation_identifier responding-AE-invocation-identifier
Signed 32-bit integer
acse.AE_invocation_identifier
acse.responding_AE_qualifier responding-AE-qualifier
Unsigned 32-bit integer
acse.AE_qualifier
acse.responding_AP_invocation_identifier responding-AP-invocation-identifier
Signed 32-bit integer
acse.AP_invocation_identifier
acse.responding_AP_title responding-AP-title
Unsigned 32-bit integer
acse.AP_title
acse.responding_authentication_value responding-authentication-value
Unsigned 32-bit integer
acse.Authentication_value
acse.result result
Unsigned 32-bit integer
acse.Associate_result
acse.result_source_diagnostic result-source-diagnostic
Unsigned 32-bit integer
acse.Associate_source_diagnostic
acse.rlre rlre
No value
acse.RLRE_apdu
acse.rlrq rlrq
No value
acse.RLRQ_apdu
acse.sender_acse_requirements sender-acse-requirements
Byte array
acse.ACSE_requirements
acse.simple_ASN1_type simple-ASN1-type
No value
acse.T_simple_ASN1_type
acse.simply_encoded_data simply-encoded-data
Byte array
acse.Simply_encoded_data
acse.single_ASN1_type single-ASN1-type
No value
acse.T_single_ASN1_type
acse.transfer_syntax_name transfer-syntax-name
acse.TransferSyntaxName
acse.transfer_syntaxes transfer-syntaxes
Unsigned 32-bit integer
acse.SEQUENCE_OF_TransferSyntaxName
acse.transfer_syntaxes_item Item
acse.TransferSyntaxName
acse.user_information user-information
Unsigned 32-bit integer
acse.Association_data
acse.version1 version1
Boolean
pres.Context_list_item Item
No value
pres.Context_list_item
pres.Fully_encoded_data_item Item
No value
pres.PDV_list
pres.Presentation_context_deletion_list_item Item
Signed 32-bit integer
pres.Presentation_context_identifier
pres.Presentation_context_deletion_result_list_item Item
Signed 32-bit integer
pres.Presentation_context_deletion_result_list_item
pres.Presentation_context_identifier_list_item Item
No value
pres.Presentation_context_identifier_list_item
pres.Result_list_item Item
No value
pres.Result_list_item
pres.Typed_data_type Typed data type
Unsigned 32-bit integer
pres.aborttype Abort type
Unsigned 32-bit integer
pres.abstract_syntax_name abstract-syntax-name
pres.Abstract_syntax_name
pres.acPPDU acPPDU
No value
pres.AC_PPDU
pres.acaPPDU acaPPDU
No value
pres.ACA_PPDU
pres.activity-management activity-management
Boolean
pres.arbitrary arbitrary
Byte array
pres.BIT_STRING
pres.arp_ppdu arp-ppdu
No value
pres.ARP_PPDU
pres.aru_ppdu aru-ppdu
Unsigned 32-bit integer
pres.ARU_PPDU
pres.called_presentation_selector called-presentation-selector
Byte array
pres.Called_presentation_selector
pres.calling_presentation_selector calling-presentation-selector
Byte array
pres.Calling_presentation_selector
pres.capability-data capability-data
Boolean
pres.context-management context-management
Boolean
pres.cpapdu CPA-PPDU
No value
pres.cprtype CPR-PPDU
Unsigned 32-bit integer
pres.cptype CP-type
No value
pres.data-separation data-separation
Boolean
pres.default_context_name default-context-name
No value
pres.Default_context_name
pres.default_context_result default-context-result
Signed 32-bit integer
pres.Default_context_result
pres.duplex duplex
Boolean
pres.event_identifier event-identifier
Signed 32-bit integer
pres.Event_identifier
pres.exceptions exceptions
Boolean
pres.expedited-data expedited-data
Boolean
pres.extensions extensions
No value
pres.T_extensions
pres.fully_encoded_data fully-encoded-data
Unsigned 32-bit integer
pres.Fully_encoded_data
pres.half-duplex half-duplex
Boolean
pres.initiators_nominated_context initiators-nominated-context
Signed 32-bit integer
pres.Presentation_context_identifier
pres.major-synchronize major-synchronize
Boolean
pres.minor-synchronize minor-synchronize
Boolean
pres.mode_selector mode-selector
No value
pres.Mode_selector
pres.mode_value mode-value
Signed 32-bit integer
pres.T_mode_value
pres.negotiated-release negotiated-release
Boolean
pres.nominated-context nominated-context
Boolean
pres.normal_mode_parameters normal-mode-parameters
No value
pres.T_normal_mode_parameters
pres.octet_aligned octet-aligned
Byte array
pres.T_octet_aligned
pres.packed-encoding-rules packed-encoding-rules
Boolean
pres.presentation_context_addition_list presentation-context-addition-list
Unsigned 32-bit integer
pres.Presentation_context_addition_list
pres.presentation_context_addition_result_list presentation-context-addition-result-list
Unsigned 32-bit integer
pres.Presentation_context_addition_result_list
pres.presentation_context_definition_list presentation-context-definition-list
Unsigned 32-bit integer
pres.Presentation_context_definition_list
pres.presentation_context_definition_result_list presentation-context-definition-result-list
Unsigned 32-bit integer
pres.Presentation_context_definition_result_list
pres.presentation_context_deletion_list presentation-context-deletion-list
Unsigned 32-bit integer
pres.Presentation_context_deletion_list
pres.presentation_context_deletion_result_list presentation-context-deletion-result-list
Unsigned 32-bit integer
pres.Presentation_context_deletion_result_list
pres.presentation_context_identifier presentation-context-identifier
Signed 32-bit integer
pres.Presentation_context_identifier
pres.presentation_context_identifier_list presentation-context-identifier-list
Unsigned 32-bit integer
pres.Presentation_context_identifier_list
pres.presentation_data_values presentation-data-values
Unsigned 32-bit integer
pres.T_presentation_data_values
pres.presentation_requirements presentation-requirements
Byte array
pres.Presentation_requirements
pres.protocol_options protocol-options
Byte array
pres.Protocol_options
pres.protocol_version protocol-version
Byte array
pres.Protocol_version
pres.provider_reason provider-reason
Signed 32-bit integer
pres.Provider_reason
pres.responders_nominated_context responders-nominated-context
Signed 32-bit integer
pres.Presentation_context_identifier
pres.responding_presentation_selector responding-presentation-selector
Byte array
pres.Responding_presentation_selector
pres.restoration restoration
Boolean
pres.result result
Signed 32-bit integer
pres.Result
pres.resynchronize resynchronize
Boolean
pres.short-encoding short-encoding
Boolean
pres.simply_encoded_data simply-encoded-data
Byte array
pres.Simply_encoded_data
pres.single_ASN1_type single-ASN1-type
Byte array
pres.T_single_ASN1_type
pres.symmetric-synchronize symmetric-synchronize
Boolean
pres.transfer_syntax_name transfer-syntax-name
pres.Transfer_syntax_name
pres.transfer_syntax_name_list transfer-syntax-name-list
Unsigned 32-bit integer
pres.SEQUENCE_OF_Transfer_syntax_name
pres.transfer_syntax_name_list_item Item
pres.Transfer_syntax_name
pres.ttdPPDU ttdPPDU
Unsigned 32-bit integer
pres.User_data
pres.typed-data typed-data
Boolean
pres.user_data user-data
Unsigned 32-bit integer
pres.User_data
pres.user_session_requirements user-session-requirements
Byte array
pres.User_session_requirements
pres.version-1 version-1
Boolean
pres.x400_mode_parameters x400-mode-parameters
No value
rtse.RTORJapdu
pres.x410_mode_parameters x410-mode-parameters
No value
rtse.RTORQapdu
esis.chksum Checksum
Unsigned 16-bit integer
esis.htime Holding Time
Unsigned 16-bit integer
s
esis.length PDU Length
Unsigned 8-bit integer
esis.nlpi Network Layer Protocol Identifier
Unsigned 8-bit integer
esis.res Reserved(==0)
Unsigned 8-bit integer
esis.type PDU Type
Unsigned 8-bit integer
esis.ver Version (==1)
Unsigned 8-bit integer
mp2t.af Adaption field
No value
mp2t.af.afe_flag Adaptation Field Extension Flag
Unsigned 8-bit integer
mp2t.af.di Discontinuity Indicator
Unsigned 8-bit integer
mp2t.af.e.dnau_14_0 DTS Next AU[14...0]
Unsigned 16-bit integer
mp2t.af.e.dnau_29_15 DTS Next AU[29...15]
Unsigned 16-bit integer
mp2t.af.e.dnau_32_30 DTS Next AU[32...30]
Unsigned 8-bit integer
mp2t.af.e.ltw_flag LTW Flag
Unsigned 8-bit integer
mp2t.af.e.ltwo LTW Offset
Unsigned 16-bit integer
mp2t.af.e.ltwv_flag LTW Valid Flag
Unsigned 16-bit integer
mp2t.af.e.m_1 Marker Bit
Unsigned 8-bit integer
mp2t.af.e.m_2 Marker Bit
Unsigned 16-bit integer
mp2t.af.e.m_3 Marker Bit
Unsigned 16-bit integer
mp2t.af.e.pr Piecewise Rate
Unsigned 24-bit integer
mp2t.af.e.pr_flag Piecewise Rate Flag
Unsigned 8-bit integer
mp2t.af.e.pr_reserved Reserved
Unsigned 24-bit integer
mp2t.af.e.reserved Reserved
Unsigned 8-bit integer
mp2t.af.e.reserved_bytes Reserved
Byte array
mp2t.af.e.ss_flag Seamless Splice Flag
Unsigned 8-bit integer
mp2t.af.e.st Splice Type
Unsigned 8-bit integer
mp2t.af.e_length Adaptation Field Extension Length
Unsigned 8-bit integer
mp2t.af.espi Elementary Stream Priority Indicator
Unsigned 8-bit integer
mp2t.af.length Adaptation Field Length
Unsigned 8-bit integer
mp2t.af.opcr Original Program Clock Reference
No value
mp2t.af.opcr_flag OPCR Flag
Unsigned 8-bit integer
mp2t.af.pcr Program Clock Reference
No value
mp2t.af.pcr_flag PCR Flag
Unsigned 8-bit integer
mp2t.af.rai Random Access Indicator
Unsigned 8-bit integer
mp2t.af.sc Splice Countdown
Unsigned 8-bit integer
mp2t.af.sp_flag Splicing Point Flag
Unsigned 8-bit integer
mp2t.af.stuffing_bytes Stuffing
Byte array
mp2t.af.tpd Transport Private Data
Byte array
mp2t.af.tpd_flag Transport Private Data Flag
Unsigned 8-bit integer
mp2t.af.tpd_length Transport Private Data Length
Unsigned 8-bit integer
mp2t.afc Adaption Field Control
Unsigned 32-bit integer
mp2t.cc Continuity Counter
Unsigned 32-bit integer
mp2t.header Header
Unsigned 32-bit integer
mp2t.malformed_payload Malformed Payload
Byte array
mp2t.payload Payload
Byte array
mp2t.pid PID
Unsigned 32-bit integer
mp2t.pusi Payload Unit Start Indicator
Unsigned 32-bit integer
mp2t.sync_byte Sync Byte
Unsigned 32-bit integer
mp2t.tei Transport Error Indicator
Unsigned 32-bit integer
mp2t.tp Transport Priority
Unsigned 32-bit integer
mp2t.tsc Transport Scrambling Control
Unsigned 32-bit integer
isup_thin.count Message length (counted according to bit 0) including the Message Header
Unsigned 16-bit integer
Message length
isup_thin.count.type Count Type
Unsigned 8-bit integer
Count Type
isup_thin.count.version Version
Unsigned 16-bit integer
Version
isup_thin.dpc Destination Point Code
Unsigned 32-bit integer
Destination Point Code
isup_thin.isup.message.length ISUP message length
Unsigned 16-bit integer
ISUP message length
isup_thin.message.class Message Class
Unsigned 8-bit integer
Message Class
isup_thin.messaget.type Message Type
Unsigned 8-bit integer
Message Type
isup_thin.mtp.message.name Message Name Code
Unsigned 8-bit integer
Message Name
isup_thin.oam.message.name Message Name Code
Unsigned 8-bit integer
Message Name
isup_thin.opc Originating Point Code
Unsigned 32-bit integer
Originating Point Code
isup_thin.priority Priority
Unsigned 8-bit integer
Priority
isup_thin.servind Service Indicator
Unsigned 8-bit integer
Service Indicator
isup_thin.sls Signalling Link Selection
Unsigned 8-bit integer
Signalling Link Selection
isup_thin.subservind Sub Service Field (Network Indicator)
Unsigned 8-bit integer
Sub Service Field (Network Indicator)
isystemactivator.opnum Operation
Unsigned 16-bit integer
isystemactivator.unknown IUnknown
No value
gnm.AcceptableCircuitPackTypeList AcceptableCircuitPackTypeList
Unsigned 32-bit integer
gnm.AcceptableCircuitPackTypeList
gnm.AcceptableCircuitPackTypeList_item Item
String
gnm.PrintableString
gnm.AlarmSeverityAssignmentList AlarmSeverityAssignmentList
Unsigned 32-bit integer
gnm.AlarmSeverityAssignmentList
gnm.AlarmSeverityAssignmentList_item Item
No value
gnm.AlarmSeverityAssignment
gnm.AlarmStatus AlarmStatus
Unsigned 32-bit integer
gnm.AlarmStatus
gnm.Boolean Boolean
Boolean
gnm.Boolean
gnm.ChannelNumber ChannelNumber
Signed 32-bit integer
gnm.ChannelNumber
gnm.CharacteristicInformation CharacteristicInformation
gnm.CharacteristicInformation
gnm.CircuitDirectionality CircuitDirectionality
Unsigned 32-bit integer
gnm.CircuitDirectionality
gnm.CircuitPackType CircuitPackType
String
gnm.CircuitPackType
gnm.ConnectivityPointer ConnectivityPointer
Unsigned 32-bit integer
gnm.ConnectivityPointer
gnm.Count Count
Signed 32-bit integer
gnm.Count
gnm.CrossConnectionName CrossConnectionName
String
gnm.CrossConnectionName
gnm.CrossConnectionObjectPointer CrossConnectionObjectPointer
Unsigned 32-bit integer
gnm.CrossConnectionObjectPointer
gnm.CurrentProblemList CurrentProblemList
Unsigned 32-bit integer
gnm.CurrentProblemList
gnm.CurrentProblemList_item Item
No value
gnm.CurrentProblem
gnm.Directionality Directionality
Unsigned 32-bit integer
gnm.Directionality
gnm.DownstreamConnectivityPointer DownstreamConnectivityPointer
Unsigned 32-bit integer
gnm.DownstreamConnectivityPointer
gnm.EquipmentHolderAddress EquipmentHolderAddress
Unsigned 32-bit integer
gnm.EquipmentHolderAddress
gnm.EquipmentHolderAddress_item Item
String
gnm.PrintableString
gnm.EquipmentHolderType EquipmentHolderType
String
gnm.EquipmentHolderType
gnm.ExternalTime ExternalTime
String
gnm.ExternalTime
gnm.HolderStatus HolderStatus
Unsigned 32-bit integer
gnm.HolderStatus
gnm.InformationTransferCapabilities InformationTransferCapabilities
Unsigned 32-bit integer
gnm.InformationTransferCapabilities
gnm.ListOfCharacteristicInformation ListOfCharacteristicInformation
Unsigned 32-bit integer
gnm.ListOfCharacteristicInformation
gnm.ListOfCharacteristicInformation_item Item
gnm.CharacteristicInformation
gnm.MappingList_item Item
gnm.PayloadLevel
gnm.MultipleConnections_item Item
Unsigned 32-bit integer
gnm.MultipleConnections_item
gnm.NameType NameType
Unsigned 32-bit integer
gnm.NameType
gnm.NumberOfCircuits NumberOfCircuits
Signed 32-bit integer
gnm.NumberOfCircuits
gnm.ObjectList ObjectList
Unsigned 32-bit integer
gnm.ObjectList
gnm.ObjectList_item Item
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.Pointer Pointer
Unsigned 32-bit integer
gnm.Pointer
gnm.PointerOrNull PointerOrNull
Unsigned 32-bit integer
gnm.PointerOrNull
gnm.RelatedObjectInstance RelatedObjectInstance
Unsigned 32-bit integer
gnm.RelatedObjectInstance
gnm.Replaceable Replaceable
Unsigned 32-bit integer
gnm.Replaceable
gnm.SequenceOfObjectInstance SequenceOfObjectInstance
Unsigned 32-bit integer
gnm.SequenceOfObjectInstance
gnm.SequenceOfObjectInstance_item Item
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.SerialNumber SerialNumber
String
gnm.SerialNumber
gnm.SignalRateAndMappingList_item Item
No value
gnm.SignalRateAndMappingList_item
gnm.SignalType SignalType
Unsigned 32-bit integer
gnm.SignalType
gnm.SignallingCapabilities SignallingCapabilities
Unsigned 32-bit integer
gnm.SignallingCapabilities
gnm.SubordinateCircuitPackSoftwareLoad SubordinateCircuitPackSoftwareLoad
Unsigned 32-bit integer
gnm.SubordinateCircuitPackSoftwareLoad
gnm.SupportableClientList SupportableClientList
Unsigned 32-bit integer
gnm.SupportableClientList
gnm.SupportableClientList_item Item
Unsigned 32-bit integer
cmip.ObjectClass
gnm.SupportedTOClasses SupportedTOClasses
Unsigned 32-bit integer
gnm.SupportedTOClasses
gnm.SupportedTOClasses_item Item
gnm.OBJECT_IDENTIFIER
gnm.SystemTimingSource SystemTimingSource
No value
gnm.SystemTimingSource
gnm.ToTPPools_item Item
No value
gnm.ToTPPools_item
gnm.TpsInGtpList TpsInGtpList
Unsigned 32-bit integer
gnm.TpsInGtpList
gnm.TpsInGtpList_item Item
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.TransmissionCharacteristics TransmissionCharacteristics
Byte array
gnm.TransmissionCharacteristics
gnm.UserLabel UserLabel
String
gnm.UserLabel
gnm.VendorName VendorName
String
gnm.VendorName
gnm.Version Version
String
gnm.Version
gnm._item_item Item
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.alarmStatus alarmStatus
Unsigned 32-bit integer
gnm.AlarmStatus
gnm.broadcast broadcast
Unsigned 32-bit integer
gnm.SET_OF_ObjectInstance
gnm.broadcastConcatenated broadcastConcatenated
Unsigned 32-bit integer
gnm.T_broadcastConcatenated
gnm.broadcastConcatenated_item Item
Unsigned 32-bit integer
gnm.SEQUENCE_OF_ObjectInstance
gnm.broadcast_item Item
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.bundle bundle
No value
gnm.Bundle
gnm.bundlingFactor bundlingFactor
Signed 32-bit integer
gnm.INTEGER
gnm.characteristicInfoType characteristicInfoType
gnm.CharacteristicInformation
gnm.characteristicInformation characteristicInformation
gnm.CharacteristicInformation
gnm.complex complex
Unsigned 32-bit integer
gnm.SEQUENCE_OF_Bundle
gnm.complex_item Item
No value
gnm.Bundle
gnm.concatenated concatenated
Unsigned 32-bit integer
gnm.SEQUENCE_OF_ObjectInstance
gnm.concatenated_item Item
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.connected connected
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.connection connection
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.dCME dCME
Boolean
gnm.deletedTpPoolOrGTP deletedTpPoolOrGTP
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.downstreamConnected downstreamConnected
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.downstreamNotConnected downstreamNotConnected
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.echoControl echoControl
Boolean
gnm.explicitPToP explicitPToP
No value
gnm.ExplicitPtoP
gnm.explicitPtoMP explicitPtoMP
No value
gnm.ExplicitPtoMP
gnm.failed failed
Unsigned 32-bit integer
gnm.Failed
gnm.fromTp fromTp
Unsigned 32-bit integer
gnm.ExplicitTP
gnm.globalValue globalValue
gnm.OBJECT_IDENTIFIER
gnm.gtp gtp
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.holderEmpty holderEmpty
No value
gnm.NULL
gnm.inTheAcceptableList inTheAcceptableList
String
gnm.CircuitPackType
gnm.incorrectInstances incorrectInstances
Unsigned 32-bit integer
gnm.SET_OF_ObjectInstance
gnm.incorrectInstances_item Item
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.integerValue integerValue
Signed 32-bit integer
gnm.INTEGER
gnm.legs legs
Unsigned 32-bit integer
gnm.SET_OF_ToTermSpecifier
gnm.legs_item Item
Unsigned 32-bit integer
gnm.ToTermSpecifier
gnm.listofTPs listofTPs
Unsigned 32-bit integer
gnm.SEQUENCE_OF_ObjectInstance
gnm.listofTPs_item Item
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.localValue localValue
Signed 32-bit integer
gnm.INTEGER
gnm.logicalProblem logicalProblem
No value
gnm.LogicalProblem
gnm.mappingList mappingList
Unsigned 32-bit integer
gnm.MappingList
gnm.mpCrossConnection mpCrossConnection
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.mpXCon mpXCon
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.multipleConnections multipleConnections
Unsigned 32-bit integer
gnm.MultipleConnections
gnm.name name
String
gnm.CrossConnectionName
gnm.newTP newTP
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.none none
No value
gnm.NULL
gnm.notApplicable notApplicable
No value
gnm.NULL
gnm.notAvailable notAvailable
No value
gnm.NULL
gnm.notConnected notConnected
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.notInTheAcceptableList notInTheAcceptableList
String
gnm.CircuitPackType
gnm.null null
No value
gnm.NULL
gnm.numberOfTPs numberOfTPs
Signed 32-bit integer
gnm.INTEGER
gnm.numericName numericName
Signed 32-bit integer
gnm.INTEGER
gnm.objectClass objectClass
gnm.OBJECT_IDENTIFIER
gnm.oneTPorGTP oneTPorGTP
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.pString pString
String
gnm.GraphicString
gnm.pass pass
Unsigned 32-bit integer
gnm.Connected
gnm.pointToMultipoint pointToMultipoint
No value
gnm.PointToMultipoint
gnm.pointToPoint pointToPoint
No value
gnm.PointToPoint
gnm.pointer pointer
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.primaryTimingSource primaryTimingSource
No value
gnm.SystemTiming
gnm.problem problem
Unsigned 32-bit integer
cmip.ProbableCause
gnm.problemCause problemCause
Unsigned 32-bit integer
gnm.ProblemCause
gnm.ptoMPools ptoMPools
No value
gnm.PtoMPools
gnm.ptoTpPool ptoTpPool
No value
gnm.PtoTPPool
gnm.redline redline
Boolean
gnm.BOOLEAN
gnm.relatedObject relatedObject
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.resourceProblem resourceProblem
Unsigned 32-bit integer
gnm.ResourceProblem
gnm.satellite satellite
Boolean
gnm.secondaryTimingSource secondaryTimingSource
No value
gnm.SystemTiming
gnm.severityAssignedNonServiceAffecting severityAssignedNonServiceAffecting
Unsigned 32-bit integer
gnm.AlarmSeverityCode
gnm.severityAssignedServiceAffecting severityAssignedServiceAffecting
Unsigned 32-bit integer
gnm.AlarmSeverityCode
gnm.severityAssignedServiceIndependent severityAssignedServiceIndependent
Unsigned 32-bit integer
gnm.AlarmSeverityCode
gnm.signalRate signalRate
Unsigned 32-bit integer
gnm.SignalRate
gnm.simple simple
gnm.CharacteristicInformation
gnm.single single
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.sinkTP sinkTP
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.softwareIdentifiers softwareIdentifiers
Unsigned 32-bit integer
gnm.T_softwareIdentifiers
gnm.softwareIdentifiers_item Item
String
gnm.PrintableString
gnm.softwareInstances softwareInstances
Unsigned 32-bit integer
gnm.SEQUENCE_OF_ObjectInstance
gnm.softwareInstances_item Item
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.sourceID sourceID
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.sourceTP sourceTP
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.sourceType sourceType
Unsigned 32-bit integer
gnm.T_sourceType
gnm.tPOrGTP tPOrGTP
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.toPool toPool
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.toTPPools toTPPools
Unsigned 32-bit integer
gnm.ToTPPools
gnm.toTPs toTPs
Unsigned 32-bit integer
gnm.SET_OF_ExplicitTP
gnm.toTPs_item Item
Unsigned 32-bit integer
gnm.ExplicitTP
gnm.toTp toTp
Unsigned 32-bit integer
gnm.ExplicitTP
gnm.toTpOrGTP toTpOrGTP
Unsigned 32-bit integer
gnm.ExplicitTP
gnm.toTpPool toTpPool
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.toTps toTps
Unsigned 32-bit integer
gnm.T_toTps
gnm.toTps_item Item
No value
gnm.T_toTps_item
gnm.tp tp
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.tpPool tpPool
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.tpPoolId tpPoolId
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.tps tps
Unsigned 32-bit integer
gnm.SET_OF_ObjectInstance
gnm.tpsAdded tpsAdded
Unsigned 32-bit integer
gnm.SEQUENCE_OF_ObjectInstance
gnm.tpsAdded_item Item
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.tps_item Item
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.unchangedTP unchangedTP
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.unknown unknown
No value
gnm.NULL
gnm.unknownType unknownType
No value
gnm.NULL
gnm.upstreamConnected upstreamConnected
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.upstreamNotConnected upstreamNotConnected
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.wavelength wavelength
Signed 32-bit integer
gnm.WaveLength
gnm.xCon xCon
Unsigned 32-bit integer
cmip.ObjectInstance
gnm.xConnection xConnection
Unsigned 32-bit integer
cmip.ObjectInstance
e164.called_party_number.digits E.164 Called party number digits
String
e164.calling_party_number.digits E.164 Calling party number digits
String
e212.mcc Mobile Country Code (MCC)
Unsigned 16-bit integer
Mobile Country Code MCC
e212.mnc Mobile network code (MNC)
Unsigned 16-bit integer
Mobile network code
e212.msin Mobile Subscriber Identification Number (MSIN)
String
Mobile Subscriber Identification Number(MSIN)
x224.class Class
Unsigned 8-bit integer
x224.code Code
Unsigned 8-bit integer
x224.dst_ref DST-REF
Unsigned 16-bit integer
x224.eot EOT
Boolean
x224.length Length
Unsigned 8-bit integer
x224.nr NR
Unsigned 8-bit integer
x224.src_ref SRC-REF
Unsigned 16-bit integer
h223.al.fragment H.223 AL-PDU Fragment
Frame number
H.223 AL-PDU Fragment
h223.al.fragment.error Defragmentation error
Frame number
Defragmentation error due to illegal fragments
h223.al.fragment.multipletails Multiple tail fragments found
Boolean
Several tails were found when defragmenting the packet
h223.al.fragment.overlap Fragment overlap
Boolean
Fragment overlaps with other fragments
h223.al.fragment.overlap.conflict Conflicting data in fragment overlap
Boolean
Overlapping fragments contained conflicting data
h223.al.fragment.toolongfragment Fragment too long
Boolean
Fragment contained data past end of packet
h223.al.fragments H.223 AL-PDU Fragments
No value
H.223 AL-PDU Fragments
h223.al.payload H.223 AL Payload
No value
H.223 AL-PDU Payload
h223.al.reassembled_in AL-PDU fragment, reassembled in frame
Frame number
This H.223 AL-PDU packet is reassembled in this frame
h223.al1 H.223 AL1
No value
H.223 AL-PDU using AL1
h223.al1.framed H.223 AL1 framing
Boolean
h223.al2 H.223 AL2
Boolean
H.223 AL-PDU using AL2
h223.al2.crc CRC
Unsigned 8-bit integer
CRC
h223.al2.crc_bad Bad CRC
Boolean
h223.al2.seqno Sequence Number
Unsigned 8-bit integer
H.223 AL2 sequence number
h223.mux H.223 MUX-PDU
No value
H.223 MUX-PDU
h223.mux.correctedhdr Corrected value
Unsigned 24-bit integer
Corrected header bytes
h223.mux.deactivated Deactivated multiplex table entry
No value
mpl refers to an entry in the multiplex table which is not active
h223.mux.extra Extraneous data
No value
data beyond mpl
h223.mux.fragment H.223 MUX-PDU Fragment
Frame number
H.223 MUX-PDU Fragment
h223.mux.fragment.error Defragmentation error
Frame number
Defragmentation error due to illegal fragments
h223.mux.fragment.multipletails Multiple tail fragments found
Boolean
Several tails were found when defragmenting the packet
h223.mux.fragment.overlap Fragment overlap
Boolean
Fragment overlaps with other fragments
h223.mux.fragment.overlap.conflict Conflicting data in fragment overlap
Boolean
Overlapping fragments contained conflicting data
h223.mux.fragment.toolongfragment Fragment too long
Boolean
Fragment contained data past end of packet
h223.mux.fragments H.223 MUX-PDU Fragments
No value
H.223 MUX-PDU Fragments
h223.mux.hdlc HDLC flag
Unsigned 16-bit integer
framing flag
h223.mux.header Header
No value
H.223 MUX header
h223.mux.mc Multiplex Code
Unsigned 8-bit integer
H.223 MUX multiplex code
h223.mux.mpl Multiplex Payload Length
Unsigned 8-bit integer
H.223 MUX multiplex Payload Length
h223.mux.rawhdr Raw value
Unsigned 24-bit integer
Raw header bytes
h223.mux.reassembled_in MUX-PDU fragment, reassembled in frame
Frame number
This H.223 MUX-PDU packet is reassembled in this frame
h223.mux.stuffing H.223 stuffing PDU
No value
Empty PDU used for stuffing when no data available
h223.mux.vc H.223 virtual circuit
Unsigned 16-bit integer
H.223 Virtual Circuit
h223.non-h223 Non-H.223 data
No value
Initial data in stream, not a PDU
h223.sequenced_al2 H.223 sequenced AL2
No value
H.223 AL-PDU using AL2 with sequence numbers
h223.unsequenced_al2 H.223 unsequenced AL2
No value
H.223 AL-PDU using AL2 without sequence numbers
h261.ebit End bit position
Unsigned 8-bit integer
h261.gobn GOB Number
Unsigned 8-bit integer
h261.hmvd Horizontal motion vector data
Unsigned 8-bit integer
h261.i Intra frame encoded data flag
Boolean
h261.mbap Macroblock address predictor
Unsigned 8-bit integer
h261.quant Quantizer
Unsigned 8-bit integer
h261.sbit Start bit position
Unsigned 8-bit integer
h261.stream H.261 stream
Byte array
h261.v Motion vector flag
Boolean
h261.vmvd Vertical motion vector data
Unsigned 8-bit integer
h263.PB_frames_mode H.263 Optional PB-frames mode
Boolean
Optional PB-frames mode
h263.advanced_prediction Advanced prediction option
Boolean
Advanced Prediction option for current picture
h263.cpm H.263 Continuous Presence Multipoint and Video Multiplex (CPM)
Boolean
Continuous Presence Multipoint and Video Multiplex (CPM)
h263.custom_pcf H.263 Custom PCF
Boolean
Custom PCF
h263.dbq Differential quantization parameter
Unsigned 8-bit integer
Differential quantization parameter used to calculate quantizer for the B frame based on quantizer for the P frame, when PB-frames option is used.
h263.document_camera_indicator H.263 Document camera indicator
Boolean
Document camera indicator
h263.ebit End bit position
Unsigned 8-bit integer
End bit position specifies number of least significant bits that shall be ignored in the last data byte.
h263.ext_source_format H.263 Source Format
Unsigned 8-bit integer
Source Format
h263.ftype F
Boolean
Indicates the mode of the payload header (MODE A or B/C)
h263.gbsc H.263 Group of Block Start Code
Unsigned 32-bit integer
Group of Block Start Code
h263.gn H.263 Group Number
Unsigned 32-bit integer
Group Number, GN
h263.gobn GOB Number
Unsigned 8-bit integer
GOB number in effect at the start of the packet.
h263.hmv1 Horizontal motion vector 1
Unsigned 8-bit integer
Horizontal motion vector predictor for the first MB in this packet
h263.hmv2 Horizontal motion vector 2
Unsigned 8-bit integer
Horizontal motion vector predictor for block number 3 in the first MB in this packet when four motion vectors are used with the advanced prediction option.
h263.mba Macroblock address
Unsigned 16-bit integer
The address within the GOB of the first MB in the packet, counting from zero in scan order.
h263.opptype H.263 Optional Part of PLUSPTYPE
Unsigned 24-bit integer
Optional Part of PLUSPTYPE
h263.opt_unres_motion_vector_mode H.263 Optional Unrestricted Motion Vector mode
Boolean
Optional Unrestricted Motion Vector mode
h263.optional_advanced_prediction_mode H.263 Optional Advanced Prediction mode
Boolean
Optional Advanced Prediction mode
h263.payload H.263 payload
No value
The actual H.263 data
h263.pbframes p/b frame
Boolean
Optional PB-frames mode as defined by H.263 (MODE C)
h263.pei H.263 Extra Insertion Information (PEI)
Boolean
Extra Insertion Information (PEI)
h263.picture_coding_type Inter-coded frame
Boolean
Picture coding type, intra-coded (false) or inter-coded (true)
h263.pquant H.263 Quantizer Information (PQUANT)
Unsigned 32-bit integer
Quantizer Information (PQUANT)
h263.psc H.263 Picture start Code
Unsigned 32-bit integer
Picture start Code, PSC
h263.psi H.263 Picture Sub-Bitstream Indicator (PSBI)
Unsigned 32-bit integer
Picture Sub-Bitstream Indicator (PSBI)
h263.psupp H.263 Supplemental Enhancement Information (PSUPP)
Unsigned 32-bit integer
Supplemental Enhancement Information (PSUPP)
h263.quant Quantizer
Unsigned 8-bit integer
Quantization value for the first MB coded at the starting of the packet.
h263.r Reserved field
Unsigned 8-bit integer
Reserved field that houls contain zeroes
h263.rr Reserved field 2
Unsigned 16-bit integer
Reserved field that should contain zeroes
h263.sbit Start bit position
Unsigned 8-bit integer
Start bit position specifies number of most significant bits that shall be ignored in the first data byte.
h263.source_format H.263 Source Format
Unsigned 8-bit integer
Source Format
h263.split_screen_indicator H.263 Split screen indicator
Boolean
Split screen indicator
h263.srcformat SRC format
Unsigned 8-bit integer
Source format specifies the resolution of the current picture.
h263.stream H.263 stream
Byte array
The H.263 stream including its Picture, GOB or Macro block start code.
h263.syntax_based_arithmetic Syntax-based arithmetic coding
Boolean
Syntax-based Arithmetic Coding option for current picture
h263.syntax_based_arithmetic_coding_mode H.263 Optional Syntax-based Arithmetic Coding mode
Boolean
Optional Syntax-based Arithmetic Coding mode
h263.tr Temporal Reference for P frames
Unsigned 8-bit integer
Temporal Reference for the P frame as defined by H.263
h263.tr2 H.263 Temporal Reference
Unsigned 32-bit integer
Temporal Reference, TR
h263.trb Temporal Reference for B frames
Unsigned 8-bit integer
Temporal Reference for the B frame as defined by H.263
h263.ufep H.263 Update Full Extended PTYPE
Unsigned 16-bit integer
Update Full Extended PTYPE
h263.unrestricted_motion_vector Motion vector
Boolean
Unrestricted Motion Vector option for current picture
h263.vmv1 Vertical motion vector 1
Unsigned 8-bit integer
Vertical motion vector predictor for the first MB in this packet
h263.vmv2 Vertical motion vector 2
Unsigned 8-bit integer
Vertical motion vector predictor for block number 3 in the first MB in this packet when four motion vectors are used with the advanced prediction option.
h263P.PSC H.263 PSC
Unsigned 16-bit integer
Picture Start Code(PSC)
h263P.extra_hdr Extra picture header
Byte array
Extra picture header
h263P.p P
Boolean
Indicates (GOB/Slice) start or (EOS or EOSBS)
h263P.payload H.263 RFC4629 payload
No value
The actual H.263 RFC4629 data
h263P.pebit PEBIT
Unsigned 16-bit integer
number of bits that shall be ignored in the last byte of the picture header
h263P.plen PLEN
Unsigned 16-bit integer
Length, in bytes, of the extra picture header
h263P.rr Reserved
Unsigned 16-bit integer
Reserved SHALL be zero
h263P.s S
Unsigned 8-bit integer
Indicates that the packet content is for a sync frame
h263P.tid Thread ID
Unsigned 8-bit integer
Thread ID
h263P.tr H.263 Temporal Reference
Unsigned 16-bit integer
Temporal Reference, TR
h263P.trun Trun
Unsigned 8-bit integer
Monotonically increasing (modulo 16) 4-bit number counting the packet number within each thread
h263P.v V
Boolean
presence of Video Redundancy Coding (VRC) field
sflow.agent agent address
IPv4 address
sFlow Agent IP address
sflow.agent.v6 agent address
IPv6 address
sFlow Agent IPv6 address
sflow.as AS Router
Unsigned 32-bit integer
Autonomous System of Router
sflow.community Gateway Community
Unsigned 32-bit integer
Gateway Communities
sflow.communityEntries Gateway Communities
Unsigned 32-bit integer
Gateway Communities
sflow.dstAS AS Destination
Unsigned 32-bit integer
Autonomous System destination
sflow.dstASentries AS Destinations
Unsigned 32-bit integer
Autonomous System destinations
sflow.extended_information_type Extended information type
Unsigned 32-bit integer
Type of extended information
sflow.header Header of sampled packet
Byte array
Data from sampled header
sflow.header_protocol Header protocol
Unsigned 32-bit integer
Protocol of sampled header
sflow.ifdirection Interface Direction
Unsigned 32-bit integer
Interface Direction
sflow.ifinbcast Input Broadcast Packets
Unsigned 32-bit integer
Interface Input Broadcast Packets
sflow.ifindex Interface index
Unsigned 32-bit integer
Interface Index
sflow.ifindisc Input Discarded Packets
Unsigned 32-bit integer
Interface Input Discarded Packets
sflow.ifinerr Input Errors
Unsigned 32-bit integer
Interface Input Errors
sflow.ifinmcast Input Multicast Packets
Unsigned 32-bit integer
Interface Input Multicast Packets
sflow.ifinoct Input Octets
Unsigned 64-bit integer
Interface Input Octets
sflow.ifinpkt Input Packets
Unsigned 32-bit integer
Interface Input Packets
sflow.ifinunk Input Unknown Protocol Packets
Unsigned 32-bit integer
Interface Input Unknown Protocol Packets
sflow.ifoutbcast Output Broadcast Packets
Unsigned 32-bit integer
Interface Output Broadcast Packets
sflow.ifoutdisc Output Discarded Packets
Unsigned 32-bit integer
Interface Output Discarded Packets
sflow.ifouterr Output Errors
Unsigned 32-bit integer
Interface Output Errors
sflow.ifoutmcast Output Multicast Packets
Unsigned 32-bit integer
Interface Output Multicast Packets
sflow.ifoutoct Output Octets
Unsigned 64-bit integer
Outterface Output Octets
sflow.ifoutpkt Output Packets
Unsigned 32-bit integer
Interface Output Packets
sflow.ifpromisc Promiscuous Mode
Unsigned 32-bit integer
Interface Promiscuous Mode
sflow.ifspeed Interface Speed
Unsigned 64-bit integer
Interface Speed
sflow.ifstatus Interface Status
Unsigned 32-bit integer
Interface Status
sflow.iftype Interface Type
Unsigned 32-bit integer
Interface Type
sflow.localpref localpref
Unsigned 32-bit integer
Local preferences of AS route
sflow.nexthop Next hop
IPv4 address
Next hop address
sflow.nexthop.dst_mask Next hop destination mask
Unsigned 32-bit integer
Next hop destination mask bits
sflow.nexthop.src_mask Next hop source mask
Unsigned 32-bit integer
Next hop source mask bits
sflow.numsamples NumSamples
Unsigned 32-bit integer
Number of samples in sFlow datagram
sflow.packet_information_type Sample type
Unsigned 32-bit integer
Type of sampled information
sflow.peerAS AS Peer
Unsigned 32-bit integer
Autonomous System of Peer
sflow.pri.in Incoming 802.1p priority
Unsigned 32-bit integer
Incoming 802.1p priority
sflow.pri.out Outgoing 802.1p priority
Unsigned 32-bit integer
Outgoing 802.1p priority
sflow.sampletype sFlow sample type
Unsigned 32-bit integer
Type of sFlow sample
sflow.sequence_number Sequence number
Unsigned 32-bit integer
sFlow datagram sequence number
sflow.srcAS AS Source
Unsigned 32-bit integer
Autonomous System of Source
sflow.sub_agent_id Sub-agent ID
Unsigned 32-bit integer
sFlow sub-agent ID
sflow.sysuptime SysUptime
Unsigned 32-bit integer
System Uptime
sflow.version datagram version
Unsigned 32-bit integer
sFlow datagram version
sflow.vlan.in Incoming 802.1Q VLAN
Unsigned 32-bit integer
Incoming VLAN ID
sflow.vlan.out Outgoing 802.1Q VLAN
Unsigned 32-bit integer
Outgoing VLAN ID
infiniband.aeth ACK Extended Transport Header
Byte array
infiniband.aeth.msn Message Sequence Number
Unsigned 24-bit integer
infiniband.aeth.syndrome Syndrome
Unsigned 8-bit integer
infiniband.atomicacketh Atomic ACK Extended Transport Header
Byte array
infiniband.atomicacketh.origremdt Original Remote Data
Unsigned 64-bit integer
infiniband.atomiceth Atomic Extended Transport Header
Byte array
infiniband.atomiceth.cmpdt Compare Data
Unsigned 64-bit integer
infiniband.atomiceth.r_key Remote Key
Unsigned 32-bit integer
infiniband.atomiceth.swapdt Swap (Or Add) Data
Unsigned 64-bit integer
infiniband.atomiceth.va Virtual Address
Unsigned 64-bit integer
infiniband.bth Base Transport Header
Byte array
infiniband.bth.a Acknowledge Request
Boolean
infiniband.bth.destqp Destination Queue Pair
Unsigned 24-bit integer
infiniband.bth.m MigReq
Boolean
infiniband.bth.opcode Opcode
Unsigned 8-bit integer
infiniband.bth.p_key Partition Key
Unsigned 16-bit integer
infiniband.bth.padcnt Pad Count
Unsigned 8-bit integer
infiniband.bth.psn Packet Sequence Number
Unsigned 24-bit integer
infiniband.bth.reserved7 Reserved (7 bits)
Unsigned 8-bit integer
infiniband.bth.reserved8 Reserved (8 bits)
Unsigned 8-bit integer
infiniband.bth.se Solicited Event
Boolean
infiniband.bth.tver Header Version
Unsigned 8-bit integer
infiniband.deth Datagram Extended Transport Header
Byte array
infiniband.deth.q_key Queue Key
Unsigned 64-bit integer
infiniband.deth.reserved8 Reserved (8 bits)
Unsigned 32-bit integer
infiniband.deth.srcqp Source Queue Pair
Unsigned 32-bit integer
infiniband.grh Global Route Header
Byte array
infiniband.grh.dgid Destination GID
Byte array
infiniband.grh.flowlabel Flow Label
Unsigned 32-bit integer
infiniband.grh.hoplmt Hop Limit
Unsigned 8-bit integer
infiniband.grh.ipver IP Version
Unsigned 8-bit integer
infiniband.grh.nxthdr Next Header
Unsigned 8-bit integer
infiniband.grh.paylen Payload Length
Unsigned 16-bit integer
infiniband.grh.sgid Source GID
Byte array
infiniband.grh.tclass Traffic Class
Unsigned 16-bit integer
infiniband.ieth RKey
Byte array
infiniband.immdt Immediate Data
Byte array
infiniband.invariant.crc Invariant CRC
Unsigned 32-bit integer
infiniband.lrh Local Route Header
Byte array
infiniband.lrh.dlid Destination Local ID
Unsigned 16-bit integer
infiniband.lrh.lnh Link Next Header
Unsigned 8-bit integer
infiniband.lrh.lver Link Version
Unsigned 8-bit integer
infiniband.lrh.pktlen Packet Length
Unsigned 16-bit integer
infiniband.lrh.reserved2 Reserved (2 bits)
Unsigned 8-bit integer
infiniband.lrh.reserved5 Reserved (5 bits)
Unsigned 16-bit integer
infiniband.lrh.sl Service Level
Unsigned 8-bit integer
infiniband.lrh.slid Source Local ID
Unsigned 16-bit integer
infiniband.lrh.vl Virtual Lane
Unsigned 8-bit integer
infiniband.payload Payload
Byte array
infiniband.rawdata Raw Data
Byte array
infiniband.rdeth Reliable Datagram Extentded Transport Header
Byte array
infiniband.rdeth.eecnxt E2E Context
Unsigned 24-bit integer
infiniband.rdeth.reserved8 Reserved (8 bits)
Unsigned 8-bit integer
infiniband.reth RDMA Extended Transport Header
Byte array
infiniband.reth.dmalen DMA Length
Unsigned 8-bit integer
infiniband.reth.r_key Remote Key
Unsigned 8-bit integer
infiniband.reth.va Virtual Address
Unsigned 8-bit integer
infiniband.variant.crc Variant CRC
Unsigned 16-bit integer
infiniband.vendor Unknown/Vendor Specific Data
Byte array
iap.attrname Attribute Name
String
iap.attrtype Type
Unsigned 8-bit integer
iap.charset Character Set
Unsigned 8-bit integer
iap.classname Class Name
String
iap.ctl Control Field
Unsigned 8-bit integer
iap.ctl.ack Acknowledge
Boolean
iap.ctl.lst Last Frame
Boolean
iap.ctl.opcode Opcode
Unsigned 8-bit integer
iap.int Value
Signed 32-bit integer
iap.invallsap Mailformed IAP result: "
No value
iap.invaloctet Mailformed IAP result: "
No value
iap.listentry List Entry
No value
iap.listlen List Length
Unsigned 16-bit integer
iap.objectid Object Identifier
Unsigned 16-bit integer
iap.octseq Sequence
Byte array
iap.return Return
Unsigned 8-bit integer
iap.seqlen Sequence Length
Unsigned 16-bit integer
iap.string String
String
initshutdown.initshutdown_Abort.server Server
Unsigned 16-bit integer
initshutdown.initshutdown_Init.force_apps Force Apps
Unsigned 8-bit integer
initshutdown.initshutdown_Init.hostname Hostname
Unsigned 16-bit integer
initshutdown.initshutdown_Init.message Message
No value
initshutdown.initshutdown_Init.reboot Reboot
Unsigned 8-bit integer
initshutdown.initshutdown_Init.timeout Timeout
Unsigned 32-bit integer
initshutdown.initshutdown_InitEx.force_apps Force Apps
Unsigned 8-bit integer
initshutdown.initshutdown_InitEx.hostname Hostname
Unsigned 16-bit integer
initshutdown.initshutdown_InitEx.message Message
No value
initshutdown.initshutdown_InitEx.reason Reason
Unsigned 32-bit integer
initshutdown.initshutdown_InitEx.reboot Reboot
Unsigned 8-bit integer
initshutdown.initshutdown_InitEx.timeout Timeout
Unsigned 32-bit integer
initshutdown.initshutdown_String.name Name
No value
initshutdown.initshutdown_String.name_len Name Len
Unsigned 16-bit integer
initshutdown.initshutdown_String.name_size Name Size
Unsigned 16-bit integer
initshutdown.initshutdown_String_sub.name Name
No value
initshutdown.initshutdown_String_sub.name_size Name Size
Unsigned 32-bit integer
initshutdown.opnum Operation
Unsigned 16-bit integer
initshutdown.werror Windows Error
Unsigned 32-bit integer
ans.app_id Application ID
Unsigned 16-bit integer
Intel ANS Application ID
ans.rev_id Revision ID
Unsigned 16-bit integer
Intel ANS Revision ID
ans.sender_id Sender ID
Unsigned 16-bit integer
Intel ANS Sender ID
ans.seq_num Sequence Number
Unsigned 32-bit integer
Intel ANS Sequence Number
ans.team_id Team ID
6-byte Hardware (MAC) Address
Intel ANS Team ID
inap.ActivateServiceFilteringArg ActivateServiceFilteringArg
No value
inap.ActivateServiceFilteringArg
inap.AlternativeIdentities_item Item
Unsigned 32-bit integer
inap.AlternativeIdentity
inap.AnalyseInformationArg AnalyseInformationArg
No value
inap.AnalyseInformationArg
inap.AnalysedInformationArg AnalysedInformationArg
No value
inap.AnalysedInformationArg
inap.ApplyChargingArg ApplyChargingArg
No value
inap.ApplyChargingArg
inap.ApplyChargingReportArg ApplyChargingReportArg
Byte array
inap.ApplyChargingReportArg
inap.AssistRequestInstructionsArg AssistRequestInstructionsArg
No value
inap.AssistRequestInstructionsArg
inap.AuthorizeTerminationArg AuthorizeTerminationArg
No value
inap.AuthorizeTerminationArg
inap.CallFilteringArg CallFilteringArg
No value
inap.CallFilteringArg
inap.CallGapArg CallGapArg
No value
inap.CallGapArg
inap.CallInformationReportArg CallInformationReportArg
No value
inap.CallInformationReportArg
inap.CallInformationRequestArg CallInformationRequestArg
No value
inap.CallInformationRequestArg
inap.CancelArg CancelArg
Unsigned 32-bit integer
inap.CancelArg
inap.CancelStatusReportRequestArg CancelStatusReportRequestArg
No value
inap.CancelStatusReportRequestArg
inap.CollectInformationArg CollectInformationArg
No value
inap.CollectInformationArg
inap.CollectedInformationArg CollectedInformationArg
No value
inap.CollectedInformationArg
inap.ConnectArg ConnectArg
No value
inap.ConnectArg
inap.ConnectToResourceArg ConnectToResourceArg
No value
inap.ConnectToResourceArg
inap.ContinueWithArgumentArg ContinueWithArgumentArg
No value
inap.ContinueWithArgumentArg
inap.CountersValue_item Item
No value
inap.CounterAndValue
inap.CreateCallSegmentAssociationArg CreateCallSegmentAssociationArg
No value
inap.CreateCallSegmentAssociationArg
inap.CreateCallSegmentAssociationResultArg CreateCallSegmentAssociationResultArg
No value
inap.CreateCallSegmentAssociationResultArg
inap.CreateOrRemoveTriggerDataArg CreateOrRemoveTriggerDataArg
No value
inap.CreateOrRemoveTriggerDataArg
inap.CreateOrRemoveTriggerDataResultArg CreateOrRemoveTriggerDataResultArg
No value
inap.CreateOrRemoveTriggerDataResultArg
inap.DestinationRoutingAddress_item Item
Byte array
inap.CalledPartyNumber
inap.DisconnectForwardConnectionWithArgumentArg DisconnectForwardConnectionWithArgumentArg
No value
inap.DisconnectForwardConnectionWithArgumentArg
inap.DisconnectLegArg DisconnectLegArg
No value
inap.DisconnectLegArg
inap.EntityReleasedArg EntityReleasedArg
Unsigned 32-bit integer
inap.EntityReleasedArg
inap.EstablishTemporaryConnectionArg EstablishTemporaryConnectionArg
No value
inap.EstablishTemporaryConnectionArg
inap.EventNotificationChargingArg EventNotificationChargingArg
No value
inap.EventNotificationChargingArg
inap.EventReportBCSMArg EventReportBCSMArg
No value
inap.EventReportBCSMArg
inap.EventReportFacilityArg EventReportFacilityArg
No value
inap.EventReportFacilityArg
inap.Extensions_item Item
No value
inap.ExtensionField
inap.FacilitySelectedAndAvailableArg FacilitySelectedAndAvailableArg
No value
inap.FacilitySelectedAndAvailableArg
inap.FurnishChargingInformationArg FurnishChargingInformationArg
Byte array
inap.FurnishChargingInformationArg
inap.GenericNumbers_item Item
Byte array
inap.GenericNumber
inap.HoldCallInNetworkArg HoldCallInNetworkArg
Unsigned 32-bit integer
inap.HoldCallInNetworkArg
inap.INAP_Component INAP-Component
Unsigned 32-bit integer
inap.INAP_Component
inap.INServiceCompatibilityIndication_item Item
Unsigned 32-bit integer
inap.Entry
inap.InitialDPArg InitialDPArg
No value
inap.InitialDPArg
inap.InitiateCallAttemptArg InitiateCallAttemptArg
No value
inap.InitiateCallAttemptArg
inap.ManageTriggerDataArg ManageTriggerDataArg
No value
inap.ManageTriggerDataArg
inap.ManageTriggerDataResultArg ManageTriggerDataResultArg
Unsigned 32-bit integer
inap.ManageTriggerDataResultArg
inap.MergeCallSegmentsArg MergeCallSegmentsArg
No value
inap.MergeCallSegmentsArg
inap.MessageReceivedArg MessageReceivedArg
No value
inap.MessageReceivedArg
inap.MidCallArg MidCallArg
No value
inap.MidCallArg
inap.MidCallControlInfo_item Item
No value
inap.MidCallControlInfo_item
inap.MonitorRouteReportArg MonitorRouteReportArg
No value
inap.MonitorRouteReportArg
inap.MonitorRouteRequestArg MonitorRouteRequestArg
No value
inap.MonitorRouteRequestArg
inap.MoveCallSegmentsArg MoveCallSegmentsArg
No value
inap.MoveCallSegmentsArg
inap.MoveLegArg MoveLegArg
No value
inap.MoveLegArg
inap.OAbandonArg OAbandonArg
No value
inap.OAbandonArg
inap.OAnswerArg OAnswerArg
No value
inap.OAnswerArg
inap.OCalledPartyBusyArg OCalledPartyBusyArg
No value
inap.OCalledPartyBusyArg
inap.ODisconnectArg ODisconnectArg
No value
inap.ODisconnectArg
inap.ONoAnswerArg ONoAnswerArg
No value
inap.ONoAnswerArg
inap.OSuspendedArg OSuspendedArg
No value
inap.OSuspendedArg
inap.OriginationAttemptArg OriginationAttemptArg
No value
inap.OriginationAttemptArg
inap.OriginationAttemptAuthorizedArg OriginationAttemptAuthorizedArg
No value
inap.OriginationAttemptAuthorizedArg
inap.PlayAnnouncementArg PlayAnnouncementArg
No value
inap.PlayAnnouncementArg
inap.PromptAndCollectUserInformationArg PromptAndCollectUserInformationArg
No value
inap.PromptAndCollectUserInformationArg
inap.PromptAndReceiveMessageArg PromptAndReceiveMessageArg
No value
inap.PromptAndReceiveMessageArg
inap.ReceivedInformationArg ReceivedInformationArg
Unsigned 32-bit integer
inap.ReceivedInformationArg
inap.ReconnectArg ReconnectArg
No value
inap.ReconnectArg
inap.ReleaseCallArg ReleaseCallArg
Unsigned 32-bit integer
inap.ReleaseCallArg
inap.ReportUTSIArg ReportUTSIArg
No value
inap.ReportUTSIArg
inap.RequestCurrentStatusReportArg RequestCurrentStatusReportArg
Unsigned 32-bit integer
inap.RequestCurrentStatusReportArg
inap.RequestCurrentStatusReportResultArg RequestCurrentStatusReportResultArg
No value
inap.RequestCurrentStatusReportResultArg
inap.RequestEveryStatusChangeReportArg RequestEveryStatusChangeReportArg
No value
inap.RequestEveryStatusChangeReportArg
inap.RequestFirstStatusMatchReportArg RequestFirstStatusMatchReportArg
No value
inap.RequestFirstStatusMatchReportArg
inap.RequestNotificationChargingEventArg RequestNotificationChargingEventArg
Unsigned 32-bit integer
inap.RequestNotificationChargingEventArg
inap.RequestNotificationChargingEventArg_item Item
No value
inap.ChargingEvent
inap.RequestReportBCSMEventArg RequestReportBCSMEventArg
No value
inap.RequestReportBCSMEventArg
inap.RequestReportFacilityEventArg RequestReportFacilityEventArg
No value
inap.RequestReportFacilityEventArg
inap.RequestReportUTSIArg RequestReportUTSIArg
No value
inap.RequestReportUTSIArg
inap.RequestedInformationList_item Item
No value
inap.RequestedInformation
inap.RequestedInformationTypeList_item Item
Unsigned 32-bit integer
inap.RequestedInformationType
inap.RequestedUTSIList_item Item
No value
inap.RequestedUTSI
inap.ResetTimerArg ResetTimerArg
No value
inap.ResetTimerArg
inap.RouteCountersValue_item Item
No value
inap.RouteCountersAndValue
inap.RouteList_item Item
Byte array
inap.Route
inap.RouteSelectFailureArg RouteSelectFailureArg
No value
inap.RouteSelectFailureArg
inap.SRFCallGapArg SRFCallGapArg
No value
inap.SRFCallGapArg
inap.ScriptCloseArg ScriptCloseArg
No value
inap.ScriptCloseArg
inap.ScriptEventArg ScriptEventArg
No value
inap.ScriptEventArg
inap.ScriptInformationArg ScriptInformationArg
No value
inap.ScriptInformationArg
inap.ScriptRunArg ScriptRunArg
No value
inap.ScriptRunArg
inap.SelectFacilityArg SelectFacilityArg
No value
inap.SelectFacilityArg
inap.SelectRouteArg SelectRouteArg
No value
inap.SelectRouteArg
inap.SendChargingInformationArg SendChargingInformationArg
No value
inap.SendChargingInformationArg
inap.SendFacilityInformationArg SendFacilityInformationArg
No value
inap.SendFacilityInformationArg
inap.SendSTUIArg SendSTUIArg
No value
inap.SendSTUIArg
inap.ServiceFilteringResponseArg ServiceFilteringResponseArg
No value
inap.ServiceFilteringResponseArg
inap.SetServiceProfileArg SetServiceProfileArg
No value
inap.SetServiceProfileArg
inap.SpecializedResourceReportArg SpecializedResourceReportArg
No value
inap.SpecializedResourceReportArg
inap.SplitLegArg SplitLegArg
No value
inap.SplitLegArg
inap.StatusReportArg StatusReportArg
No value
inap.StatusReportArg
inap.TAnswerArg TAnswerArg
No value
inap.TAnswerArg
inap.TBusyArg TBusyArg
No value
inap.TBusyArg
inap.TDisconnectArg TDisconnectArg
No value
inap.TDisconnectArg
inap.TNoAnswerArg TNoAnswerArg
No value
inap.TNoAnswerArg
inap.TSuspendedArg TSuspendedArg
No value
inap.TSuspendedArg
inap.TermAttemptAuthorizedArg TermAttemptAuthorizedArg
No value
inap.TermAttemptAuthorizedArg
inap.TerminationAttemptArg TerminationAttemptArg
No value
inap.TerminationAttemptArg
inap.TriggerResults_item Item
No value
inap.TriggerResult
inap.Triggers_item Item
No value
inap.Trigger
inap.aALParameters aALParameters
Byte array
inap.AALParameters
inap.aChBillingChargingCharacteristics aChBillingChargingCharacteristics
Byte array
inap.AChBillingChargingCharacteristics
inap.aESACalledParty aESACalledParty
Byte array
inap.AESACalledParty
inap.aESACallingParty aESACallingParty
Byte array
inap.AESACallingParty
inap.aTMCellRate aTMCellRate
Byte array
inap.ATMCellRate
inap.abandonCause abandonCause
Byte array
inap.Cause
inap.access access
Byte array
inap.CalledPartyNumber
inap.accessCode accessCode
Byte array
inap.AccessCode
inap.action action
Unsigned 32-bit integer
inap.T_action
inap.actionIndicator actionIndicator
Unsigned 32-bit integer
inap.ActionIndicator
inap.actionOnProfile actionOnProfile
Unsigned 32-bit integer
inap.ActionOnProfile
inap.actionPerformed actionPerformed
Unsigned 32-bit integer
inap.ActionPerformed
inap.additionalATMCellRate additionalATMCellRate
Byte array
inap.AdditionalATMCellRate
inap.additionalCallingPartyNumber additionalCallingPartyNumber
Byte array
inap.AdditionalCallingPartyNumber
inap.addressAndService addressAndService
No value
inap.T_addressAndService
inap.agreements agreements
inap.OBJECT_IDENTIFIER
inap.alertingPattern alertingPattern
Byte array
inap.AlertingPattern
inap.allCallSegments allCallSegments
No value
inap.T_allCallSegments
inap.allRequests allRequests
No value
inap.NULL
inap.allRequestsForCallSegment allRequestsForCallSegment
Unsigned 32-bit integer
inap.CallSegmentID
inap.allowCdINNoPresentationInd allowCdINNoPresentationInd
Boolean
inap.BOOLEAN
inap.alternativeATMTrafficDescriptor alternativeATMTrafficDescriptor
Byte array
inap.AlternativeATMTrafficDescriptor
inap.alternativeCalledPartyIds alternativeCalledPartyIds
Unsigned 32-bit integer
inap.AlternativeIdentities
inap.alternativeOriginalCalledPartyIds alternativeOriginalCalledPartyIds
Unsigned 32-bit integer
inap.AlternativeIdentities
inap.alternativeOriginatingPartyIds alternativeOriginatingPartyIds
Unsigned 32-bit integer
inap.AlternativeIdentities
inap.alternativeRedirectingPartyIds alternativeRedirectingPartyIds
Unsigned 32-bit integer
inap.AlternativeIdentities
inap.analysedInfoSpecificInfo analysedInfoSpecificInfo
No value
inap.T_analysedInfoSpecificInfo
inap.applicationTimer applicationTimer
Unsigned 32-bit integer
inap.ApplicationTimer
inap.assistingSSPIPRoutingAddress assistingSSPIPRoutingAddress
Byte array
inap.AssistingSSPIPRoutingAddress
inap.attributes attributes
Byte array
inap.OCTET_STRING_SIZE_b3__minAttributesLength_b3__maxAttributesLength
inap.authoriseRouteFailureCause authoriseRouteFailureCause
Byte array
inap.Cause
inap.authorizeRouteFailure authorizeRouteFailure
No value
inap.T_authorizeRouteFailure
inap.bCSMFailure bCSMFailure
No value
inap.T_bCSMFailure
inap.bISDNParameters bISDNParameters
No value
inap.BISDNParameters
inap.backwardGVNS backwardGVNS
Byte array
inap.BackwardGVNS
inap.backwardServiceInteractionInd backwardServiceInteractionInd
No value
inap.BackwardServiceInteractionInd
inap.basicGapCriteria basicGapCriteria
Unsigned 32-bit integer
inap.BasicGapCriteria
inap.bcsmEventCorrelationID bcsmEventCorrelationID
Byte array
inap.CorrelationID
inap.bcsmEvents bcsmEvents
Unsigned 32-bit integer
inap.SEQUENCE_SIZE_1_numOfBCSMEvents_OF_BCSMEvent
inap.bcsmEvents_item Item
No value
inap.BCSMEvent
inap.bearerCap bearerCap
Byte array
inap.T_bearerCap
inap.bearerCapability bearerCapability
Unsigned 32-bit integer
inap.BearerCapability
inap.both both
No value
inap.T_both
inap.bothwayThroughConnectionInd bothwayThroughConnectionInd
Unsigned 32-bit integer
inap.BothwayThroughConnectionInd
inap.broadbandBearerCap broadbandBearerCap
Byte array
inap.OCTET_STRING_SIZE_minBroadbandBearerCapabilityLength_maxBroadbandBearerCapabilityLength
inap.busyCause busyCause
Byte array
inap.Cause
inap.cCSS cCSS
Boolean
inap.CCSS
inap.cDVTDescriptor cDVTDescriptor
Byte array
inap.CDVTDescriptor
inap.cGEncountered cGEncountered
Unsigned 32-bit integer
inap.CGEncountered
inap.cNInfo cNInfo
Byte array
inap.CNInfo
inap.cSFailure cSFailure
No value
inap.T_cSFailure
inap.callAccepted callAccepted
No value
inap.T_callAccepted
inap.callAttemptElapsedTimeValue callAttemptElapsedTimeValue
Unsigned 32-bit integer
inap.INTEGER_0_255
inap.callCompletionTreatmentIndicator callCompletionTreatmentIndicator
Byte array
inap.OCTET_STRING_SIZE_1
inap.callConnectedElapsedTimeValue callConnectedElapsedTimeValue
Unsigned 32-bit integer
inap.Integer4
inap.callDiversionTreatmentIndicator callDiversionTreatmentIndicator
Byte array
inap.OCTET_STRING_SIZE_1
inap.callOfferingTreatmentIndicator callOfferingTreatmentIndicator
Byte array
inap.OCTET_STRING_SIZE_1
inap.callProcessingOperation callProcessingOperation
Unsigned 32-bit integer
inap.CallProcessingOperation
inap.callReference callReference
Byte array
inap.CallReference
inap.callSegment callSegment
Unsigned 32-bit integer
inap.INTEGER_1_numOfCSs
inap.callSegmentID callSegmentID
Unsigned 32-bit integer
inap.CallSegmentID
inap.callSegmentToCancel callSegmentToCancel
No value
inap.T_callSegmentToCancel
inap.callSegmentToRelease callSegmentToRelease
No value
inap.T_callSegmentToRelease
inap.callSegments callSegments
Unsigned 32-bit integer
inap.T_callSegments
inap.callSegments_item Item
No value
inap.T_callSegments_item
inap.callStopTimeValue callStopTimeValue
Byte array
inap.DateAndTime
inap.callWaitingTreatmentIndicator callWaitingTreatmentIndicator
Byte array
inap.OCTET_STRING_SIZE_1
inap.calledAddressAndService calledAddressAndService
No value
inap.T_calledAddressAndService
inap.calledAddressValue calledAddressValue
Byte array
inap.Digits
inap.calledDirectoryNumber calledDirectoryNumber
Byte array
inap.CalledDirectoryNumber
inap.calledFacilityGroup calledFacilityGroup
Unsigned 32-bit integer
inap.FacilityGroup
inap.calledFacilityGroupMember calledFacilityGroupMember
Signed 32-bit integer
inap.FacilityGroupMember
inap.calledINNumberOverriding calledINNumberOverriding
Boolean
inap.BOOLEAN
inap.calledPartyBusinessGroupID calledPartyBusinessGroupID
Byte array
inap.CalledPartyBusinessGroupID
inap.calledPartyNumber calledPartyNumber
Byte array
inap.CalledPartyNumber
inap.calledPartySubaddress calledPartySubaddress
Byte array
inap.CalledPartySubaddress
inap.calledPartynumber calledPartynumber
Byte array
inap.CalledPartyNumber
inap.callingAddressAndService callingAddressAndService
No value
inap.T_callingAddressAndService
inap.callingAddressValue callingAddressValue
Byte array
inap.Digits
inap.callingFacilityGroup callingFacilityGroup
Unsigned 32-bit integer
inap.FacilityGroup
inap.callingFacilityGroupMember callingFacilityGroupMember
Signed 32-bit integer
inap.FacilityGroupMember
inap.callingGeodeticLocation callingGeodeticLocation
Byte array
inap.CallingGeodeticLocation
inap.callingLineID callingLineID
Byte array
inap.Digits
inap.callingPartyBusinessGroupID callingPartyBusinessGroupID
Byte array
inap.CallingPartyBusinessGroupID
inap.callingPartyNumber callingPartyNumber
Byte array
inap.CallingPartyNumber
inap.callingPartySubaddress callingPartySubaddress
Byte array
inap.CallingPartySubaddress
inap.callingPartysCategory callingPartysCategory
Unsigned 16-bit integer
inap.CallingPartysCategory
inap.cancelDigit cancelDigit
Byte array
inap.OCTET_STRING_SIZE_1_2
inap.carrier carrier
Byte array
inap.Carrier
inap.cause cause
Byte array
inap.Cause
inap.chargeNumber chargeNumber
Byte array
inap.ChargeNumber
inap.collectedDigits collectedDigits
No value
inap.CollectedDigits
inap.collectedInfo collectedInfo
Unsigned 32-bit integer
inap.CollectedInfo
inap.collectedInfoSpecificInfo collectedInfoSpecificInfo
No value
inap.T_collectedInfoSpecificInfo
inap.component component
Unsigned 32-bit integer
inap.Component
inap.componentCorrelationID componentCorrelationID
Signed 32-bit integer
inap.ComponentCorrelationID
inap.componentInfo componentInfo
Byte array
inap.OCTET_STRING_SIZE_1_118
inap.componentType componentType
Unsigned 32-bit integer
inap.ComponentType
inap.componentTypes componentTypes
Unsigned 32-bit integer
inap.SEQUENCE_SIZE_1_3_OF_ComponentType
inap.componentTypes_item Item
Unsigned 32-bit integer
inap.ComponentType
inap.componenttCorrelationID componenttCorrelationID
Signed 32-bit integer
inap.ComponentCorrelationID
inap.compoundCapCriteria compoundCapCriteria
No value
inap.CompoundCriteria
inap.conferenceTreatmentIndicator conferenceTreatmentIndicator
Byte array
inap.OCTET_STRING_SIZE_1
inap.connectTime connectTime
Unsigned 32-bit integer
inap.Integer4
inap.connectedNumberTreatmentInd connectedNumberTreatmentInd
Unsigned 32-bit integer
inap.ConnectedNumberTreatmentInd
inap.connectedParty connectedParty
Unsigned 32-bit integer
inap.T_connectedParty
inap.connectionIdentifier connectionIdentifier
Byte array
inap.ConnectionIdentifier
inap.controlDigits controlDigits
No value
inap.T_controlDigits
inap.controlType controlType
Unsigned 32-bit integer
inap.ControlType
inap.correlationID correlationID
Byte array
inap.CorrelationID
inap.counterID counterID
Unsigned 32-bit integer
inap.CounterID
inap.counterValue counterValue
Unsigned 32-bit integer
inap.Integer4
inap.countersValue countersValue
Unsigned 32-bit integer
inap.CountersValue
inap.createOrRemove createOrRemove
Unsigned 32-bit integer
inap.CreateOrRemoveIndicator
inap.createdCallSegmentAssociation createdCallSegmentAssociation
Unsigned 32-bit integer
inap.CSAID
inap.criticality criticality
Unsigned 32-bit integer
inap.CriticalityType
inap.csID csID
Unsigned 32-bit integer
inap.CallSegmentID
inap.cug_Index cug-Index
String
inap.CUG_Index
inap.cug_Interlock cug-Interlock
Byte array
inap.CUG_Interlock
inap.cug_OutgoingAccess cug-OutgoingAccess
No value
inap.NULL
inap.cumulativeTransitDelay cumulativeTransitDelay
Byte array
inap.CumulativeTransitDelay
inap.cutAndPaste cutAndPaste
Unsigned 32-bit integer
inap.CutAndPaste
inap.dPName dPName
Unsigned 32-bit integer
inap.EventTypeBCSM
inap.date date
Byte array
inap.OCTET_STRING_SIZE_3
inap.defaultFaultHandling defaultFaultHandling
No value
inap.DefaultFaultHandling
inap.derivable derivable
Signed 32-bit integer
inap.InvokeIdType
inap.destinationIndex destinationIndex
Byte array
inap.DestinationIndex
inap.destinationNumberRoutingAddress destinationNumberRoutingAddress
Byte array
inap.CalledPartyNumber
inap.destinationRoutingAddress destinationRoutingAddress
Unsigned 32-bit integer
inap.DestinationRoutingAddress
inap.detachSignallingPath detachSignallingPath
No value
inap.NULL
inap.detectModem detectModem
Boolean
inap.BOOLEAN
inap.dialledDigits dialledDigits
Byte array
inap.CalledPartyNumber
inap.dialledNumber dialledNumber
Byte array
inap.Digits
inap.digitsResponse digitsResponse
Byte array
inap.Digits
inap.disconnectFromIPForbidden disconnectFromIPForbidden
Boolean
inap.BOOLEAN
inap.displayInformation displayInformation
String
inap.DisplayInformation
inap.dpAssignment dpAssignment
Unsigned 32-bit integer
inap.T_dpAssignment
inap.dpCriteria dpCriteria
Unsigned 32-bit integer
inap.EventTypeBCSM
inap.dpName dpName
Unsigned 32-bit integer
inap.EventTypeBCSM
inap.dpSpecificCommonParameters dpSpecificCommonParameters
No value
inap.DpSpecificCommonParameters
inap.dpSpecificCriteria dpSpecificCriteria
Unsigned 32-bit integer
inap.DpSpecificCriteria
inap.duration duration
Signed 32-bit integer
inap.Duration
inap.ectTreatmentIndicator ectTreatmentIndicator
Byte array
inap.OCTET_STRING_SIZE_1
inap.elementaryMessageID elementaryMessageID
Unsigned 32-bit integer
inap.Integer4
inap.elementaryMessageIDs elementaryMessageIDs
Unsigned 32-bit integer
inap.SEQUENCE_SIZE_1_b3__numOfMessageIDs_OF_Integer4
inap.elementaryMessageIDs_item Item
Unsigned 32-bit integer
inap.Integer4
inap.empty empty
No value
inap.NULL
inap.endOfRecordingDigit endOfRecordingDigit
Byte array
inap.OCTET_STRING_SIZE_1_2
inap.endOfReplyDigit endOfReplyDigit
Byte array
inap.OCTET_STRING_SIZE_1_2
inap.endToEndTransitDelay endToEndTransitDelay
Byte array
inap.EndToEndTransitDelay
inap.errorCode errorCode
Unsigned 32-bit integer
inap.INAP_ERROR
inap.errorTreatment errorTreatment
Unsigned 32-bit integer
inap.ErrorTreatment
inap.eventSpecificInformationBCSM eventSpecificInformationBCSM
Unsigned 32-bit integer
inap.EventSpecificInformationBCSM
inap.eventSpecificInformationCharging eventSpecificInformationCharging
Byte array
inap.EventSpecificInformationCharging
inap.eventTypeBCSM eventTypeBCSM
Unsigned 32-bit integer
inap.EventTypeBCSM
inap.eventTypeCharging eventTypeCharging
Byte array
inap.EventTypeCharging
inap.exportSignallingPath exportSignallingPath
No value
inap.NULL
inap.extensions extensions
Unsigned 32-bit integer
inap.Extensions
inap.facilityGroupID facilityGroupID
Unsigned 32-bit integer
inap.FacilityGroup
inap.facilityGroupMemberID facilityGroupMemberID
Signed 32-bit integer
inap.INTEGER
inap.facilitySelectedAndAvailable facilitySelectedAndAvailable
No value
inap.T_facilitySelectedAndAvailable
inap.failureCause failureCause
Byte array
inap.Cause
inap.featureCode featureCode
Byte array
inap.FeatureCode
inap.featureRequestIndicator featureRequestIndicator
Unsigned 32-bit integer
inap.FeatureRequestIndicator
inap.filteredCallTreatment filteredCallTreatment
No value
inap.FilteredCallTreatment
inap.filteringCharacteristics filteringCharacteristics
Unsigned 32-bit integer
inap.FilteringCharacteristics
inap.filteringCriteria filteringCriteria
Unsigned 32-bit integer
inap.FilteringCriteria
inap.filteringTimeOut filteringTimeOut
Unsigned 32-bit integer
inap.FilteringTimeOut
inap.firstDigitTimeOut firstDigitTimeOut
Unsigned 32-bit integer
inap.INTEGER_1_127
inap.forcedRelease forcedRelease
Boolean
inap.BOOLEAN
inap.forwardCallIndicators forwardCallIndicators
Byte array
inap.ForwardCallIndicators
inap.forwardGVNS forwardGVNS
Byte array
inap.ForwardGVNS
inap.forwardServiceInteractionInd forwardServiceInteractionInd
No value
inap.ForwardServiceInteractionInd
inap.forwardingCondition forwardingCondition
Unsigned 32-bit integer
inap.ForwardingCondition
inap.gapAllInTraffic gapAllInTraffic
No value
inap.NULL
inap.gapCriteria gapCriteria
Unsigned 32-bit integer
inap.GapCriteria
inap.gapIndicators gapIndicators
No value
inap.GapIndicators
inap.gapInterval gapInterval
Signed 32-bit integer
inap.Interval
inap.gapOnResource gapOnResource
Unsigned 32-bit integer
inap.GapOnResource
inap.gapOnService gapOnService
No value
inap.GapOnService
inap.gapTreatment gapTreatment
Unsigned 32-bit integer
inap.GapTreatment
inap.generalProblem generalProblem
Signed 32-bit integer
inap.GeneralProblem
inap.genericIdentifier genericIdentifier
Byte array
inap.GenericIdentifier
inap.genericName genericName
Byte array
inap.GenericName
inap.genericNumbers genericNumbers
Unsigned 32-bit integer
inap.GenericNumbers
inap.global global
inap.OBJECT_IDENTIFIER
inap.globalCallReference globalCallReference
Byte array
inap.GlobalCallReference
inap.globalValue globalValue
inap.OBJECT_IDENTIFIER
inap.group group
Unsigned 32-bit integer
inap.FacilityGroup
inap.highLayerCompatibility highLayerCompatibility
Byte array
inap.HighLayerCompatibility
inap.holdTreatmentIndicator holdTreatmentIndicator
Byte array
inap.OCTET_STRING_SIZE_1
inap.holdcause holdcause
Byte array
inap.HoldCause
inap.huntGroup huntGroup
Byte array
inap.OCTET_STRING
inap.iA5Information iA5Information
Boolean
inap.BOOLEAN
inap.iA5Response iA5Response
String
inap.IA5String
inap.iNServiceCompatibilityIndication iNServiceCompatibilityIndication
Unsigned 32-bit integer
inap.INServiceCompatibilityIndication
inap.iNServiceCompatibilityResponse iNServiceCompatibilityResponse
Unsigned 32-bit integer
inap.INServiceCompatibilityResponse
inap.iNServiceControlCode iNServiceControlCode
Byte array
inap.Digits
inap.iNServiceControlCodeHigh iNServiceControlCodeHigh
Byte array
inap.Digits
inap.iNServiceControlCodeLow iNServiceControlCodeLow
Byte array
inap.Digits
inap.iNprofiles iNprofiles
Unsigned 32-bit integer
inap.SEQUENCE_SIZE_1_numOfINProfile_OF_INprofile
inap.iNprofiles_item Item
No value
inap.INprofile
inap.iPAddressAndresource iPAddressAndresource
No value
inap.T_iPAddressAndresource
inap.iPAddressValue iPAddressValue
Byte array
inap.Digits
inap.iPAvailable iPAvailable
Byte array
inap.IPAvailable
inap.iPSSPCapabilities iPSSPCapabilities
Byte array
inap.IPSSPCapabilities
inap.iSDNAccessRelatedInformation iSDNAccessRelatedInformation
Byte array
inap.ISDNAccessRelatedInformation
inap.inbandInfo inbandInfo
No value
inap.InbandInfo
inap.incomingSignallingBufferCopy incomingSignallingBufferCopy
Boolean
inap.BOOLEAN
inap.informationToRecord informationToRecord
No value
inap.InformationToRecord
inap.informationToSend informationToSend
Unsigned 32-bit integer
inap.InformationToSend
inap.initialCallSegment initialCallSegment
Byte array
inap.Cause
inap.integer integer
Unsigned 32-bit integer
inap.Integer4
inap.interDigitTimeOut interDigitTimeOut
Unsigned 32-bit integer
inap.INTEGER_1_127
inap.interruptableAnnInd interruptableAnnInd
Boolean
inap.BOOLEAN
inap.interval interval
Signed 32-bit integer
inap.INTEGER_M1_32000
inap.invoke invoke
No value
inap.Invoke
inap.invokeID invokeID
Signed 32-bit integer
inap.InvokeIdType
inap.invokeIDRej invokeIDRej
Unsigned 32-bit integer
inap.T_invokeIDRej
inap.invokeProblem invokeProblem
Signed 32-bit integer
inap.InvokeProblem
inap.invokeparameter invokeparameter
No value
inap.InvokeParameter
inap.ipAddressAndCallSegment ipAddressAndCallSegment
No value
inap.T_ipAddressAndCallSegment
inap.ipAddressAndLegID ipAddressAndLegID
No value
inap.T_ipAddressAndLegID
inap.ipRelatedInformation ipRelatedInformation
No value
inap.IPRelatedInformation
inap.ipRelationInformation ipRelationInformation
No value
inap.IPRelatedInformation
inap.ipRoutingAddress ipRoutingAddress
Byte array
inap.IPRoutingAddress
inap.lastEventIndicator lastEventIndicator
Boolean
inap.BOOLEAN
inap.legID legID
Unsigned 32-bit integer
inap.LegID
inap.legIDToMove legIDToMove
Unsigned 32-bit integer
inap.LegID
inap.legToBeCreated legToBeCreated
Unsigned 32-bit integer
inap.LegID
inap.legToBeReleased legToBeReleased
Unsigned 32-bit integer
inap.LegID
inap.legToBeSplit legToBeSplit
Unsigned 32-bit integer
inap.LegID
inap.legorCSID legorCSID
Unsigned 32-bit integer
inap.T_legorCSID
inap.legs legs
Unsigned 32-bit integer
inap.T_legs
inap.legs_item Item
No value
inap.T_legs_item
inap.lineID lineID
Byte array
inap.Digits
inap.linkedID linkedID
Signed 32-bit integer
inap.InvokeIdType
inap.local local
Signed 32-bit integer
inap.INTEGER
inap.localValue localValue
Signed 32-bit integer
inap.OperationLocalvalue
inap.locationNumber locationNumber
Byte array
inap.LocationNumber
inap.mailBoxID mailBoxID
Byte array
inap.MailBoxID
inap.maximumNbOfDigits maximumNbOfDigits
Unsigned 32-bit integer
inap.INTEGER_1_127
inap.maximumNumberOfCounters maximumNumberOfCounters
Unsigned 32-bit integer
inap.MaximumNumberOfCounters
inap.media media
Unsigned 32-bit integer
inap.Media
inap.mergeSignallingPaths mergeSignallingPaths
No value
inap.NULL
inap.messageContent messageContent
String
inap.IA5String_SIZE_b3__minMessageContentLength_b3__maxMessageContentLength
inap.messageDeletionTimeOut messageDeletionTimeOut
Unsigned 32-bit integer
inap.INTEGER_1_3600
inap.messageID messageID
Unsigned 32-bit integer
inap.MessageID
inap.messageType messageType
Unsigned 32-bit integer
inap.T_messageType
inap.midCallControlInfo midCallControlInfo
Unsigned 32-bit integer
inap.MidCallControlInfo
inap.midCallInfoType midCallInfoType
No value
inap.MidCallInfoType
inap.midCallReportType midCallReportType
Unsigned 32-bit integer
inap.T_midCallReportType
inap.minAcceptableATMTrafficDescriptor minAcceptableATMTrafficDescriptor
Byte array
inap.MinAcceptableATMTrafficDescriptor
inap.minNumberOfDigits minNumberOfDigits
Unsigned 32-bit integer
inap.NumberOfDigits
inap.minimumNbOfDigits minimumNbOfDigits
Unsigned 32-bit integer
inap.INTEGER_1_127
inap.miscCallInfo miscCallInfo
No value
inap.MiscCallInfo
inap.modemdetected modemdetected
Boolean
inap.BOOLEAN
inap.modifyResultType modifyResultType
Unsigned 32-bit integer
inap.ModifyResultType
inap.monitorDuration monitorDuration
Signed 32-bit integer
inap.Duration
inap.monitorMode monitorMode
Unsigned 32-bit integer
inap.MonitorMode
inap.monitoringCriteria monitoringCriteria
Unsigned 32-bit integer
inap.MonitoringCriteria
inap.monitoringTimeout monitoringTimeout
Unsigned 32-bit integer
inap.MonitoringTimeOut
inap.networkSpecific networkSpecific
Unsigned 32-bit integer
inap.Integer4
inap.newCallSegment newCallSegment
Unsigned 32-bit integer
inap.CallSegmentID
inap.newCallSegmentAssociation newCallSegmentAssociation
Unsigned 32-bit integer
inap.CSAID
inap.newLeg newLeg
Unsigned 32-bit integer
inap.LegID
inap.nocharge nocharge
Boolean
inap.BOOLEAN
inap.nonCUGCall nonCUGCall
No value
inap.NULL
inap.none none
No value
inap.NULL
inap.not_derivable not-derivable
No value
inap.NULL
inap.notificationDuration notificationDuration
Unsigned 32-bit integer
inap.ApplicationTimer
inap.number number
Byte array
inap.Digits
inap.numberOfCalls numberOfCalls
Unsigned 32-bit integer
inap.Integer4
inap.numberOfDigits numberOfDigits
Unsigned 32-bit integer
inap.NumberOfDigits
inap.numberOfDigitsTwo numberOfDigitsTwo
No value
inap.T_numberOfDigitsTwo
inap.numberOfRepetitions numberOfRepetitions
Unsigned 32-bit integer
inap.INTEGER_1_127
inap.numberingPlan numberingPlan
Byte array
inap.NumberingPlan
inap.oAbandon oAbandon
No value
inap.T_oAbandon
inap.oAnswerSpecificInfo oAnswerSpecificInfo
No value
inap.T_oAnswerSpecificInfo
inap.oCalledPartyBusySpecificInfo oCalledPartyBusySpecificInfo
No value
inap.T_oCalledPartyBusySpecificInfo
inap.oDisconnectSpecificInfo oDisconnectSpecificInfo
No value
inap.T_oDisconnectSpecificInfo
inap.oMidCallInfo oMidCallInfo
No value
inap.MidCallInfo
inap.oMidCallSpecificInfo oMidCallSpecificInfo
No value
inap.T_oMidCallSpecificInfo
inap.oModifyRequestSpecificInfo oModifyRequestSpecificInfo
No value
inap.T_oModifyRequestSpecificInfo
inap.oModifyResultSpecificInfo oModifyResultSpecificInfo
No value
inap.T_oModifyResultSpecificInfo
inap.oNoAnswerSpecificInfo oNoAnswerSpecificInfo
No value
inap.T_oNoAnswerSpecificInfo
inap.oReAnswer oReAnswer
No value
inap.T_oReAnswer
inap.oSuspend oSuspend
No value
inap.T_oSuspend
inap.oTermSeizedSpecificInfo oTermSeizedSpecificInfo
No value
inap.T_oTermSeizedSpecificInfo
inap.oneTrigger oneTrigger
Signed 32-bit integer
inap.INTEGER
inap.oneTriggerResult oneTriggerResult
No value
inap.T_oneTriggerResult
inap.opCode opCode
Unsigned 32-bit integer
inap.INAP_OPERATION
inap.operation operation
Signed 32-bit integer
inap.INTEGER_M128_127
inap.origAttemptAuthorized origAttemptAuthorized
No value
inap.T_origAttemptAuthorized
inap.originalCalledPartyID originalCalledPartyID
Byte array
inap.OriginalCalledPartyID
inap.originationAttemptDenied originationAttemptDenied
No value
inap.T_originationAttemptDenied
inap.originationDeniedCause originationDeniedCause
Byte array
inap.Cause
inap.overrideLineRestrictions overrideLineRestrictions
Boolean
inap.BOOLEAN
inap.parameter parameter
No value
inap.ReturnErrorParameter
inap.partyToCharge partyToCharge
Unsigned 32-bit integer
inap.LegID
inap.partyToConnect partyToConnect
Unsigned 32-bit integer
inap.T_partyToConnect
inap.partyToDisconnect partyToDisconnect
Unsigned 32-bit integer
inap.T_partyToDisconnect
inap.preferredLanguage preferredLanguage
String
inap.Language
inap.prefix prefix
Byte array
inap.Digits
inap.price price
Byte array
inap.OCTET_STRING_SIZE_4
inap.privateFacilityID privateFacilityID
Signed 32-bit integer
inap.INTEGER
inap.problem problem
Unsigned 32-bit integer
inap.T_problem
inap.profile profile
Unsigned 32-bit integer
inap.ProfileIdentifier
inap.profileAndDP profileAndDP
No value
inap.TriggerDataIdentifier
inap.qOSParameter qOSParameter
Byte array
inap.QoSParameter
inap.reason reason
Byte array
inap.Reason
inap.receivedStatus receivedStatus
Unsigned 32-bit integer
inap.ReceivedStatus
inap.receivingSideID receivingSideID
Byte array
inap.LegType
inap.recordedMessageID recordedMessageID
Unsigned 32-bit integer
inap.RecordedMessageID
inap.recordedMessageUnits recordedMessageUnits
Unsigned 32-bit integer
inap.INTEGER_1_b3__maxRecordedMessageUnits
inap.redirectReason redirectReason
Byte array
inap.RedirectReason
inap.redirectServiceTreatmentInd redirectServiceTreatmentInd
No value
inap.T_redirectServiceTreatmentInd
inap.redirectingPartyID redirectingPartyID
Byte array
inap.RedirectingPartyID
inap.redirectionInformation redirectionInformation
Byte array
inap.RedirectionInformation
inap.registratorIdentifier registratorIdentifier
Byte array
inap.RegistratorIdentifier
inap.reject reject
No value
inap.Reject
inap.relayedComponent relayedComponent
No value
inap.EMBEDDED_PDV
inap.releaseCause releaseCause
Byte array
inap.Cause
inap.releaseCauseValue releaseCauseValue
Byte array
inap.Cause
inap.releaseIndication releaseIndication
Boolean
inap.BOOLEAN
inap.replayAllowed replayAllowed
Boolean
inap.BOOLEAN
inap.replayDigit replayDigit
Byte array
inap.OCTET_STRING_SIZE_1_2
inap.reportCondition reportCondition
Unsigned 32-bit integer
inap.ReportCondition
inap.requestAnnouncementComplete requestAnnouncementComplete
Boolean
inap.BOOLEAN
inap.requestedInformationList requestedInformationList
Unsigned 32-bit integer
inap.RequestedInformationList
inap.requestedInformationType requestedInformationType
Unsigned 32-bit integer
inap.RequestedInformationType
inap.requestedInformationTypeList requestedInformationTypeList
Unsigned 32-bit integer
inap.RequestedInformationTypeList
inap.requestedInformationValue requestedInformationValue
Unsigned 32-bit integer
inap.RequestedInformationValue
inap.requestedNumberOfDigits requestedNumberOfDigits
Unsigned 32-bit integer
inap.NumberOfDigits
inap.requestedUTSIList requestedUTSIList
Unsigned 32-bit integer
inap.RequestedUTSIList
inap.resourceAddress resourceAddress
Unsigned 32-bit integer
inap.T_resourceAddress
inap.resourceID resourceID
Unsigned 32-bit integer
inap.ResourceID
inap.resourceStatus resourceStatus
Unsigned 32-bit integer
inap.ResourceStatus
inap.responseCondition responseCondition
Unsigned 32-bit integer
inap.ResponseCondition
inap.restartAllowed restartAllowed
Boolean
inap.BOOLEAN
inap.restartRecordingDigit restartRecordingDigit
Byte array
inap.OCTET_STRING_SIZE_1_2
inap.resultretres resultretres
No value
inap.T_resultretres
inap.results results
Unsigned 32-bit integer
inap.TriggerResults
inap.returnError returnError
No value
inap.ReturnError
inap.returnErrorProblem returnErrorProblem
Signed 32-bit integer
inap.ReturnErrorProblem
inap.returnResultLast returnResultLast
No value
inap.ReturnResult
inap.returnResultNotLast returnResultNotLast
No value
inap.ReturnResult
inap.returnResultProblem returnResultProblem
Signed 32-bit integer
inap.ReturnResultProblem
inap.returnparameter returnparameter
No value
inap.ReturnResultParameter
inap.route route
Byte array
inap.Route
inap.routeCounters routeCounters
Unsigned 32-bit integer
inap.RouteCountersValue
inap.routeIndex routeIndex
Byte array
inap.OCTET_STRING
inap.routeList routeList
Unsigned 32-bit integer
inap.RouteList
inap.routeSelectFailureSpecificInfo routeSelectFailureSpecificInfo
No value
inap.T_routeSelectFailureSpecificInfo
inap.routeingNumber routeingNumber
Byte array
inap.RouteingNumber
inap.sCIBillingChargingCharacteristics sCIBillingChargingCharacteristics
Byte array
inap.SCIBillingChargingCharacteristics
inap.sDSSinformation sDSSinformation
Byte array
inap.SDSSinformation
inap.sFBillingChargingCharacteristics sFBillingChargingCharacteristics
Byte array
inap.SFBillingChargingCharacteristics
inap.sRFgapCriteria sRFgapCriteria
Unsigned 32-bit integer
inap.SRFGapCriteria
inap.scfID scfID
Byte array
inap.ScfID
inap.sendingSideID sendingSideID
Byte array
inap.LegType
inap.serviceAddressInformation serviceAddressInformation
No value
inap.ServiceAddressInformation
inap.serviceInteractionIndicators serviceInteractionIndicators
Byte array
inap.ServiceInteractionIndicators
inap.serviceInteractionIndicatorsTwo serviceInteractionIndicatorsTwo
No value
inap.ServiceInteractionIndicatorsTwo
inap.serviceKey serviceKey
Unsigned 32-bit integer
inap.ServiceKey
inap.serviceProfileIdentifier serviceProfileIdentifier
Byte array
inap.ServiceProfileIdentifier
inap.servingAreaID servingAreaID
Byte array
inap.ServingAreaID
inap.severalTriggerResult severalTriggerResult
No value
inap.T_severalTriggerResult
inap.sourceCallSegment sourceCallSegment
Unsigned 32-bit integer
inap.CallSegmentID
inap.sourceLeg sourceLeg
Unsigned 32-bit integer
inap.LegID
inap.startDigit startDigit
Byte array
inap.OCTET_STRING_SIZE_1_2
inap.startTime startTime
Byte array
inap.DateAndTime
inap.stopTime stopTime
Byte array
inap.DateAndTime
inap.subscriberID subscriberID
Byte array
inap.GenericNumber
inap.suppressCallDiversionNotification suppressCallDiversionNotification
Boolean
inap.BOOLEAN
inap.suppressCallTransferNotification suppressCallTransferNotification
Boolean
inap.BOOLEAN
inap.suppressVPNAPP suppressVPNAPP
Boolean
inap.BOOLEAN
inap.suspendTimer suspendTimer
Unsigned 32-bit integer
inap.SuspendTimer
inap.tAbandon tAbandon
No value
inap.T_tAbandon
inap.tAnswerSpecificInfo tAnswerSpecificInfo
No value
inap.T_tAnswerSpecificInfo
inap.tBusySpecificInfo tBusySpecificInfo
No value
inap.T_tBusySpecificInfo
inap.tDPIdentifer tDPIdentifer
Signed 32-bit integer
inap.INTEGER
inap.tDPIdentifier tDPIdentifier
Unsigned 32-bit integer
inap.TDPIdentifier
inap.tDisconnectSpecificInfo tDisconnectSpecificInfo
No value
inap.T_tDisconnectSpecificInfo
inap.tMidCallInfo tMidCallInfo
No value
inap.MidCallInfo
inap.tMidCallSpecificInfo tMidCallSpecificInfo
No value
inap.T_tMidCallSpecificInfo
inap.tModifyRequestSpecificInfo tModifyRequestSpecificInfo
No value
inap.T_tModifyRequestSpecificInfo
inap.tModifyResultSpecificInfo tModifyResultSpecificInfo
No value
inap.T_tModifyResultSpecificInfo
inap.tNoAnswerSpecificInfo tNoAnswerSpecificInfo
No value
inap.T_tNoAnswerSpecificInfo
inap.tReAnswer tReAnswer
No value
inap.T_tReAnswer
inap.tSuspend tSuspend
No value
inap.T_tSuspend
inap.targetCallSegment targetCallSegment
Unsigned 32-bit integer
inap.CallSegmentID
inap.targetCallSegmentAssociation targetCallSegmentAssociation
Unsigned 32-bit integer
inap.CSAID
inap.terminalType terminalType
Unsigned 32-bit integer
inap.TerminalType
inap.terminationAttemptAuthorized terminationAttemptAuthorized
No value
inap.T_terminationAttemptAuthorized
inap.terminationAttemptDenied terminationAttemptDenied
No value
inap.T_terminationAttemptDenied
inap.terminationDeniedCause terminationDeniedCause
Byte array
inap.Cause
inap.text text
No value
inap.T_text
inap.threshold threshold
Unsigned 32-bit integer
inap.Integer4
inap.time time
Byte array
inap.OCTET_STRING_SIZE_2
inap.timeToRecord timeToRecord
Unsigned 32-bit integer
inap.INTEGER_0_b3__maxRecordingTime
inap.timeToRelease timeToRelease
Unsigned 32-bit integer
inap.TimerValue
inap.timerID timerID
Unsigned 32-bit integer
inap.TimerID
inap.timervalue timervalue
Unsigned 32-bit integer
inap.TimerValue
inap.tmr tmr
Byte array
inap.OCTET_STRING_SIZE_1
inap.tone tone
No value
inap.Tone
inap.toneID toneID
Unsigned 32-bit integer
inap.Integer4
inap.travellingClassMark travellingClassMark
Byte array
inap.TravellingClassMark
inap.treatment treatment
Unsigned 32-bit integer
inap.GapTreatment
inap.triggerDPType triggerDPType
Unsigned 32-bit integer
inap.TriggerDPType
inap.triggerData triggerData
No value
inap.TriggerData
inap.triggerDataIdentifier triggerDataIdentifier
Unsigned 32-bit integer
inap.T_triggerDataIdentifier
inap.triggerID triggerID
Unsigned 32-bit integer
inap.EventTypeBCSM
inap.triggerId triggerId
Unsigned 32-bit integer
inap.T_triggerId
inap.triggerPar triggerPar
No value
inap.T_triggerPar
inap.triggerStatus triggerStatus
Unsigned 32-bit integer
inap.TriggerStatus
inap.triggerType triggerType
Unsigned 32-bit integer
inap.TriggerType
inap.triggers triggers
Unsigned 32-bit integer
inap.Triggers
inap.trunkGroupID trunkGroupID
Signed 32-bit integer
inap.INTEGER
inap.type type
Unsigned 32-bit integer
inap.Code
inap.uIScriptId uIScriptId
Unsigned 32-bit integer
inap.Code
inap.uIScriptResult uIScriptResult
No value
inap.T_uIScriptResult
inap.uIScriptSpecificInfo uIScriptSpecificInfo
No value
inap.T_uIScriptSpecificInfo
inap.uSIInformation uSIInformation
Byte array
inap.USIInformation
inap.uSIServiceIndicator uSIServiceIndicator
Unsigned 32-bit integer
inap.USIServiceIndicator
inap.uSImonitorMode uSImonitorMode
Unsigned 32-bit integer
inap.USIMonitorMode
inap.url url
String
inap.IA5String_SIZE_1_512
inap.userDialogueDurationInd userDialogueDurationInd
Boolean
inap.BOOLEAN
inap.vPNIndicator vPNIndicator
Boolean
inap.VPNIndicator
inap.value value
No value
inap.T_value
inap.variableMessage variableMessage
No value
inap.T_variableMessage
inap.variableParts variableParts
Unsigned 32-bit integer
inap.SEQUENCE_SIZE_1_b3__maxVariableParts_OF_VariablePart
inap.variableParts_item Item
Unsigned 32-bit integer
inap.VariablePart
inap.voiceBack voiceBack
Boolean
inap.BOOLEAN
inap.voiceInformation voiceInformation
Boolean
inap.BOOLEAN
ClearSEL.datafield.BytesToRead 'R' (0x52)
Unsigned 8-bit integer
'R' (0x52)
ClearSEL.datafield.ErasureProgress.EraProg Erasure Progress
Unsigned 8-bit integer
Erasure Progress
ClearSEL.datafield.ErasureProgress.Reserved Reserved
Unsigned 8-bit integer
Reserved
ClearSEL.datafield.NextSELRecordID Action for Clear SEL
Unsigned 8-bit integer
Action for Clear SEL
ClearSEL.datafield.OffsetIntoRecord 'L' (0x4C)
Unsigned 8-bit integer
'L' (0x4C)
ClearSEL.datafield.ReservationID Reservation ID
Unsigned 16-bit integer
Reservation ID
ClearSEL.datafield.SELRecordID 'C' (0x43)
Unsigned 8-bit integer
'C' (0x43)
FRUControl.datafield.FRUControlOption FRU Control Option
Unsigned 8-bit integer
FRU Control Option
FRUControl.datafield.FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
FRUControl.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
GetChannelAuthCap.datafield.channelno Channel number
Unsigned 8-bit integer
Channel number
GetChannelAuthCap.datafield.compinfo Compabillity information
Boolean
Compabillity information
GetChannelAuthCap.datafield.max_priv_lev Requested Maximum Privilege Level
Unsigned 8-bit integer
Requested Maximum Privilege Level
GetChannelAuthCap.resp.Auth_Cap_comp_info Compabillity information
Boolean
Compabillity information
GetChannelAuthCap.resp.anonymouslogin_status_b0 Anonymous Login enabled
Boolean
Anonymous Login enabled
GetChannelAuthCap.resp.anonymouslogin_status_b1 Null usernames enabled
Boolean
Null usernames enabled
GetChannelAuthCap.resp.anonymouslogin_status_b2 Non-null usernames enabled
Boolean
Non-null usernames enabled
GetChannelAuthCap.resp.auth_types_b0 None
Boolean
None
GetChannelAuthCap.resp.auth_types_b1 MD2
Boolean
MD2
GetChannelAuthCap.resp.auth_types_b2 MD5
Boolean
MD5
GetChannelAuthCap.resp.auth_types_b4 OEM proprietary (per OEM identified by the IANA OEM ID in the RMCP Ping Response)
Boolean
OEM proprietary (per OEM identified by the IANA OEM ID in the RMCP Ping Response)
GetChannelAuthCap.resp.channelno Channel number
Unsigned 8-bit integer
Channel number
GetChannelAuthCap.resp.ext_cap_b0 Channel supports IPMI v1.5 connections
Boolean
Channel supports IPMI v1.5 connections
GetChannelAuthCap.resp.ext_cap_b1 Channel supports IPMI v2.0 connections
Boolean
Channel supports IPMI v2.0 connections
GetChannelAuthCap.resp.oemaux OEM auxiliary data
Unsigned 8-bit integer
OEM auxiliary data.
GetChannelAuthCap.resp.oemid OEM ID
Unsigned 24-bit integer
OEM ID
GetChannelAuthCap.resp.per_mess_auth_status Per-message Authentication is enabled
Boolean
Per-message Authentication is enabled
GetChannelAuthCap.resp.user_level_auth_status User Level Authentication status
Boolean
User Level Authentication status
GetDeviceID.datafield.AuxiliaryFirmwareRevisionInfomation Auxiliary Firmware Revision Infomation
Unsigned 32-bit integer
Auxiliary Firmware Revision Infomation
GetDeviceID.datafield.Bridge Bridge Device
Unsigned 8-bit integer
Bridge Device
GetDeviceID.datafield.Chassis Chassis Device
Unsigned 8-bit integer
Chassis Device
GetDeviceID.datafield.DeviceAvailable Device Available
Unsigned 8-bit integer
Device Available
GetDeviceID.datafield.DeviceID Device ID
Unsigned 8-bit integer
Device ID field
GetDeviceID.datafield.DeviceRevision Device Revision
Unsigned 8-bit integer
Device Revision binary code
GetDeviceID.datafield.DeviceSDR Device SDR
Unsigned 8-bit integer
Device SDR
GetDeviceID.datafield.FRUInventoryDevice FRU Inventory Device
Unsigned 8-bit integer
FRU Inventory Device
GetDeviceID.datafield.IPMBEventGenerator IPMB Event Generator
Unsigned 8-bit integer
IPMB Event Generator
GetDeviceID.datafield.IPMBEventReceiver IPMB Event Receiver
Unsigned 8-bit integer
IPMB Event Receiver
GetDeviceID.datafield.IPMIRevision IPMI Revision
Unsigned 8-bit integer
IPMI Revision
GetDeviceID.datafield.MajorFirmwareRevision Major Firmware Revision
Unsigned 8-bit integer
Major Firmware Revision
GetDeviceID.datafield.ManufactureID Manufacture ID
Unsigned 24-bit integer
Manufacture ID
GetDeviceID.datafield.MinorFirmwareRevision Minor Firmware Revision
Unsigned 8-bit integer
Minor Firmware Revision
GetDeviceID.datafield.ProductID Product ID
Unsigned 16-bit integer
Product ID
GetDeviceID.datafield.SDRRepositoryDevice SDR Repository Device
Unsigned 8-bit integer
SDR Repository Device
GetDeviceID.datafield.SELDevice SEL Device
Unsigned 8-bit integer
SEL Device
GetDeviceID.datafield.SensorDevice Sensor Device
Unsigned 8-bit integer
Sensor Device
GetDeviceLocatorRecordID.datafield.FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
GetDeviceLocatorRecordID.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
GetDeviceLocatorRecordID.datafield.RecordID Record ID
Unsigned 16-bit integer
Record ID
GetDeviceSDR.datafield.BytesToRead Bytes to read (number)
Unsigned 8-bit integer
Bytes to read
GetDeviceSDR.datafield.OffsetIntoRecord Offset into record
Unsigned 8-bit integer
Offset into record
GetDeviceSDR.datafield.RecordID Record ID of record to Get
Unsigned 16-bit integer
Record ID of record to Get
GetDeviceSDR.datafield.ReservationID Reservation ID
Unsigned 16-bit integer
Reservation ID
GetDeviceSDRInfo.datafield.Flag Flag
Unsigned 8-bit integer
Flag
GetDeviceSDRInfo.datafield.Flag.DeviceLUN3 Device LUN 3
Unsigned 8-bit integer
Device LUN 3
GetDeviceSDRInfo.datafield.Flag.DeviceLUNs0 Device LUN 0
Unsigned 8-bit integer
Device LUN 0
GetDeviceSDRInfo.datafield.Flag.DeviceLUNs1 Device LUN 1
Unsigned 8-bit integer
Device LUN 1
GetDeviceSDRInfo.datafield.Flag.DeviceLUNs2 Device LUN 2
Unsigned 8-bit integer
Device LUN 2
GetDeviceSDRInfo.datafield.Flag.Dynamicpopulation Dynamic population
Unsigned 8-bit integer
Dynamic population
GetDeviceSDRInfo.datafield.Flag.Reserved Reserved
Unsigned 8-bit integer
Reserved
GetDeviceSDRInfo.datafield.PICMGIdentifier Number of the Sensors in device
Unsigned 8-bit integer
Number of the Sensors in device
GetDeviceSDRInfo.datafield.SensorPopulationChangeIndicator SensorPopulation Change Indicator
Unsigned 32-bit integer
Sensor Population Change Indicator
GetFRUActivationPolicy.datafield.FRUActivationPolicy.Bit0 Locked Bit
Unsigned 8-bit integer
Locked Bit
GetFRUActivationPolicy.datafield.FRUActivationPolicy.Bit1 Deactivation-Locked Bit
Unsigned 8-bit integer
Deactivation-Locked Bit
GetFRUActivationPolicy.datafield.FRUActivationPolicy.Bit72 Bit 7...2 Reserverd
Unsigned 8-bit integer
Bit 7...2 Reserverd
GetFRUActivationPolicy.datafield.FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
GetFRUActivationPolicy.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
GetFRUInventoryAreaInfo.datafield.FRUInventoryAreaSize FRU Inventory area size in bytes
Unsigned 16-bit integer
FRU Inventory area size in bytes
GetFRUInventoryAreaInfo.datafield.ReservationID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
GetFRUInventoryAreaInfo.datafield.ResponseDataByte4.Bit0 Device is accessed by bytes or words ?
Unsigned 8-bit integer
Device is accessed by bytes or words ?
GetFRUInventoryAreaInfo.datafield.ResponseDataByte4.Bit71 Reserved
Unsigned 8-bit integer
Reserved
GetFRULedProperties.datafield.ApplicationSpecificLEDCount Application Specific LED Count
Unsigned 8-bit integer
Application Specific LED Count
GetFRULedProperties.datafield.FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
GetFRULedProperties.datafield.LedProperties.BlueLED BlueLED
Unsigned 8-bit integer
BlueLED
GetFRULedProperties.datafield.LedProperties.LED1 LED1
Unsigned 8-bit integer
LED1
GetFRULedProperties.datafield.LedProperties.LED2 LED2
Unsigned 8-bit integer
LED2
GetFRULedProperties.datafield.LedProperties.LED3 LED3
Unsigned 8-bit integer
LED3
GetFRULedProperties.datafield.LedProperties.Reserved Reserved
Unsigned 8-bit integer
Reserved
GetFRULedProperties.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
GetFRULedState.datafield.FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
GetFRULedState.datafield.LEDFunction Bit 7...3 Reserved
Unsigned 8-bit integer
Bit 7...3 Reserved
GetFRULedState.datafield.LEDID LED ID
Unsigned 8-bit integer
LED ID
GetFRULedState.datafield.LEDState.Bit0 IPM Controller has a Local Control State ?
Unsigned 8-bit integer
IPM Controller has a Local Control State ?
GetFRULedState.datafield.LEDState.Bit1 Override State
Unsigned 8-bit integer
Override State
GetFRULedState.datafield.LEDState.Bit2 Lamp Test
Unsigned 8-bit integer
Lamp Test
GetFRULedState.datafield.LampTestDuration Lamp Test Duration
Unsigned 8-bit integer
Lamp Test Duration
GetFRULedState.datafield.LocalControlColor.ColorVal Color
Unsigned 8-bit integer
Color
GetFRULedState.datafield.LocalControlColor.Reserved Bit 7...4 Reserved
Unsigned 8-bit integer
Bit 7...4 Reserved
GetFRULedState.datafield.LocalControlLEDFunction Local Control LED Function
Unsigned 8-bit integer
Local Control LED Function
GetFRULedState.datafield.LocalControlOffduration Local Control Off-duration
Unsigned 8-bit integer
Local Control Off-duration
GetFRULedState.datafield.LocalControlOnduration Local Control On-duration
Unsigned 8-bit integer
Local Control On-duration
GetFRULedState.datafield.OverrideStateColor.ColorVal Color
Unsigned 8-bit integer
Color
GetFRULedState.datafield.OverrideStateColor.Reserved Bit 7...4 Reserved
Unsigned 8-bit integer
Bit 7...4 Reserved
GetFRULedState.datafield.OverrideStateLEDFunction Override State LED Function
Unsigned 8-bit integer
Override State LED Function
GetFRULedState.datafield.OverrideStateOffduration Override State Off-duration
Unsigned 8-bit integer
Override State Off-duration
GetFRULedState.datafield.OverrideStateOnduration Override State On-duration
Unsigned 8-bit integer
Override State On-duration
GetFRULedState.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
GetFanLevel.datafield.FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
GetFanLevel.datafield.LocalControlFanLevel Local Control Fan Level
Unsigned 8-bit integer
Local Control Fan Level
GetFanLevel.datafield.OverrideFanLevel Override Fan Level
Unsigned 8-bit integer
Override Fan Level
GetFanLevel.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
GetLedColorCapabilities.datafield.DefaultLEDColorLocalControl.Color Default LED Color (Local Control State)
Unsigned 8-bit integer
Default LED Color (Local Control State)
GetLedColorCapabilities.datafield.DefaultLEDColorLocalControl.Reserved.bit7-4 Reserved
Unsigned 8-bit integer
Reserved
GetLedColorCapabilities.datafield.DefaultLEDColorOverride.Color Default LED Color (Override State)
Unsigned 8-bit integer
Default LED Color (Override State)
GetLedColorCapabilities.datafield.DefaultLEDColorOverride.Reserved.bit7-4 Reserved
Unsigned 8-bit integer
Reserved
GetLedColorCapabilities.datafield.FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
GetLedColorCapabilities.datafield.LEDColorCapabilities.AMBER LED Support AMBER ?
Unsigned 8-bit integer
LED Support AMBER ?
GetLedColorCapabilities.datafield.LEDColorCapabilities.BLUE LED Support BLUE ?
Unsigned 8-bit integer
LED Support BLUE ?
GetLedColorCapabilities.datafield.LEDColorCapabilities.GREEN LED Support GREEN ?
Unsigned 8-bit integer
LED Support GREEN ?
GetLedColorCapabilities.datafield.LEDColorCapabilities.ORANGE LED Support ORANGE ?
Unsigned 8-bit integer
LED Support ORANGE ?
GetLedColorCapabilities.datafield.LEDColorCapabilities.RED LED Support RED ?
Unsigned 8-bit integer
LED Support RED ?
GetLedColorCapabilities.datafield.LEDColorCapabilities.Reserved.bit0 Reserved
Unsigned 8-bit integer
Reserved
GetLedColorCapabilities.datafield.LEDColorCapabilities.Reserved.bit7 Reserved
Unsigned 8-bit integer
Reserved
GetLedColorCapabilities.datafield.LEDColorCapabilities.WHITE LED Support WHITE ?
Unsigned 8-bit integer
LED Support WHITE ?
GetLedColorCapabilities.datafield.LEDID LED ID
Unsigned 8-bit integer
LED ID
GetLedColorCapabilities.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
GetPICMGProperties.datafield.FRUDeviceIDforIPMController FRU Device ID for IPM Controller
Unsigned 8-bit integer
FRU Device ID for IPM Controller
GetPICMGProperties.datafield.MaxFRUDeviceID Max FRU Device ID
Unsigned 8-bit integer
Max FRU Device ID
GetPICMGProperties.datafield.PICMGExtensionVersion PICMG Extension Version
Unsigned 8-bit integer
PICMG Extension Version
GetPICMGProperties.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
GetPowerLevel.datafield.DelayToStablePower Delay To Stable Power
Unsigned 8-bit integer
Delay To Stable Power
GetPowerLevel.datafield.FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
GetPowerLevel.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
GetPowerLevel.datafield.PowerDraw Power Draw
Unsigned 8-bit integer
Power Draw
GetPowerLevel.datafield.PowerMultiplier Power Multiplier
Unsigned 8-bit integer
Power Multiplier
GetPowerLevel.datafield.PowerType Power Type
Unsigned 8-bit integer
Power Type
GetPowerLevel.datafield.Properties Properties
Unsigned 8-bit integer
Properties
GetPowerLevel.datafield.Properties.DynamicPowerCon Dynamic Power Configuration
Unsigned 8-bit integer
Dynamic Power Configuration
GetPowerLevel.datafield.Properties.PowerLevel Power Level
Unsigned 8-bit integer
Power Level
GetPowerLevel.datafield.Properties.Reserved Reserved
Unsigned 8-bit integer
Reserved
GetSELEntry.datafield.BytesToRead Bytes to read
Unsigned 8-bit integer
Bytes to read
GetSELEntry.datafield.NextSELRecordID Next SEL Record ID
Unsigned 16-bit integer
Next SEL Record ID
GetSELEntry.datafield.OffsetIntoRecord Offset into record
Unsigned 8-bit integer
Offset into record
GetSELEntry.datafield.ReservationID Reservation ID
Unsigned 16-bit integer
Reservation ID
GetSELEntry.datafield.SELRecordID SEL Record ID
Unsigned 16-bit integer
SEL Record ID
GetSELInfo.datafield.AdditionTimestamp Most recent addition timestamp
Unsigned 32-bit integer
Most recent addition timestamp
GetSELInfo.datafield.Entries Number of log entries in SEL
Unsigned 16-bit integer
Number of log entries in SEL
GetSELInfo.datafield.EraseTimestamp Most recent erase timestamp
Unsigned 32-bit integer
Most recent erase timestamp
GetSELInfo.datafield.FreeSpace Free Space in bytes
Unsigned 16-bit integer
Free Space in bytes
GetSELInfo.datafield.OperationSupport.Bit0 Get SEL Allocation Information command supported ?
Unsigned 8-bit integer
Get SEL Allocation Information command supported ?
GetSELInfo.datafield.OperationSupport.Bit1 Reserve SEL command supported ?
Unsigned 8-bit integer
Reserve SEL command supported ?
GetSELInfo.datafield.OperationSupport.Bit2 Partial Add SEL Entry command supported ?
Unsigned 8-bit integer
Partial Add SEL Entry command supported ?
GetSELInfo.datafield.OperationSupport.Bit3 Delete SEL command supported ?
Unsigned 8-bit integer
Delete SEL command supported ?
GetSELInfo.datafield.OperationSupport.Bit7 Overflow Flag
Unsigned 8-bit integer
Overflow Flag
GetSELInfo.datafield.OperationSupport.Reserved Reserved
Unsigned 8-bit integer
Reserved
GetSELInfo.datafield.ReservationID Reservation ID
Unsigned 16-bit integer
Reservation ID
GetSELInfo.datafield.SELVersion SEL Version
Unsigned 8-bit integer
SEL Version
GetSensorHysteresis.datafield.NegativegoingThresholdHysteresisValue Negative-going Threshold Hysteresis Value
Unsigned 8-bit integer
Negative-going Threshold Hysteresis Value
GetSensorHysteresis.datafield.PositivegoingThresholdHysteresisValue Positive-going Threshold Hysteresis Value
Unsigned 8-bit integer
Positive-going Threshold Hysteresis Value
GetSensorHysteresis.datafield.ReservedForHysteresisMask Reserved for future ' Hysteresis Mask ' definition
Unsigned 8-bit integer
Reserved For Hysteresis Mask
GetSensorHysteresis.datafield.SensorNumber Sensor Number
Unsigned 8-bit integer
Sensor Number
GetSensorReading.datafield.ResponseDataByte2.Bit5 Bit 5
Unsigned 8-bit integer
Bit 5
GetSensorReading.datafield.ResponseDataByte2.Bit6 Bit 6
Unsigned 8-bit integer
Bit 6
GetSensorReading.datafield.ResponseDataByte2.Bit7 Bit 7
Unsigned 8-bit integer
Bit 7
GetSensorReading.datafield.ResponseDataByte3.Bit0 Bit 0
Unsigned 8-bit integer
Bit 0
GetSensorReading.datafield.ResponseDataByte3.Bit0_threshold Bit 0
Unsigned 8-bit integer
Bit 0
GetSensorReading.datafield.ResponseDataByte3.Bit1 Bit 1
Unsigned 8-bit integer
Bit 1
GetSensorReading.datafield.ResponseDataByte3.Bit1_threshold Bit 1
Unsigned 8-bit integer
Bit 1
GetSensorReading.datafield.ResponseDataByte3.Bit2 Bit 2
Unsigned 8-bit integer
Bit 2
GetSensorReading.datafield.ResponseDataByte3.Bit2_threshold Bit 2
Unsigned 8-bit integer
Bit 2
GetSensorReading.datafield.ResponseDataByte3.Bit3 Bit 3
Unsigned 8-bit integer
Bit 3
GetSensorReading.datafield.ResponseDataByte3.Bit3_threshold Bit 3
Unsigned 8-bit integer
Bit 3
GetSensorReading.datafield.ResponseDataByte3.Bit4 Bit 4
Unsigned 8-bit integer
Bit 4
GetSensorReading.datafield.ResponseDataByte3.Bit4_threshold Bit 4
Unsigned 8-bit integer
Bit 4
GetSensorReading.datafield.ResponseDataByte3.Bit5 Bit 5
Unsigned 8-bit integer
Bit 5
GetSensorReading.datafield.ResponseDataByte3.Bit5_threshold Bit 5
Unsigned 8-bit integer
Bit 5
GetSensorReading.datafield.ResponseDataByte3.Bit6 Bit 6
Unsigned 8-bit integer
Bit 6
GetSensorReading.datafield.ResponseDataByte3.Bit7 Bit 7
Unsigned 8-bit integer
Bit 7
GetSensorReading.datafield.ResponseDataByte3.Bit76_threshold Bit 7...6 Reserved
Unsigned 8-bit integer
Bit 7...6 Reserved
GetSensorReading.datafield.ResponseDataByte4.Bit0 Bit 0
Unsigned 8-bit integer
Bit 0
GetSensorReading.datafield.ResponseDataByte4.Bit1 Bit 1
Unsigned 8-bit integer
Bit 1
GetSensorReading.datafield.ResponseDataByte4.Bit2 Bit 2
Unsigned 8-bit integer
Bit 2
GetSensorReading.datafield.ResponseDataByte4.Bit4 Bit 4
Unsigned 8-bit integer
Bit 4
GetSensorReading.datafield.ResponseDataByte4.Bit5 Bit 5
Unsigned 8-bit integer
Bit 5
GetSensorReading.datafield.ResponseDataByte4.Bit6 Bit 6
Unsigned 8-bit integer
Bit 6
GetSensorReading.datafield.ResponseDataByte4.Bit7 Bit 7
Unsigned 8-bit integer
Bit 7
GetSensorReading.datafield.SensorNumber Sensor Number
Unsigned 8-bit integer
Sensor Number
GetSensorReading.datafield.Sensorreading Sensor Reading
Unsigned 8-bit integer
Sensor Reading
GetSensorThresholds.datafield.ControlByte.Bit0 lower non-critical threshold
Unsigned 8-bit integer
lower non-critical threshold
GetSensorThresholds.datafield.ControlByte.Bit1 lower critical threshold
Unsigned 8-bit integer
lower critical threshold
GetSensorThresholds.datafield.ControlByte.Bit2 lower non-recoverable threshold
Unsigned 8-bit integer
lower non-recoverable threshold
GetSensorThresholds.datafield.ControlByte.Bit3 upper non-critical threshold
Unsigned 8-bit integer
upper non-critical threshold
GetSensorThresholds.datafield.ControlByte.Bit4 upper critical threshold
Unsigned 8-bit integer
upper critical threshold
GetSensorThresholds.datafield.ControlByte.Bit5 upper non-recoverable threshold
Unsigned 8-bit integer
upper non-recoverable threshold
GetSensorThresholds.datafield.ControlByte.Bit76 Bit 7...6 Reserved
Unsigned 8-bit integer
Bit 7...6 Reserved
GetSensorThresholds.datafield.LowerCriticalThreshold lower critical threshold
Unsigned 8-bit integer
lower critical threshold
GetSensorThresholds.datafield.LowerNonCriticalThreshold lower non-critical threshold
Unsigned 8-bit integer
lower non-critical threshold
GetSensorThresholds.datafield.LowerNonRecoverableThreshold lower non-recoverable threshold
Unsigned 8-bit integer
lower non-recoverable threshold
GetSensorThresholds.datafield.SensorNumber Sensor Number
Unsigned 8-bit integer
Sensor Number
GetSensorThresholds.datafield.UpperCriticalThreshold upper critical threshold
Unsigned 8-bit integer
upper critical threshold
GetSensorThresholds.datafield.UpperNonCriticalThreshold upper non-critical threshold
Unsigned 8-bit integer
upper non-critical threshold
GetSensorThresholds.datafield.UpperNonRecoverableThreshold upper non-recoverable threshold
Unsigned 8-bit integer
upper non-recoverable threshold
PEM.datafield.EvMRev Event Message Revision
Unsigned 8-bit integer
Event Message Revision
PEM.datafield.EventData1_OEM_30 Offset from Event/Reading Type Code
Unsigned 8-bit integer
Offset from Event/Reading Type Code
PEM.datafield.EventData1_OEM_54 [5,4]
Unsigned 8-bit integer
byte 3 in the event data
PEM.datafield.EventData1_OEM_76 [7,6]
Unsigned 8-bit integer
byte 2 in the event data
PEM.datafield.EventData1_discrete_30 Offset from Event/Reading Code for threshold event
Unsigned 8-bit integer
Offset from Event/Reading Code for threshold event
PEM.datafield.EventData1_discrete_54 [5,4]
Unsigned 8-bit integer
byte 3 in the event data
PEM.datafield.EventData1_discrete_76 [7,6]
Unsigned 8-bit integer
byte 2 in the event data
PEM.datafield.EventData1_threshold_30 Offset from Event/Reading Code for threshold event
Unsigned 8-bit integer
Offset from Event/Reading Code for threshold event
PEM.datafield.EventData1_threshold_54 [5,4]
Unsigned 8-bit integer
byte 3 in the event data
PEM.datafield.EventData1_threshold_76 [7,6]
Unsigned 8-bit integer
byte 2 in the event data
PEM.datafield.EventData2_OEM_30 Optional OEM code or offset from Event/Reading Type Code for previous event state(0x0f if unspecified)
Unsigned 8-bit integer
Optional OEM code or offset from Event/Reading Type Code for previous event state(0x0f if unspecified)
PEM.datafield.EventData2_OEM_74 Optional OEM code bits or offset from 'Severity' Event/Reading Type Code(0x0f if unspecified)
Unsigned 8-bit integer
Optional OEM code bits or offset from 'Severity' Event/Reading Type Code(0x0f if unspecified)
PEM.datafield.EventData2_discrete_30 Optional offset from Event/Reading Type Code for previous discrete event state (0x0f if unspecified)
Unsigned 8-bit integer
Optional offset from Event/Reading Type Code for previous discrete event state (0x0f if unspecified)
PEM.datafield.EventData2_discrete_74 Optional offset from 'Severity' Event/Reading Code(0x0f if unspecified)
Unsigned 8-bit integer
Optional offset from 'Severity' Event/Reading Code(0x0f if unspecified)
PEM.datafield.EventData2_threshold reading that triggered event
Unsigned 8-bit integer
reading that triggered event
PEM.datafield.EventData3_discrete Optional OEM code
Unsigned 8-bit integer
Optional OEM code
PEM.datafield.EventData3_threshold threshold value that triggered event
Unsigned 8-bit integer
threshold value that triggered event
PEM.datafield.EventDirAndEventType.EventDir Event Direction
Unsigned 8-bit integer
Event Direction
PEM.datafield.EventType Event Type
Unsigned 8-bit integer
Event Type
PEM.datafield.HotSwapEvent_CurrentState Current State
Unsigned 8-bit integer
Current State
PEM.datafield.HotSwapEvent_EventData2_74 Cause of State Change
Unsigned 8-bit integer
Cause of State Change
PEM.datafield.HotSwapEvent_FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
PEM.datafield.HotSwapEvent_HotSwapEvent_PreviousState Previous State
Unsigned 8-bit integer
Previous State
PEM.datafield.SensorNumber Sensor #
Unsigned 8-bit integer
Sensor Number
PEM.datafield.SensorType Sensor Type
Unsigned 8-bit integer
Sensor Type
ReserveDeviceSDRRepository.datafield.ReservationID Reservation ID
Unsigned 16-bit integer
Reservation ID
SetFRUActivation.datafield.FRUActivationDeactivation FRU Activation/Deactivation
Unsigned 8-bit integer
FRU Activation/Deactivation
SetFRUActivation.datafield.FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
SetFRUActivation.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
SetFRUActivationPolicy.datafield.FRUActivationPolicyMaskBit.Bit0 Bit 0
Unsigned 8-bit integer
Bit 0
SetFRUActivationPolicy.datafield.FRUActivationPolicyMaskBit.Bit1 Bit 1
Unsigned 8-bit integer
Bit 1
SetFRUActivationPolicy.datafield.FRUActivationPolicyMaskBit.Bit72 Bit 7...2 Reserverd
Unsigned 8-bit integer
Bit 7...2 Reserverd
SetFRUActivationPolicy.datafield.FRUActivationPolicySetBit.Bit0 Set or Clear Locked
Unsigned 8-bit integer
Set or Clear Locked
SetFRUActivationPolicy.datafield.FRUActivationPolicySetBit.Bit0_ignored Set or Clear Locked
Unsigned 8-bit integer
Set or Clear Locked
SetFRUActivationPolicy.datafield.FRUActivationPolicySetBit.Bit1 Set or Clear Deactivation-Locked
Unsigned 8-bit integer
Set or Clear Deactivation-Locked
SetFRUActivationPolicy.datafield.FRUActivationPolicySetBit.Bit1_ignored Set or Clear Deactivation-Locked
Unsigned 8-bit integer
Set or Clear Deactivation-Locked
SetFRUActivationPolicy.datafield.FRUActivationPolicySetBit.Bit72 Bit 7...2 Reserverd
Unsigned 8-bit integer
Bit 7...2 Reserverd
SetFRUActivationPolicy.datafield.FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
SetFRUActivationPolicy.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
SetFRULedState.datafield.Color.ColorVal Color
Unsigned 8-bit integer
Color
SetFRULedState.datafield.Color.Reserved Bit 7...4 Reserved
Unsigned 8-bit integer
Bit 7...4 Reserved
SetFRULedState.datafield.FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
SetFRULedState.datafield.LEDFunction LED Function
Unsigned 8-bit integer
LED Function
SetFRULedState.datafield.LEDID LED ID
Unsigned 8-bit integer
LED ID
SetFRULedState.datafield.Offduration Off-duration
Unsigned 8-bit integer
Off-duration
SetFRULedState.datafield.Onduration On-duration
Unsigned 8-bit integer
On-duration
SetFRULedState.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
SetFanLevel.datafield.FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
SetFanLevel.datafield.FanLevel Fan Level
Unsigned 8-bit integer
Fan Level
SetFanLevel.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
SetPowerLevel.datafield.FRUDeviceID FRU Device ID
Unsigned 8-bit integer
FRU Device ID
SetPowerLevel.datafield.PICMGIdentifier PICMG Identifier
Unsigned 8-bit integer
PICMG Identifier
SetPowerLevel.datafield.PowerLevel Power Level
Unsigned 8-bit integer
Power Level
SetPowerLevel.datafield.SetPresentLevelsToDesiredLevels Set Present Levels to Desired Levels
Unsigned 8-bit integer
Set Present Levels to Desired Levels
SetSensorHysteresis.datafield.NegativegoingThresholdHysteresisValue Negative-going Threshold Hysteresis Value
Unsigned 8-bit integer
Negative-going Threshold Hysteresis Value
SetSensorHysteresis.datafield.PositivegoingThresholdHysteresisValue Positive-going Threshold Hysteresis Value
Unsigned 8-bit integer
Positive-going Threshold Hysteresis Value
SetSensorHysteresis.datafield.ReservedForHysteresisMask Reserved for future ' Hysteresis Mask ' definition
Unsigned 8-bit integer
Reserved For Hysteresis Mask
SetSensorHysteresis.datafield.SensorNumber Sensor Number
Unsigned 8-bit integer
Sensor Number
SetSensorThresholds.datafield.ControlByte.Bit0 lower non-critical threshold
Unsigned 8-bit integer
lower non-critical threshold
SetSensorThresholds.datafield.ControlByte.Bit1 lower critical threshold
Unsigned 8-bit integer
lower critical threshold
SetSensorThresholds.datafield.ControlByte.Bit2 lower non-recoverable threshold
Unsigned 8-bit integer
lower non-recoverable threshold
SetSensorThresholds.datafield.ControlByte.Bit3 upper non-critical threshold
Unsigned 8-bit integer
upper non-critical threshold
SetSensorThresholds.datafield.ControlByte.Bit4 upper critical threshold
Unsigned 8-bit integer
upper critical threshold
SetSensorThresholds.datafield.ControlByte.Bit5 upper non-recoverable threshold
Unsigned 8-bit integer
upper non-recoverable threshold
SetSensorThresholds.datafield.ControlByte.Bit76 Bit 7...6 Reserved
Unsigned 8-bit integer
Bit 7...6 Reserved
SetSensorThresholds.datafield.LowerCriticalThreshold lower critical threshold
Unsigned 8-bit integer
lower critical threshold
SetSensorThresholds.datafield.LowerNonCriticalThreshold lower non-critical threshold
Unsigned 8-bit integer
lower non-critical threshold
SetSensorThresholds.datafield.LowerNonRecoverableThreshold lower non-recoverable threshold
Unsigned 8-bit integer
lower non-recoverable threshold
SetSensorThresholds.datafield.SensorNumber Sensor Number
Unsigned 8-bit integer
Sensor Number
SetSensorThresholds.datafield.UpperCriticalThreshold upper critical threshold
Unsigned 8-bit integer
upper critical threshold
SetSensorThresholds.datafield.UpperNonCriticalThreshold upper non-critical threshold
Unsigned 8-bit integer
upper non-critical threshold
SetSensorThresholds.datafield.UpperNonRecoverableThreshold upper non-recoverable threshold
Unsigned 8-bit integer
upper non-recoverable threshold
ipmi.msg.ccode Completion Code
Unsigned 8-bit integer
Completion Code for Request
ipmi.msg.cmd Command
Unsigned 8-bit integer
IPMI Command Byte
ipmi.msg.confhdr Confidentiality Header
Unsigned 8-bit integer
IPMI Confidentiality Header
ipmi.msg.csum1 Checksum 1
Unsigned 8-bit integer
2s Complement Checksum
ipmi.msg.csum2 Checksum 2
Unsigned 8-bit integer
2s Complement Checksum
ipmi.msg.len Message Length
Unsigned 8-bit integer
IPMI Message Length
ipmi.msg.nlfield NetFn/LUN
Unsigned 8-bit integer
Network Function and LUN field
ipmi.msg.nlfield.netfn NetFn
Unsigned 8-bit integer
Network Function Code
ipmi.msg.nlfield.rqlun Request LUN
Unsigned 8-bit integer
Requester's Logical Unit Number
ipmi.msg.rqaddr Request Address
Unsigned 8-bit integer
Requester's Address (SA or SWID)
ipmi.msg.rsaddr Response Address
Unsigned 8-bit integer
Responder's Slave Address
ipmi.msg.slfield Seq/LUN
Unsigned 8-bit integer
Sequence and LUN field
ipmi.msg.slfield.rslun Response LUN
Unsigned 8-bit integer
Responder's Logical Unit Number
ipmi.msg.slfield.seq Sequence
Unsigned 8-bit integer
Sequence Number (requester)
ipmi.session.authcode Authentication Code
Byte array
IPMI Message Authentication Code
ipmi.session.authtype Authentication Type
Unsigned 8-bit integer
IPMI Authentication Type
ipmi.session.id Session ID
Unsigned 32-bit integer
IPMI Session ID
ipmi.session.oem.iana OEM IANA
Byte array
IPMI OEM IANA
ipmi.session.oem.payloadid OEM Payload ID
Byte array
IPMI OEM Payload ID
ipmi.session.payloadtype Payload Type
Unsigned 8-bit integer
IPMI Payload Type
ipmi.session.payloadtype.auth Authenticated
Boolean
IPMI Payload Type authenticated
ipmi.session.payloadtype.enc Encryption
Boolean
IPMI Payload Type encryption
ipmi.session.sequence Session Sequence Number
Unsigned 32-bit integer
IPMI Session Sequence Number
iapp.type type
Unsigned 8-bit integer
iapp.version Version
Unsigned 8-bit integer
iax2.abstime Absolute Time
Date/Time stamp
The absoulte time of this packet (calculated by adding the IAX timestamp to the start time of this call)
iax2.call Call identifier
Unsigned 32-bit integer
This is the identifier Wireshark assigns to identify this call. It does not correspond to any real field in the protocol
iax2.cap.adpcm ADPCM
Boolean
ADPCM
iax2.cap.alaw Raw A-law data (G.711)
Boolean
Raw A-law data (G.711)
iax2.cap.g723_1 G.723.1 compression
Boolean
G.723.1 compression
iax2.cap.g726 G.726 compression
Boolean
G.726 compression
iax2.cap.g729a G.729a Audio
Boolean
G.729a Audio
iax2.cap.gsm GSM compression
Boolean
GSM compression
iax2.cap.h261 H.261 video
Boolean
H.261 video
iax2.cap.h263 H.263 video
Boolean
H.263 video
iax2.cap.ilbc iLBC Free compressed Audio
Boolean
iLBC Free compressed Audio
iax2.cap.jpeg JPEG images
Boolean
JPEG images
iax2.cap.lpc10 LPC10, 180 samples/frame
Boolean
LPC10, 180 samples/frame
iax2.cap.png PNG images
Boolean
PNG images
iax2.cap.slinear Raw 16-bit Signed Linear (8000 Hz) PCM
Boolean
Raw 16-bit Signed Linear (8000 Hz) PCM
iax2.cap.speex SPEEX Audio
Boolean
SPEEX Audio
iax2.cap.ulaw Raw mu-law data (G.711)
Boolean
Raw mu-law data (G.711)
iax2.control.subclass Control subclass
Unsigned 8-bit integer
This gives the command number for a Control packet.
iax2.dst_call Destination call
Unsigned 16-bit integer
dst_call holds the number of this call at the packet destination
iax2.dtmf.subclass DTMF subclass (digit)
String
DTMF subclass gives the DTMF digit
iax2.fragment IAX2 Fragment data
Frame number
IAX2 Fragment data
iax2.fragment.error Defragmentation error
Frame number
Defragmentation error due to illegal fragments
iax2.fragment.multipletails Multiple tail fragments found
Boolean
Several tails were found when defragmenting the packet
iax2.fragment.overlap Fragment overlap
Boolean
Fragment overlaps with other fragments
iax2.fragment.overlap.conflict Conflicting data in fragment overlap
Boolean
Overlapping fragments contained conflicting data
iax2.fragment.toolongfragment Fragment too long
Boolean
Fragment contained data past end of packet
iax2.fragments IAX2 Fragments
No value
IAX2 Fragments
iax2.iax.aesprovisioning AES Provisioning info
String
iax2.iax.app_addr.sinaddr Address
IPv4 address
Address
iax2.iax.app_addr.sinfamily Family
Unsigned 16-bit integer
Family
iax2.iax.app_addr.sinport Port
Unsigned 16-bit integer
Port
iax2.iax.auth.challenge Challenge data for MD5/RSA
String
iax2.iax.auth.md5 MD5 challenge result
String
iax2.iax.auth.methods Authentication method(s)
Unsigned 16-bit integer
iax2.iax.auth.rsa RSA challenge result
String
iax2.iax.autoanswer Request auto-answering
No value
iax2.iax.call_no Call number of peer
Unsigned 16-bit integer
iax2.iax.called_context Context for number
String
iax2.iax.called_number Number/extension being called
String
iax2.iax.calling_ani Calling number ANI for billing
String
iax2.iax.calling_name Name of caller
String
iax2.iax.calling_number Calling number
String
iax2.iax.callingpres Calling presentation
Unsigned 8-bit integer
iax2.iax.callingtns Calling transit network select
Unsigned 16-bit integer
iax2.iax.callington Calling type of number
Unsigned 8-bit integer
iax2.iax.capability Actual codec capability
Unsigned 32-bit integer
iax2.iax.cause Cause
String
iax2.iax.causecode Hangup cause
Unsigned 8-bit integer
iax2.iax.codecprefs Codec negotiation
String
iax2.iax.cpe_adsi CPE ADSI capability
Unsigned 16-bit integer
iax2.iax.dataformat Data call format
Unsigned 32-bit integer
iax2.iax.datetime Date/Time
Date/Time stamp
iax2.iax.datetime.raw Date/Time
Unsigned 32-bit integer
iax2.iax.devicetype Device type
String
iax2.iax.dialplan_status Dialplan status
Unsigned 16-bit integer
iax2.iax.dnid Originally dialed DNID
String
iax2.iax.enckey Encryption key
String
iax2.iax.encryption Encryption format
Unsigned 16-bit integer
iax2.iax.firmwarever Firmware version
Unsigned 16-bit integer
iax2.iax.format Desired codec format
Unsigned 32-bit integer
iax2.iax.fwblockdata Firmware block of data
String
iax2.iax.fwblockdesc Firmware block description
Unsigned 32-bit integer
iax2.iax.iax_unknown Unknown IAX command
Byte array
iax2.iax.language Desired language
String
iax2.iax.moh Request musiconhold with QUELCH
No value
iax2.iax.msg_count How many messages waiting
Signed 16-bit integer
iax2.iax.password Password for authentication
String
iax2.iax.provisioning Provisioning info
String
iax2.iax.provver Provisioning version
Unsigned 32-bit integer
iax2.iax.rdnis Referring DNIS
String
iax2.iax.refresh When to refresh registration
Signed 16-bit integer
iax2.iax.rrdelay Max playout delay in ms for received frames
Unsigned 16-bit integer
iax2.iax.rrdropped Dropped frames (presumably by jitterbuffer)
Unsigned 32-bit integer
iax2.iax.rrjitter Received jitter (as in RFC1889)
Unsigned 32-bit integer
iax2.iax.rrloss Received loss (high byte loss pct, low 24 bits loss count, as in rfc1889)
Unsigned 32-bit integer
iax2.iax.rrooo Frame received out of order
Unsigned 32-bit integer
iax2.iax.rrpkts Total frames received
Unsigned 32-bit integer
iax2.iax.samplingrate Supported sampling rates
Unsigned 16-bit integer
iax2.iax.serviceident Service identifier
String
iax2.iax.subclass IAX subclass
Unsigned 8-bit integer
IAX subclass gives the command number for IAX signalling packets
iax2.iax.transferid Transfer Request Identifier
Unsigned 32-bit integer
iax2.iax.unknownbyte Unknown
Unsigned 8-bit integer
Raw data for unknown IEs
iax2.iax.unknownlong Unknown
Unsigned 32-bit integer
Raw data for unknown IEs
iax2.iax.unknownshort Unknown
Unsigned 16-bit integer
Raw data for unknown IEs
iax2.iax.unknownstring Unknown
String
Raw data for unknown IEs
iax2.iax.username Username (peer or user) for authentication
String
iax2.iax.version Protocol version
Unsigned 16-bit integer
iax2.iseqno Inbound seq.no.
Unsigned 16-bit integer
iseqno is the sequence no of the last successfully received packet
iax2.lateness Lateness
Time duration
The lateness of this packet compared to its timestamp
iax2.modem.subclass Modem subclass
Unsigned 8-bit integer
Modem subclass gives the type of modem
iax2.oseqno Outbound seq.no.
Unsigned 16-bit integer
oseqno is the sequence no of this packet. The first packet has oseqno==0, and subsequent packets increment the oseqno by 1
iax2.packet_type Packet type
Unsigned 8-bit integer
Full/minivoice/minivideo/meta packet
iax2.reassembled_in IAX2 fragment, reassembled in frame
Frame number
This IAX2 packet is reassembled in this frame
iax2.retransmission Retransmission
Boolean
retransmission is set if this packet is a retransmission of an earlier failed packet
iax2.src_call Source call
Unsigned 16-bit integer
src_call holds the number of this call at the packet source pbx
iax2.subclass Unknown subclass
Unsigned 8-bit integer
Subclass of unknown type of full IAX2 frame
iax2.timestamp Timestamp
Unsigned 32-bit integer
timestamp is the time, in ms after the start of this call, at which this packet was transmitted
iax2.type Type
Unsigned 8-bit integer
For full IAX2 frames, type is the type of frame
iax2.video.codec CODEC
Unsigned 32-bit integer
The codec used to encode video data
iax2.video.marker Marker
Unsigned 16-bit integer
RTP end-of-frame marker
iax2.video.subclass Video Subclass (compressed codec no)
Unsigned 8-bit integer
Video Subclass (compressed codec no)
iax2.voice.codec CODEC
Unsigned 32-bit integer
CODEC gives the codec used to encode audio data
iax2.voice.subclass Voice Subclass (compressed codec no)
Unsigned 8-bit integer
Voice Subclass (compressed codec no)
ismp.authdata Auth Data
Byte array
ismp.codelen Auth Code Length
Unsigned 8-bit integer
ismp.edp.chassisip Chassis IP Address
IPv4 address
ismp.edp.chassismac Chassis MAC Address
6-byte Hardware (MAC) Address
ismp.edp.devtype Device Type
Unsigned 16-bit integer
ismp.edp.maccount Number of Known Neighbors
Unsigned 16-bit integer
ismp.edp.modip Module IP Address
IPv4 address
ismp.edp.modmac Module MAC Address
6-byte Hardware (MAC) Address
ismp.edp.modport Module Port (ifIndex num)
Unsigned 32-bit integer
ismp.edp.nbrs Neighbors
Byte array
ismp.edp.numtups Number of Tuples
Unsigned 16-bit integer
ismp.edp.opts Device Options
Unsigned 32-bit integer
ismp.edp.rev Module Firmware Revision
Unsigned 32-bit integer
ismp.edp.tups Number of Tuples
Byte array
ismp.edp.version Version
Unsigned 16-bit integer
ismp.msgtype Message Type
Unsigned 16-bit integer
ismp.seqnum Sequence Number
Unsigned 16-bit integer
ismp.version Version
Unsigned 16-bit integer
icp.length Length
Unsigned 16-bit integer
icp.nr Request Number
Unsigned 32-bit integer
icp.opcode Opcode
Unsigned 8-bit integer
icp.version Version
Unsigned 8-bit integer
icep.compression_status Compression Status
Signed 8-bit integer
The compression status of the message
icep.context Invocation Context
String
The invocation context
icep.encoding_major Encoding Major
Signed 8-bit integer
The encoding major version number
icep.encoding_minor Encoding Minor
Signed 8-bit integer
The encoding minor version number
icep.facet Facet Name
String
The facet name
icep.id.content Object Identity Content
String
The object identity content
icep.id.name Object Identity Name
String
The object identity name
icep.message_status Message Size
Signed 32-bit integer
The size of the message in bytes, including the header
icep.message_type Message Type
Signed 8-bit integer
The message type
icep.operation Operation Name
String
The operation name
icep.operation_mode Ice::OperationMode
Signed 8-bit integer
A byte representing Ice::OperationMode
icep.params.major Input Parameters Encoding Major
Signed 8-bit integer
The major encoding version of encapsulated parameters
icep.params.minor Input Parameters Encoding Minor
Signed 8-bit integer
The minor encoding version of encapsulated parameters
icep.params.size Input Parameters Size
Signed 32-bit integer
The encapsulated input parameters size
icep.protocol_major Protocol Major
Signed 8-bit integer
The protocol major version number
icep.protocol_minor Protocol Minor
Signed 8-bit integer
The protocol minor version number
icep.request_id Request Identifier
Signed 32-bit integer
The request identifier
icap.options Options
Boolean
TRUE if ICAP options
icap.other Other
Boolean
TRUE if ICAP other
icap.reqmod Reqmod
Boolean
TRUE if ICAP reqmod
icap.respmod Respmod
Boolean
TRUE if ICAP respmod
icap.response Response
Boolean
TRUE if ICAP response
icmp.checksum Checksum
Unsigned 16-bit integer
icmp.checksum_bad Bad Checksum
Boolean
icmp.code Code
Unsigned 8-bit integer
icmp.ident Identifier
Unsigned 16-bit integer
icmp.mip.b Busy
Boolean
This FA will not accept requests at this time
icmp.mip.challenge Challenge
Byte array
icmp.mip.coa Care-Of-Address
IPv4 address
icmp.mip.f Foreign Agent
Boolean
Foreign Agent Services Offered
icmp.mip.flags Flags
Unsigned 16-bit integer
icmp.mip.g GRE
Boolean
GRE encapsulated tunneled datagram support
icmp.mip.h Home Agent
Boolean
Home Agent Services Offered
icmp.mip.length Length
Unsigned 8-bit integer
icmp.mip.life Registration Lifetime
Unsigned 16-bit integer
icmp.mip.m Minimal Encapsulation
Boolean
Minimal encapsulation tunneled datagram support
icmp.mip.prefixlength Prefix Length
Unsigned 8-bit integer
icmp.mip.r Registration Required
Boolean
Registration with this FA is required
icmp.mip.reserved Reserved
Unsigned 16-bit integer
icmp.mip.rt Reverse tunneling
Boolean
Reverse tunneling support
icmp.mip.seq Sequence Number
Unsigned 16-bit integer
icmp.mip.type Extension Type
Unsigned 8-bit integer
icmp.mip.u UDP tunneling
Boolean
UDP tunneling support
icmp.mip.v VJ Comp
Boolean
Van Jacobson Header Compression Support
icmp.mip.x Revocation support
Boolean
Registration revocation support
icmp.mpls ICMP Extensions for MPLS
No value
icmp.mpls.checksum Checksum
Unsigned 16-bit integer
icmp.mpls.checksum_bad Bad Checksum
Boolean
icmp.mpls.class Class
Unsigned 8-bit integer
icmp.mpls.ctype C-Type
Unsigned 8-bit integer
icmp.mpls.exp Experimental
Unsigned 24-bit integer
icmp.mpls.label Label
Unsigned 24-bit integer
icmp.mpls.length Length
Unsigned 16-bit integer
icmp.mpls.res Reserved
Unsigned 16-bit integer
icmp.mpls.s Stack bit
Boolean
icmp.mpls.ttl Time to live
Unsigned 8-bit integer
icmp.mpls.version Version
Unsigned 8-bit integer
icmp.mtu MTU of next hop
Unsigned 16-bit integer
icmp.redir_gw Gateway address
IPv4 address
icmp.seq Sequence number
Unsigned 16-bit integer
icmp.type Type
Unsigned 8-bit integer
icmpv6.all_comp All Components
Unsigned 16-bit integer
All Components
icmpv6.checksum Checksum
Unsigned 16-bit integer
icmpv6.checksum_bad Bad Checksum
Boolean
icmpv6.code Code
Unsigned 8-bit integer
icmpv6.comp Component
Unsigned 16-bit integer
Component
icmpv6.haad.ha_addrs Home Agent Addresses
IPv6 address
icmpv6.identifier Identifier
Unsigned 16-bit integer
Identifier
icmpv6.option ICMPv6 Option
No value
Option
icmpv6.option.cga CGA
Byte array
CGA
icmpv6.option.cga.pad_length Pad Length
Unsigned 8-bit integer
Pad Length (in bytes)
icmpv6.option.length Length
Unsigned 8-bit integer
Options length (in bytes)
icmpv6.option.name_type Name Type
Unsigned 8-bit integer
Name Type
icmpv6.option.name_type.fqdn FQDN
String
FQDN
icmpv6.option.name_x501 DER Encoded X.501 Name
Byte array
DER Encoded X.501 Name
icmpv6.option.rsa.key_hash Key Hash
Byte array
Key Hash
icmpv6.option.type Type
Unsigned 8-bit integer
Options type
icmpv6.ra.cur_hop_limit Cur hop limit
Unsigned 8-bit integer
Current hop limit
icmpv6.ra.reachable_time Reachable time
Unsigned 32-bit integer
Reachable time (ms)
icmpv6.ra.retrans_timer Retrans timer
Unsigned 32-bit integer
Retrans timer (ms)
icmpv6.ra.router_lifetime Router lifetime
Unsigned 16-bit integer
Router lifetime (s)
icmpv6.recursive_dns_serv Recursive DNS Servers
IPv6 address
Recursive DNS Servers
icmpv6.type Type
Unsigned 8-bit integer
icmpv6.x509_Name Name
Unsigned 32-bit integer
Name
icmpv6_x509_Certificate Certificate
No value
Certificate
igmp.access_key Access Key
Byte array
IGMP V0 Access Key
igmp.aux_data Aux Data
Byte array
IGMP V3 Auxiliary Data
igmp.aux_data_len Aux Data Len
Unsigned 8-bit integer
Aux Data Len, In units of 32bit words
igmp.checksum Checksum
Unsigned 16-bit integer
IGMP Checksum
igmp.checksum_bad Bad Checksum
Boolean
Bad IGMP Checksum
igmp.group_type Type Of Group
Unsigned 8-bit integer
IGMP V0 Type Of Group
igmp.identifier Identifier
Unsigned 32-bit integer
IGMP V0 Identifier
igmp.maddr Multicast Address
IPv4 address
Multicast Address
igmp.max_resp Max Resp Time
Unsigned 8-bit integer
Max Response Time
igmp.max_resp.exp Exponent
Unsigned 8-bit integer
Maxmimum Response Time, Exponent
igmp.max_resp.mant Mantissa
Unsigned 8-bit integer
Maxmimum Response Time, Mantissa
igmp.mtrace.max_hops # hops
Unsigned 8-bit integer
Maxmimum Number of Hops to Trace
igmp.mtrace.q_arrival Query Arrival
Unsigned 32-bit integer
Query Arrival Time
igmp.mtrace.q_fwd_code Forwarding Code
Unsigned 8-bit integer
Forwarding information/error code
igmp.mtrace.q_fwd_ttl FwdTTL
Unsigned 8-bit integer
TTL required for forwarding
igmp.mtrace.q_id Query ID
Unsigned 24-bit integer
Identifier for this Traceroute Request
igmp.mtrace.q_inaddr In itf addr
IPv4 address
Incoming Interface Address
igmp.mtrace.q_inpkt In pkts
Unsigned 32-bit integer
Input packet count on incoming interface
igmp.mtrace.q_mbz MBZ
Unsigned 8-bit integer
Must be zeroed on transmission and ignored on reception
igmp.mtrace.q_outaddr Out itf addr
IPv4 address
Outgoing Interface Address
igmp.mtrace.q_outpkt Out pkts
Unsigned 32-bit integer
Output packet count on outgoing interface
igmp.mtrace.q_prevrtr Previous rtr addr
IPv4 address
Previous-Hop Router Address
igmp.mtrace.q_rtg_proto Rtg Protocol
Unsigned 8-bit integer
Routing protocol between this and previous hop rtr
igmp.mtrace.q_s S
Unsigned 8-bit integer
Set if S,G packet count is for source network
igmp.mtrace.q_src_mask Src Mask
Unsigned 8-bit integer
Source mask length. 63 when forwarding on group state
igmp.mtrace.q_total S,G pkt count
Unsigned 32-bit integer
Total number of packets for this source-group pair
igmp.mtrace.raddr Receiver Address
IPv4 address
Multicast Receiver for the Path Being Traced
igmp.mtrace.resp_ttl Response TTL
Unsigned 8-bit integer
TTL for Multicasted Responses
igmp.mtrace.rspaddr Response Address
IPv4 address
Destination of Completed Traceroute Response
igmp.mtrace.saddr Source Address
IPv4 address
Multicast Source for the Path Being Traced
igmp.num_grp_recs Num Group Records
Unsigned 16-bit integer
Number Of Group Records
igmp.num_src Num Src
Unsigned 16-bit integer
Number Of Sources
igmp.qqic QQIC
Unsigned 8-bit integer
Querier's Query Interval Code
igmp.qrv QRV
Unsigned 8-bit integer
Querier's Robustness Value
igmp.record_type Record Type
Unsigned 8-bit integer
Record Type
igmp.reply Reply
Unsigned 8-bit integer
IGMP V0 Reply
igmp.reply.pending Reply Pending
Unsigned 8-bit integer
IGMP V0 Reply Pending, Retry in this many seconds
igmp.s S
Boolean
Suppress Router Side Processing
igmp.saddr Source Address
IPv4 address
Source Address
igmp.type Type
Unsigned 8-bit integer
IGMP Packet Type
igmp.version IGMP Version
Unsigned 8-bit integer
IGMP Version
igap.account User Account
String
User account
igap.asize Account Size
Unsigned 8-bit integer
Length of the User Account field
igap.challengeid Challenge ID
Unsigned 8-bit integer
Challenge ID
igap.checksum Checksum
Unsigned 16-bit integer
Checksum
igap.checksum_bad Bad Checksum
Boolean
Bad Checksum
igap.maddr Multicast group address
IPv4 address
Multicast group address
igap.max_resp Max Resp Time
Unsigned 8-bit integer
Max Response Time
igap.msize Message Size
Unsigned 8-bit integer
Length of the Message field
igap.subtype Subtype
Unsigned 8-bit integer
Subtype
igap.type Type
Unsigned 8-bit integer
IGAP Packet Type
igap.version Version
Unsigned 8-bit integer
IGAP protocol version
imap.request Request
Boolean
TRUE if IMAP request
imap.response Response
Boolean
TRUE if IMAP response
imf.address Address
String
imf.address_list Address List
Unsigned 32-bit integer
imf.address_list.item Item
String
imf.autoforwarded Autoforwarded
String
imf.autosubmitted Autosubmitted
String
imf.bcc Bcc
String
imf.cc Cc
String
imf.comments Comments
String
imf.content.description Content-Description
String
imf.content.id Content-ID
String
imf.content.transfer_encoding Content-Transfer-Encoding
String
imf.content.type Content-Type
String
imf.content.type.parameters Parameters
String
imf.content.type.type Type
String
imf.content_language Content-Language
String
imf.conversion Conversion
String
imf.conversion_with_loss Conversion-With-Loss
String
imf.date Date
String
imf.DateTime
imf.deferred_delivery Deferred-Delivery
String
imf.delivery_date Delivery-Date
String
imf.discarded_x400_ipms_extensions Discarded-X400-IPMS-Extensions
String
imf.discarded_x400_mts_extensions Discarded-X400-MTS-Extensions
String
imf.display_name Display-Name
String
imf.dl_expansion_history DL-Expansion-History
String
imf.expires Expires
String
imf.ext.expiry-date Expiry-Date
String
imf.ext.mailer X-Mailer
String
imf.ext.mimeole X-MimeOLE
String
imf.ext.tnef-correlator X-MS-TNEF-Correlator
String
imf.extension Unknown-Extension
String
imf.extension.type Type
String
imf.extension.value Value
String
imf.from From
String
imf.MailboxList
imf.importance Importance
String
imf.in_reply_to In-Reply-To
String
imf.incomplete_copy Incomplete-Copy
String
imf.keywords Keywords
String
imf.latest_delivery_time Latest-Delivery-Time
String
imf.mailbox_list Mailbox List
Unsigned 32-bit integer
imf.mailbox_list.item Item
String
imf.message_id Message-ID
String
imf.message_type Message-Type
String
imf.mime_version MIME-Version
String
imf.original_encoded_information_types Original-Encoded-Information-Types
String
imf.originator_return_address Originator-Return-Address
String
imf.priority Priority
String
imf.received Received
String
imf.references References
String
imf.reply_by Reply-By
String
imf.reply_to Reply-To
String
imf.resent.bcc Resent-Bcc
String
imf.resent.cc Resent-Cc
String
imf.resent.date Resent-Date
String
imf.resent.from Resent-From
String
imf.resent.message_id Resent-Message-ID
String
imf.resent.sender Resent-Sender
String
imf.resent.to Resent-To
String
imf.return_path Return-Path
String
imf.sender Sender
String
imf.sensitivity Sensitivity
String
imf.subject Subject
String
imf.supersedes Supersedes
String
imf.thread-index Thread-Index
String
imf.to To
String
imf.x400_content_identifier X400-Content-Identifier
String
imf.x400_content_type X400-Content-Type
String
imf.x400_mts_identifier X400-MTS-Identifier
String
imf.x400_originator X400-Originator
String
imf.x400_received X400-Received
String
imf.x400_recipients X400-Recipients
String
ipp.timestamp Time
Date/Time stamp
ip.addr Source or Destination Address
IPv4 address
ip.checksum Header checksum
Unsigned 16-bit integer
ip.checksum_bad Bad
Boolean
True: checksum doesn't match packet content; False: matches content or not checked
ip.checksum_good Good
Boolean
True: checksum matches packet content; False: doesn't match content or not checked
ip.dsfield Differentiated Services field
Unsigned 8-bit integer
ip.dsfield.ce ECN-CE
Unsigned 8-bit integer
ip.dsfield.dscp Differentiated Services Codepoint
Unsigned 8-bit integer
ip.dsfield.ect ECN-Capable Transport (ECT)
Unsigned 8-bit integer
ip.dst Destination
IPv4 address
ip.dst_host Destination Host
String
ip.flags Flags
Unsigned 8-bit integer
ip.flags.df Don't fragment
Boolean
ip.flags.mf More fragments
Boolean
ip.flags.rb Reserved bit
Boolean
ip.frag_offset Fragment offset
Unsigned 16-bit integer
Fragment offset (13 bits)
ip.fragment IP Fragment
Frame number
IP Fragment
ip.fragment.error Defragmentation error
Frame number
Defragmentation error due to illegal fragments
ip.fragment.multipletails Multiple tail fragments found
Boolean
Several tails were found when defragmenting the packet
ip.fragment.overlap Fragment overlap
Boolean
Fragment overlaps with other fragments
ip.fragment.overlap.conflict Conflicting data in fragment overlap
Boolean
Overlapping fragments contained conflicting data
ip.fragment.toolongfragment Fragment too long
Boolean
Fragment contained data past end of packet
ip.fragments IP Fragments
No value
IP Fragments
ip.hdr_len Header Length
Unsigned 8-bit integer
ip.host Source or Destination Host
String
ip.id Identification
Unsigned 16-bit integer
ip.len Total Length
Unsigned 16-bit integer
ip.proto Protocol
Unsigned 8-bit integer
ip.reassembled_in Reassembled IP in frame
Frame number
This IP packet is reassembled in this frame
ip.src Source
IPv4 address
ip.src_host Source Host
String
ip.tos Type of Service
Unsigned 8-bit integer
ip.tos.cost Cost
Boolean
ip.tos.delay Delay
Boolean
ip.tos.precedence Precedence
Unsigned 8-bit integer
ip.tos.reliability Reliability
Boolean
ip.tos.throughput Throughput
Boolean
ip.ttl Time to live
Unsigned 8-bit integer
ip.version Version
Unsigned 8-bit integer
ipv6.addr Address
IPv6 address
Source or Destination IPv6 Address
ipv6.class Traffic class
Unsigned 32-bit integer
ipv6.dst Destination
IPv6 address
Destination IPv6 Address
ipv6.dst_host Destination Host
String
Destination IPv6 Host
ipv6.dst_opt Destination Option
No value
Destination Option
ipv6.flow Flowlabel
Unsigned 32-bit integer
ipv6.fragment IPv6 Fragment
Frame number
IPv6 Fragment
ipv6.fragment.error Defragmentation error
Frame number
Defragmentation error due to illegal fragments
ipv6.fragment.more More Fragment
Boolean
More Fragments
ipv6.fragment.multipletails Multiple tail fragments found
Boolean
Several tails were found when defragmenting the packet
ipv6.fragment.offset Offset
Unsigned 16-bit integer
Fragment Offset
ipv6.fragment.overlap Fragment overlap
Boolean
Fragment overlaps with other fragments
ipv6.fragment.overlap.conflict Conflicting data in fragment overlap
Boolean
Overlapping fragments contained conflicting data
ipv6.fragment.toolongfragment Fragment too long
Boolean
Fragment contained data past end of packet
ipv6.fragments IPv6 Fragments
No value
IPv6 Fragments
ipv6.framgent.id Identification
Unsigned 32-bit integer
Fragment Identification
ipv6.hlim Hop limit
Unsigned 8-bit integer
ipv6.hop_opt Hop-by-Hop Option
No value
Hop-by-Hop Option
ipv6.host Host
String
IPv6 Host
ipv6.mipv6_home_address Home Address
IPv6 address
ipv6.mipv6_length Option Length
Unsigned 8-bit integer
ipv6.mipv6_type Option Type
Unsigned 8-bit integer
ipv6.nxt Next header
Unsigned 8-bit integer
ipv6.opt.pad1 Pad1
No value
Pad1 Option
ipv6.opt.padn PadN
Unsigned 8-bit integer
PadN Option
ipv6.plen Payload length
Unsigned 16-bit integer
ipv6.reassembled_in Reassembled IPv6 in frame
Frame number
This IPv6 packet is reassembled in this frame
ipv6.routing_hdr Routing Header, Type
Unsigned 8-bit integer
Routing Header Option
ipv6.routing_hdr.addr Address
IPv6 address
Routing Header Address
ipv6.routing_hdr.left Left Segments
Unsigned 8-bit integer
Routing Header Left Segments
ipv6.routing_hdr.type Type
Unsigned 8-bit integer
Routeing Header Type
ipv6.shim6 SHIM6
No value
ipv6.shim6.checksum Checksum
Unsigned 16-bit integer
Shim6 Checksum
ipv6.shim6.checksum_bad Bad Checksum
Boolean
Shim6 Bad Checksum
ipv6.shim6.checksum_good Good Checksum
Boolean
ipv6.shim6.ct Context Tag
No value
ipv6.shim6.inonce Initiator Nonce
Unsigned 32-bit integer
ipv6.shim6.len Header Ext Length
Unsigned 8-bit integer
ipv6.shim6.loc.flags Flags
Unsigned 8-bit integer
Locator Preferences Flags
ipv6.shim6.loc.prio Priority
Unsigned 8-bit integer
Locator Preferences Priority
ipv6.shim6.loc.weight Weight
Unsigned 8-bit integer
Locator Preferences Weight
ipv6.shim6.locator Locator
IPv6 address
Shim6 Locator
ipv6.shim6.nxt Next Header
Unsigned 8-bit integer
ipv6.shim6.opt.critical Option Critical Bit
Boolean
TRUE : option is critical, FALSE: option is not critical
ipv6.shim6.opt.elemlen Element Length
Unsigned 8-bit integer
Length of Elements in Locator Preferences Option
ipv6.shim6.opt.fii Forked Instance Identifier
Unsigned 32-bit integer
ipv6.shim6.opt.len Content Length
Unsigned 16-bit integer
Content Length Option
ipv6.shim6.opt.loclist Locator List Generation
Unsigned 32-bit integer
ipv6.shim6.opt.locnum Num Locators
Unsigned 8-bit integer
Number of Locators in Locator List
ipv6.shim6.opt.total_len Total Length
Unsigned 16-bit integer
Total Option Length
ipv6.shim6.opt.type Option Type
Unsigned 16-bit integer
Shim6 Option Type
ipv6.shim6.opt.verif_method Verification Method
Unsigned 8-bit integer
Locator Verification Method
ipv6.shim6.p P Bit
Boolean
ipv6.shim6.pdata Data
Unsigned 32-bit integer
Shim6 Probe Data
ipv6.shim6.pdst Destination Address
IPv6 address
Shim6 Probe Destination Address
ipv6.shim6.pnonce Nonce
Unsigned 32-bit integer
Shim6 Probe Nonce
ipv6.shim6.precvd Probes Received
Unsigned 8-bit integer
ipv6.shim6.proto Protocol
Unsigned 8-bit integer
ipv6.shim6.psent Probes Sent
Unsigned 8-bit integer
ipv6.shim6.psrc Source Address
IPv6 address
Shim6 Probe Source Address
ipv6.shim6.reap REAP State
Unsigned 8-bit integer
ipv6.shim6.rnonce Responder Nonce
Unsigned 32-bit integer
ipv6.shim6.rulid Receiver ULID
IPv6 address
Shim6 Receiver ULID
ipv6.shim6.sulid Sender ULID
IPv6 address
Shim6 Sender ULID
ipv6.shim6.type Message Type
Unsigned 8-bit integer
ipv6.src Source
IPv6 address
Source IPv6 Address
ipv6.src_host Source Host
String
Source IPv6 Host
ipv6.version Version
Unsigned 8-bit integer
irc.request Request
String
Line of request message
irc.response Response
String
Line of response message
ike.cert_authority Certificate Authority
Byte array
SHA-1 hash of the Certificate Authority
ike.cert_authority_dn Certificate Authority Distinguished Name
Unsigned 32-bit integer
Certificate Authority Distinguished Name
ike.nat_keepalive NAT Keepalive
No value
NAT Keepalive packet
isakmp.cert.encoding Port
Unsigned 8-bit integer
ISAKMP Certificate Encoding
isakmp.certificate Certificate
No value
ISAKMP Certificate Encoding
isakmp.certreq.type Port
Unsigned 8-bit integer
ISAKMP Certificate Request Type
isakmp.doi Domain of interpretation
Unsigned 32-bit integer
ISAKMP Domain of Interpretation
isakmp.exchangetype Exchange type
Unsigned 8-bit integer
ISAKMP Exchange Type
isakmp.flags Flags
Unsigned 8-bit integer
ISAKMP Flags
isakmp.frag.last Frag last
Unsigned 8-bit integer
ISAKMP last fragment
isakmp.frag.packetid Frag ID
Unsigned 16-bit integer
ISAKMP fragment packet-id
isakmp.icookie Initiator cookie
Byte array
ISAKMP Initiator Cookie
isakmp.id.port Port
Unsigned 16-bit integer
ISAKMP ID Port
isakmp.id.type ID type
Unsigned 8-bit integer
ISAKMP ID Type
isakmp.length Length
Unsigned 32-bit integer
ISAKMP Length
isakmp.messageid Message ID
Unsigned 32-bit integer
ISAKMP Message ID
isakmp.nextpayload Next payload
Unsigned 8-bit integer
ISAKMP Next Payload
isakmp.notify.msgtype Port
Unsigned 8-bit integer
ISAKMP Notify Message Type
isakmp.payloadlength Payload length
Unsigned 16-bit integer
ISAKMP Payload Length
isakmp.prop.number Proposal number
Unsigned 8-bit integer
ISAKMP Proposal Number
isakmp.prop.transforms Proposal transforms
Unsigned 8-bit integer
ISAKMP Proposal Transforms
isakmp.protoid Protocol ID
Unsigned 8-bit integer
ISAKMP Protocol ID
isakmp.rcookie Responder cookie
Byte array
ISAKMP Responder Cookie
isakmp.sa.situation Situation
Byte array
ISAKMP SA Situation
isakmp.spinum Port
Unsigned 16-bit integer
ISAKMP Number of SPIs
isakmp.spisize SPI Size
Unsigned 8-bit integer
ISAKMP SPI Size
isakmp.trans.id Transform ID
Unsigned 8-bit integer
ISAKMP Transform ID
isakmp.trans.number Transform number
Unsigned 8-bit integer
ISAKMP Transform Number
isakmp.version Version
Unsigned 8-bit integer
ISAKMP Version (major + minor)
msg.fragment Message fragment
Frame number
msg.fragment.error Message defragmentation error
Frame number
msg.fragment.multiple_tails Message has multiple tail fragments
Boolean
msg.fragment.overlap Message fragment overlap
Boolean
msg.fragment.overlap.conflicts Message fragment overlapping with conflicting data
Boolean
msg.fragment.too_long_fragment Message fragment too long
Boolean
msg.fragments Message fragments
No value
msg.reassembled.in Reassembled in
Frame number
idp.checksum Checksum
Unsigned 16-bit integer
idp.dst Destination Address
String
Destination Address
idp.dst.net Destination Network
Unsigned 32-bit integer
idp.dst.node Destination Node
6-byte Hardware (MAC) Address
idp.dst.socket Destination Socket
Unsigned 16-bit integer
idp.hops Transport Control (Hops)
Unsigned 8-bit integer
idp.len Length
Unsigned 16-bit integer
idp.packet_type Packet Type
Unsigned 8-bit integer
idp.src Source Address
String
Source Address
idp.src.net Source Network
Unsigned 32-bit integer
idp.src.node Source Node
6-byte Hardware (MAC) Address
idp.src.socket Source Socket
Unsigned 16-bit integer
ipx.addr Src/Dst Address
String
Source or Destination IPX Address "network.node"
ipx.checksum Checksum
Unsigned 16-bit integer
ipx.dst Destination Address
String
Destination IPX Address "network.node"
ipx.dst.net Destination Network
IPX network or server name
ipx.dst.node Destination Node
6-byte Hardware (MAC) Address
ipx.dst.socket Destination Socket
Unsigned 16-bit integer
ipx.hops Transport Control (Hops)
Unsigned 8-bit integer
ipx.len Length
Unsigned 16-bit integer
ipx.net Source or Destination Network
IPX network or server name
ipx.node Source or Destination Node
6-byte Hardware (MAC) Address
ipx.packet_type Packet Type
Unsigned 8-bit integer
ipx.socket Source or Destination Socket
Unsigned 16-bit integer
ipx.src Source Address
String
Source IPX Address "network.node"
ipx.src.net Source Network
IPX network or server name
ipx.src.node Source Node
6-byte Hardware (MAC) Address
ipx.src.socket Source Socket
Unsigned 16-bit integer
ircomm.control Control Channel
No value
ircomm.control.len Clen
Unsigned 8-bit integer
ircomm.parameter IrCOMM Parameter
No value
ircomm.pi Parameter Identifier
Unsigned 8-bit integer
ircomm.pl Parameter Length
Unsigned 8-bit integer
ircomm.pv Parameter Value
Byte array
irlap.a Address Field
Unsigned 8-bit integer
irlap.a.address Address
Unsigned 8-bit integer
irlap.a.cr C/R
Boolean
irlap.c Control Field
Unsigned 8-bit integer
irlap.c.f Final
Boolean
irlap.c.ftype Frame Type
Unsigned 8-bit integer
irlap.c.n_r N(R)
Unsigned 8-bit integer
irlap.c.n_s N(S)
Unsigned 8-bit integer
irlap.c.p Poll
Boolean
irlap.c.s_ftype Supervisory frame type
Unsigned 8-bit integer
irlap.c.u_modifier_cmd Command
Unsigned 8-bit integer
irlap.c.u_modifier_resp Response
Unsigned 8-bit integer
irlap.i Information Field
No value
irlap.negotiation Negotiation Parameter
No value
irlap.pi Parameter Identifier
Unsigned 8-bit integer
irlap.pl Parameter Length
Unsigned 8-bit integer
irlap.pv Parameter Value
Byte array
irlap.snrm.ca Connection Address
Unsigned 8-bit integer
irlap.snrm.daddr Destination Device Address
Unsigned 32-bit integer
irlap.snrm.saddr Source Device Address
Unsigned 32-bit integer
irlap.ua.daddr Destination Device Address
Unsigned 32-bit integer
irlap.ua.saddr Source Device Address
Unsigned 32-bit integer
irlap.xid.conflict Conflict
Boolean
irlap.xid.daddr Destination Device Address
Unsigned 32-bit integer
irlap.xid.fi Format Identifier
Unsigned 8-bit integer
irlap.xid.flags Discovery Flags
Unsigned 8-bit integer
irlap.xid.s Number of Slots
Unsigned 8-bit integer
irlap.xid.saddr Source Device Address
Unsigned 32-bit integer
irlap.xid.slotnr Slot Number
Unsigned 8-bit integer
irlap.xid.version Version Number
Unsigned 8-bit integer
irlmp.dst Destination
Unsigned 8-bit integer
irlmp.dst.c Control Bit
Boolean
irlmp.dst.lsap Destination LSAP
Unsigned 8-bit integer
irlmp.mode Mode
Unsigned 8-bit integer
irlmp.opcode Opcode
Unsigned 8-bit integer
irlmp.reason Reason
Unsigned 8-bit integer
irlmp.rsvd Reserved
Unsigned 8-bit integer
irlmp.src Source
Unsigned 8-bit integer
irlmp.src.lsap Source LSAP
Unsigned 8-bit integer
irlmp.src.r reserved
Unsigned 8-bit integer
irlmp.status Status
Unsigned 8-bit integer
irlmp.xid.charset Character Set
Unsigned 8-bit integer
irlmp.xid.hints Service Hints
Byte array
irlmp.xid.name Device Nickname
String
iuup.ack Ack/Nack
Unsigned 8-bit integer
Ack/Nack
iuup.advance Advance
Unsigned 32-bit integer
iuup.chain_ind Chain Indicator
Unsigned 8-bit integer
iuup.circuit_id Circuit ID
Unsigned 16-bit integer
iuup.data_pdu_type RFCI Data Pdu Type
Unsigned 8-bit integer
iuup.delay Delay
Unsigned 32-bit integer
iuup.delta Delta Time
iuup.direction Frame Direction
Unsigned 16-bit integer
iuup.error_cause Error Cause
Unsigned 8-bit integer
iuup.error_distance Error DISTANCE
Unsigned 8-bit integer
iuup.fqc FQC
Unsigned 8-bit integer
Frame Quality Classification
iuup.framenum Frame Number
Unsigned 8-bit integer
iuup.header_crc Header CRC
Unsigned 8-bit integer
iuup.mode Mode Version
Unsigned 8-bit integer
iuup.p Number of RFCI Indicators
Unsigned 8-bit integer
iuup.payload_crc Payload CRC
Unsigned 16-bit integer
iuup.payload_data Payload Data
Byte array
iuup.pdu_type PDU Type
Unsigned 8-bit integer
iuup.procedure Procedure
Unsigned 8-bit integer
iuup.rfci RFCI
Unsigned 8-bit integer
RAB sub-Flow Combination Indicator
iuup.rfci.0 RFCI 0
Unsigned 8-bit integer
iuup.rfci.0.flow.0 RFCI 0 Flow 0
Byte array
iuup.rfci.0.flow.0.len RFCI 0 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.0.flow.1 RFCI 0 Flow 1
Byte array
iuup.rfci.0.flow.1.len RFCI 0 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.0.flow.2 RFCI 0 Flow 2
Byte array
iuup.rfci.0.flow.2.len RFCI 0 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.0.flow.3 RFCI 0 Flow 3
Byte array
iuup.rfci.0.flow.3.len RFCI 0 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.0.flow.4 RFCI 0 Flow 4
Byte array
iuup.rfci.0.flow.4.len RFCI 0 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.0.flow.5 RFCI 0 Flow 5
Byte array
iuup.rfci.0.flow.5.len RFCI 0 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.0.flow.6 RFCI 0 Flow 6
Byte array
iuup.rfci.0.flow.6.len RFCI 0 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.0.flow.7 RFCI 0 Flow 7
Byte array
iuup.rfci.0.flow.7.len RFCI 0 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.0.ipti RFCI 0 IPTI
Unsigned 8-bit integer
iuup.rfci.0.li RFCI 0 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.0.lri RFCI 0 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.1 RFCI 1
Unsigned 8-bit integer
iuup.rfci.1.flow.0 RFCI 1 Flow 0
Byte array
iuup.rfci.1.flow.0.len RFCI 1 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.1.flow.1 RFCI 1 Flow 1
Byte array
iuup.rfci.1.flow.1.len RFCI 1 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.1.flow.2 RFCI 1 Flow 2
Byte array
iuup.rfci.1.flow.2.len RFCI 1 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.1.flow.3 RFCI 1 Flow 3
Byte array
iuup.rfci.1.flow.3.len RFCI 1 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.1.flow.4 RFCI 1 Flow 4
Byte array
iuup.rfci.1.flow.4.len RFCI 1 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.1.flow.5 RFCI 1 Flow 5
Byte array
iuup.rfci.1.flow.5.len RFCI 1 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.1.flow.6 RFCI 1 Flow 6
Byte array
iuup.rfci.1.flow.6.len RFCI 1 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.1.flow.7 RFCI 1 Flow 7
Byte array
iuup.rfci.1.flow.7.len RFCI 1 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.1.ipti RFCI 1 IPTI
Unsigned 8-bit integer
iuup.rfci.1.li RFCI 1 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.1.lri RFCI 1 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.10 RFCI 10
Unsigned 8-bit integer
iuup.rfci.10.flow.0 RFCI 10 Flow 0
Byte array
iuup.rfci.10.flow.0.len RFCI 10 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.10.flow.1 RFCI 10 Flow 1
Byte array
iuup.rfci.10.flow.1.len RFCI 10 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.10.flow.2 RFCI 10 Flow 2
Byte array
iuup.rfci.10.flow.2.len RFCI 10 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.10.flow.3 RFCI 10 Flow 3
Byte array
iuup.rfci.10.flow.3.len RFCI 10 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.10.flow.4 RFCI 10 Flow 4
Byte array
iuup.rfci.10.flow.4.len RFCI 10 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.10.flow.5 RFCI 10 Flow 5
Byte array
iuup.rfci.10.flow.5.len RFCI 10 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.10.flow.6 RFCI 10 Flow 6
Byte array
iuup.rfci.10.flow.6.len RFCI 10 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.10.flow.7 RFCI 10 Flow 7
Byte array
iuup.rfci.10.flow.7.len RFCI 10 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.10.ipti RFCI 10 IPTI
Unsigned 8-bit integer
iuup.rfci.10.li RFCI 10 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.10.lri RFCI 10 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.11 RFCI 11
Unsigned 8-bit integer
iuup.rfci.11.flow.0 RFCI 11 Flow 0
Byte array
iuup.rfci.11.flow.0.len RFCI 11 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.11.flow.1 RFCI 11 Flow 1
Byte array
iuup.rfci.11.flow.1.len RFCI 11 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.11.flow.2 RFCI 11 Flow 2
Byte array
iuup.rfci.11.flow.2.len RFCI 11 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.11.flow.3 RFCI 11 Flow 3
Byte array
iuup.rfci.11.flow.3.len RFCI 11 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.11.flow.4 RFCI 11 Flow 4
Byte array
iuup.rfci.11.flow.4.len RFCI 11 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.11.flow.5 RFCI 11 Flow 5
Byte array
iuup.rfci.11.flow.5.len RFCI 11 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.11.flow.6 RFCI 11 Flow 6
Byte array
iuup.rfci.11.flow.6.len RFCI 11 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.11.flow.7 RFCI 11 Flow 7
Byte array
iuup.rfci.11.flow.7.len RFCI 11 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.11.ipti RFCI 11 IPTI
Unsigned 8-bit integer
iuup.rfci.11.li RFCI 11 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.11.lri RFCI 11 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.12 RFCI 12
Unsigned 8-bit integer
iuup.rfci.12.flow.0 RFCI 12 Flow 0
Byte array
iuup.rfci.12.flow.0.len RFCI 12 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.12.flow.1 RFCI 12 Flow 1
Byte array
iuup.rfci.12.flow.1.len RFCI 12 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.12.flow.2 RFCI 12 Flow 2
Byte array
iuup.rfci.12.flow.2.len RFCI 12 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.12.flow.3 RFCI 12 Flow 3
Byte array
iuup.rfci.12.flow.3.len RFCI 12 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.12.flow.4 RFCI 12 Flow 4
Byte array
iuup.rfci.12.flow.4.len RFCI 12 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.12.flow.5 RFCI 12 Flow 5
Byte array
iuup.rfci.12.flow.5.len RFCI 12 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.12.flow.6 RFCI 12 Flow 6
Byte array
iuup.rfci.12.flow.6.len RFCI 12 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.12.flow.7 RFCI 12 Flow 7
Byte array
iuup.rfci.12.flow.7.len RFCI 12 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.12.ipti RFCI 12 IPTI
Unsigned 8-bit integer
iuup.rfci.12.li RFCI 12 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.12.lri RFCI 12 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.13 RFCI 13
Unsigned 8-bit integer
iuup.rfci.13.flow.0 RFCI 13 Flow 0
Byte array
iuup.rfci.13.flow.0.len RFCI 13 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.13.flow.1 RFCI 13 Flow 1
Byte array
iuup.rfci.13.flow.1.len RFCI 13 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.13.flow.2 RFCI 13 Flow 2
Byte array
iuup.rfci.13.flow.2.len RFCI 13 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.13.flow.3 RFCI 13 Flow 3
Byte array
iuup.rfci.13.flow.3.len RFCI 13 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.13.flow.4 RFCI 13 Flow 4
Byte array
iuup.rfci.13.flow.4.len RFCI 13 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.13.flow.5 RFCI 13 Flow 5
Byte array
iuup.rfci.13.flow.5.len RFCI 13 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.13.flow.6 RFCI 13 Flow 6
Byte array
iuup.rfci.13.flow.6.len RFCI 13 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.13.flow.7 RFCI 13 Flow 7
Byte array
iuup.rfci.13.flow.7.len RFCI 13 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.13.ipti RFCI 13 IPTI
Unsigned 8-bit integer
iuup.rfci.13.li RFCI 13 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.13.lri RFCI 13 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.14 RFCI 14
Unsigned 8-bit integer
iuup.rfci.14.flow.0 RFCI 14 Flow 0
Byte array
iuup.rfci.14.flow.0.len RFCI 14 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.14.flow.1 RFCI 14 Flow 1
Byte array
iuup.rfci.14.flow.1.len RFCI 14 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.14.flow.2 RFCI 14 Flow 2
Byte array
iuup.rfci.14.flow.2.len RFCI 14 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.14.flow.3 RFCI 14 Flow 3
Byte array
iuup.rfci.14.flow.3.len RFCI 14 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.14.flow.4 RFCI 14 Flow 4
Byte array
iuup.rfci.14.flow.4.len RFCI 14 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.14.flow.5 RFCI 14 Flow 5
Byte array
iuup.rfci.14.flow.5.len RFCI 14 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.14.flow.6 RFCI 14 Flow 6
Byte array
iuup.rfci.14.flow.6.len RFCI 14 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.14.flow.7 RFCI 14 Flow 7
Byte array
iuup.rfci.14.flow.7.len RFCI 14 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.14.ipti RFCI 14 IPTI
Unsigned 8-bit integer
iuup.rfci.14.li RFCI 14 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.14.lri RFCI 14 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.15 RFCI 15
Unsigned 8-bit integer
iuup.rfci.15.flow.0 RFCI 15 Flow 0
Byte array
iuup.rfci.15.flow.0.len RFCI 15 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.15.flow.1 RFCI 15 Flow 1
Byte array
iuup.rfci.15.flow.1.len RFCI 15 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.15.flow.2 RFCI 15 Flow 2
Byte array
iuup.rfci.15.flow.2.len RFCI 15 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.15.flow.3 RFCI 15 Flow 3
Byte array
iuup.rfci.15.flow.3.len RFCI 15 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.15.flow.4 RFCI 15 Flow 4
Byte array
iuup.rfci.15.flow.4.len RFCI 15 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.15.flow.5 RFCI 15 Flow 5
Byte array
iuup.rfci.15.flow.5.len RFCI 15 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.15.flow.6 RFCI 15 Flow 6
Byte array
iuup.rfci.15.flow.6.len RFCI 15 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.15.flow.7 RFCI 15 Flow 7
Byte array
iuup.rfci.15.flow.7.len RFCI 15 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.15.ipti RFCI 15 IPTI
Unsigned 8-bit integer
iuup.rfci.15.li RFCI 15 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.15.lri RFCI 15 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.16 RFCI 16
Unsigned 8-bit integer
iuup.rfci.16.flow.0 RFCI 16 Flow 0
Byte array
iuup.rfci.16.flow.0.len RFCI 16 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.16.flow.1 RFCI 16 Flow 1
Byte array
iuup.rfci.16.flow.1.len RFCI 16 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.16.flow.2 RFCI 16 Flow 2
Byte array
iuup.rfci.16.flow.2.len RFCI 16 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.16.flow.3 RFCI 16 Flow 3
Byte array
iuup.rfci.16.flow.3.len RFCI 16 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.16.flow.4 RFCI 16 Flow 4
Byte array
iuup.rfci.16.flow.4.len RFCI 16 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.16.flow.5 RFCI 16 Flow 5
Byte array
iuup.rfci.16.flow.5.len RFCI 16 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.16.flow.6 RFCI 16 Flow 6
Byte array
iuup.rfci.16.flow.6.len RFCI 16 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.16.flow.7 RFCI 16 Flow 7
Byte array
iuup.rfci.16.flow.7.len RFCI 16 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.16.ipti RFCI 16 IPTI
Unsigned 8-bit integer
iuup.rfci.16.li RFCI 16 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.16.lri RFCI 16 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.17 RFCI 17
Unsigned 8-bit integer
iuup.rfci.17.flow.0 RFCI 17 Flow 0
Byte array
iuup.rfci.17.flow.0.len RFCI 17 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.17.flow.1 RFCI 17 Flow 1
Byte array
iuup.rfci.17.flow.1.len RFCI 17 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.17.flow.2 RFCI 17 Flow 2
Byte array
iuup.rfci.17.flow.2.len RFCI 17 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.17.flow.3 RFCI 17 Flow 3
Byte array
iuup.rfci.17.flow.3.len RFCI 17 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.17.flow.4 RFCI 17 Flow 4
Byte array
iuup.rfci.17.flow.4.len RFCI 17 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.17.flow.5 RFCI 17 Flow 5
Byte array
iuup.rfci.17.flow.5.len RFCI 17 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.17.flow.6 RFCI 17 Flow 6
Byte array
iuup.rfci.17.flow.6.len RFCI 17 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.17.flow.7 RFCI 17 Flow 7
Byte array
iuup.rfci.17.flow.7.len RFCI 17 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.17.ipti RFCI 17 IPTI
Unsigned 8-bit integer
iuup.rfci.17.li RFCI 17 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.17.lri RFCI 17 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.18 RFCI 18
Unsigned 8-bit integer
iuup.rfci.18.flow.0 RFCI 18 Flow 0
Byte array
iuup.rfci.18.flow.0.len RFCI 18 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.18.flow.1 RFCI 18 Flow 1
Byte array
iuup.rfci.18.flow.1.len RFCI 18 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.18.flow.2 RFCI 18 Flow 2
Byte array
iuup.rfci.18.flow.2.len RFCI 18 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.18.flow.3 RFCI 18 Flow 3
Byte array
iuup.rfci.18.flow.3.len RFCI 18 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.18.flow.4 RFCI 18 Flow 4
Byte array
iuup.rfci.18.flow.4.len RFCI 18 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.18.flow.5 RFCI 18 Flow 5
Byte array
iuup.rfci.18.flow.5.len RFCI 18 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.18.flow.6 RFCI 18 Flow 6
Byte array
iuup.rfci.18.flow.6.len RFCI 18 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.18.flow.7 RFCI 18 Flow 7
Byte array
iuup.rfci.18.flow.7.len RFCI 18 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.18.ipti RFCI 18 IPTI
Unsigned 8-bit integer
iuup.rfci.18.li RFCI 18 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.18.lri RFCI 18 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.19 RFCI 19
Unsigned 8-bit integer
iuup.rfci.19.flow.0 RFCI 19 Flow 0
Byte array
iuup.rfci.19.flow.0.len RFCI 19 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.19.flow.1 RFCI 19 Flow 1
Byte array
iuup.rfci.19.flow.1.len RFCI 19 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.19.flow.2 RFCI 19 Flow 2
Byte array
iuup.rfci.19.flow.2.len RFCI 19 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.19.flow.3 RFCI 19 Flow 3
Byte array
iuup.rfci.19.flow.3.len RFCI 19 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.19.flow.4 RFCI 19 Flow 4
Byte array
iuup.rfci.19.flow.4.len RFCI 19 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.19.flow.5 RFCI 19 Flow 5
Byte array
iuup.rfci.19.flow.5.len RFCI 19 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.19.flow.6 RFCI 19 Flow 6
Byte array
iuup.rfci.19.flow.6.len RFCI 19 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.19.flow.7 RFCI 19 Flow 7
Byte array
iuup.rfci.19.flow.7.len RFCI 19 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.19.ipti RFCI 19 IPTI
Unsigned 8-bit integer
iuup.rfci.19.li RFCI 19 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.19.lri RFCI 19 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.2 RFCI 2
Unsigned 8-bit integer
iuup.rfci.2.flow.0 RFCI 2 Flow 0
Byte array
iuup.rfci.2.flow.0.len RFCI 2 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.2.flow.1 RFCI 2 Flow 1
Byte array
iuup.rfci.2.flow.1.len RFCI 2 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.2.flow.2 RFCI 2 Flow 2
Byte array
iuup.rfci.2.flow.2.len RFCI 2 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.2.flow.3 RFCI 2 Flow 3
Byte array
iuup.rfci.2.flow.3.len RFCI 2 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.2.flow.4 RFCI 2 Flow 4
Byte array
iuup.rfci.2.flow.4.len RFCI 2 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.2.flow.5 RFCI 2 Flow 5
Byte array
iuup.rfci.2.flow.5.len RFCI 2 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.2.flow.6 RFCI 2 Flow 6
Byte array
iuup.rfci.2.flow.6.len RFCI 2 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.2.flow.7 RFCI 2 Flow 7
Byte array
iuup.rfci.2.flow.7.len RFCI 2 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.2.ipti RFCI 2 IPTI
Unsigned 8-bit integer
iuup.rfci.2.li RFCI 2 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.2.lri RFCI 2 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.20 RFCI 20
Unsigned 8-bit integer
iuup.rfci.20.flow.0 RFCI 20 Flow 0
Byte array
iuup.rfci.20.flow.0.len RFCI 20 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.20.flow.1 RFCI 20 Flow 1
Byte array
iuup.rfci.20.flow.1.len RFCI 20 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.20.flow.2 RFCI 20 Flow 2
Byte array
iuup.rfci.20.flow.2.len RFCI 20 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.20.flow.3 RFCI 20 Flow 3
Byte array
iuup.rfci.20.flow.3.len RFCI 20 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.20.flow.4 RFCI 20 Flow 4
Byte array
iuup.rfci.20.flow.4.len RFCI 20 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.20.flow.5 RFCI 20 Flow 5
Byte array
iuup.rfci.20.flow.5.len RFCI 20 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.20.flow.6 RFCI 20 Flow 6
Byte array
iuup.rfci.20.flow.6.len RFCI 20 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.20.flow.7 RFCI 20 Flow 7
Byte array
iuup.rfci.20.flow.7.len RFCI 20 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.20.ipti RFCI 20 IPTI
Unsigned 8-bit integer
iuup.rfci.20.li RFCI 20 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.20.lri RFCI 20 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.21 RFCI 21
Unsigned 8-bit integer
iuup.rfci.21.flow.0 RFCI 21 Flow 0
Byte array
iuup.rfci.21.flow.0.len RFCI 21 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.21.flow.1 RFCI 21 Flow 1
Byte array
iuup.rfci.21.flow.1.len RFCI 21 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.21.flow.2 RFCI 21 Flow 2
Byte array
iuup.rfci.21.flow.2.len RFCI 21 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.21.flow.3 RFCI 21 Flow 3
Byte array
iuup.rfci.21.flow.3.len RFCI 21 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.21.flow.4 RFCI 21 Flow 4
Byte array
iuup.rfci.21.flow.4.len RFCI 21 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.21.flow.5 RFCI 21 Flow 5
Byte array
iuup.rfci.21.flow.5.len RFCI 21 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.21.flow.6 RFCI 21 Flow 6
Byte array
iuup.rfci.21.flow.6.len RFCI 21 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.21.flow.7 RFCI 21 Flow 7
Byte array
iuup.rfci.21.flow.7.len RFCI 21 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.21.ipti RFCI 21 IPTI
Unsigned 8-bit integer
iuup.rfci.21.li RFCI 21 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.21.lri RFCI 21 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.22 RFCI 22
Unsigned 8-bit integer
iuup.rfci.22.flow.0 RFCI 22 Flow 0
Byte array
iuup.rfci.22.flow.0.len RFCI 22 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.22.flow.1 RFCI 22 Flow 1
Byte array
iuup.rfci.22.flow.1.len RFCI 22 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.22.flow.2 RFCI 22 Flow 2
Byte array
iuup.rfci.22.flow.2.len RFCI 22 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.22.flow.3 RFCI 22 Flow 3
Byte array
iuup.rfci.22.flow.3.len RFCI 22 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.22.flow.4 RFCI 22 Flow 4
Byte array
iuup.rfci.22.flow.4.len RFCI 22 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.22.flow.5 RFCI 22 Flow 5
Byte array
iuup.rfci.22.flow.5.len RFCI 22 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.22.flow.6 RFCI 22 Flow 6
Byte array
iuup.rfci.22.flow.6.len RFCI 22 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.22.flow.7 RFCI 22 Flow 7
Byte array
iuup.rfci.22.flow.7.len RFCI 22 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.22.ipti RFCI 22 IPTI
Unsigned 8-bit integer
iuup.rfci.22.li RFCI 22 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.22.lri RFCI 22 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.23 RFCI 23
Unsigned 8-bit integer
iuup.rfci.23.flow.0 RFCI 23 Flow 0
Byte array
iuup.rfci.23.flow.0.len RFCI 23 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.23.flow.1 RFCI 23 Flow 1
Byte array
iuup.rfci.23.flow.1.len RFCI 23 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.23.flow.2 RFCI 23 Flow 2
Byte array
iuup.rfci.23.flow.2.len RFCI 23 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.23.flow.3 RFCI 23 Flow 3
Byte array
iuup.rfci.23.flow.3.len RFCI 23 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.23.flow.4 RFCI 23 Flow 4
Byte array
iuup.rfci.23.flow.4.len RFCI 23 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.23.flow.5 RFCI 23 Flow 5
Byte array
iuup.rfci.23.flow.5.len RFCI 23 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.23.flow.6 RFCI 23 Flow 6
Byte array
iuup.rfci.23.flow.6.len RFCI 23 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.23.flow.7 RFCI 23 Flow 7
Byte array
iuup.rfci.23.flow.7.len RFCI 23 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.23.ipti RFCI 23 IPTI
Unsigned 8-bit integer
iuup.rfci.23.li RFCI 23 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.23.lri RFCI 23 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.24 RFCI 24
Unsigned 8-bit integer
iuup.rfci.24.flow.0 RFCI 24 Flow 0
Byte array
iuup.rfci.24.flow.0.len RFCI 24 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.24.flow.1 RFCI 24 Flow 1
Byte array
iuup.rfci.24.flow.1.len RFCI 24 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.24.flow.2 RFCI 24 Flow 2
Byte array
iuup.rfci.24.flow.2.len RFCI 24 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.24.flow.3 RFCI 24 Flow 3
Byte array
iuup.rfci.24.flow.3.len RFCI 24 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.24.flow.4 RFCI 24 Flow 4
Byte array
iuup.rfci.24.flow.4.len RFCI 24 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.24.flow.5 RFCI 24 Flow 5
Byte array
iuup.rfci.24.flow.5.len RFCI 24 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.24.flow.6 RFCI 24 Flow 6
Byte array
iuup.rfci.24.flow.6.len RFCI 24 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.24.flow.7 RFCI 24 Flow 7
Byte array
iuup.rfci.24.flow.7.len RFCI 24 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.24.ipti RFCI 24 IPTI
Unsigned 8-bit integer
iuup.rfci.24.li RFCI 24 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.24.lri RFCI 24 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.25 RFCI 25
Unsigned 8-bit integer
iuup.rfci.25.flow.0 RFCI 25 Flow 0
Byte array
iuup.rfci.25.flow.0.len RFCI 25 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.25.flow.1 RFCI 25 Flow 1
Byte array
iuup.rfci.25.flow.1.len RFCI 25 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.25.flow.2 RFCI 25 Flow 2
Byte array
iuup.rfci.25.flow.2.len RFCI 25 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.25.flow.3 RFCI 25 Flow 3
Byte array
iuup.rfci.25.flow.3.len RFCI 25 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.25.flow.4 RFCI 25 Flow 4
Byte array
iuup.rfci.25.flow.4.len RFCI 25 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.25.flow.5 RFCI 25 Flow 5
Byte array
iuup.rfci.25.flow.5.len RFCI 25 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.25.flow.6 RFCI 25 Flow 6
Byte array
iuup.rfci.25.flow.6.len RFCI 25 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.25.flow.7 RFCI 25 Flow 7
Byte array
iuup.rfci.25.flow.7.len RFCI 25 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.25.ipti RFCI 25 IPTI
Unsigned 8-bit integer
iuup.rfci.25.li RFCI 25 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.25.lri RFCI 25 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.26 RFCI 26
Unsigned 8-bit integer
iuup.rfci.26.flow.0 RFCI 26 Flow 0
Byte array
iuup.rfci.26.flow.0.len RFCI 26 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.26.flow.1 RFCI 26 Flow 1
Byte array
iuup.rfci.26.flow.1.len RFCI 26 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.26.flow.2 RFCI 26 Flow 2
Byte array
iuup.rfci.26.flow.2.len RFCI 26 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.26.flow.3 RFCI 26 Flow 3
Byte array
iuup.rfci.26.flow.3.len RFCI 26 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.26.flow.4 RFCI 26 Flow 4
Byte array
iuup.rfci.26.flow.4.len RFCI 26 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.26.flow.5 RFCI 26 Flow 5
Byte array
iuup.rfci.26.flow.5.len RFCI 26 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.26.flow.6 RFCI 26 Flow 6
Byte array
iuup.rfci.26.flow.6.len RFCI 26 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.26.flow.7 RFCI 26 Flow 7
Byte array
iuup.rfci.26.flow.7.len RFCI 26 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.26.ipti RFCI 26 IPTI
Unsigned 8-bit integer
iuup.rfci.26.li RFCI 26 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.26.lri RFCI 26 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.27 RFCI 27
Unsigned 8-bit integer
iuup.rfci.27.flow.0 RFCI 27 Flow 0
Byte array
iuup.rfci.27.flow.0.len RFCI 27 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.27.flow.1 RFCI 27 Flow 1
Byte array
iuup.rfci.27.flow.1.len RFCI 27 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.27.flow.2 RFCI 27 Flow 2
Byte array
iuup.rfci.27.flow.2.len RFCI 27 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.27.flow.3 RFCI 27 Flow 3
Byte array
iuup.rfci.27.flow.3.len RFCI 27 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.27.flow.4 RFCI 27 Flow 4
Byte array
iuup.rfci.27.flow.4.len RFCI 27 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.27.flow.5 RFCI 27 Flow 5
Byte array
iuup.rfci.27.flow.5.len RFCI 27 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.27.flow.6 RFCI 27 Flow 6
Byte array
iuup.rfci.27.flow.6.len RFCI 27 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.27.flow.7 RFCI 27 Flow 7
Byte array
iuup.rfci.27.flow.7.len RFCI 27 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.27.ipti RFCI 27 IPTI
Unsigned 8-bit integer
iuup.rfci.27.li RFCI 27 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.27.lri RFCI 27 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.28 RFCI 28
Unsigned 8-bit integer
iuup.rfci.28.flow.0 RFCI 28 Flow 0
Byte array
iuup.rfci.28.flow.0.len RFCI 28 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.28.flow.1 RFCI 28 Flow 1
Byte array
iuup.rfci.28.flow.1.len RFCI 28 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.28.flow.2 RFCI 28 Flow 2
Byte array
iuup.rfci.28.flow.2.len RFCI 28 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.28.flow.3 RFCI 28 Flow 3
Byte array
iuup.rfci.28.flow.3.len RFCI 28 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.28.flow.4 RFCI 28 Flow 4
Byte array
iuup.rfci.28.flow.4.len RFCI 28 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.28.flow.5 RFCI 28 Flow 5
Byte array
iuup.rfci.28.flow.5.len RFCI 28 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.28.flow.6 RFCI 28 Flow 6
Byte array
iuup.rfci.28.flow.6.len RFCI 28 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.28.flow.7 RFCI 28 Flow 7
Byte array
iuup.rfci.28.flow.7.len RFCI 28 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.28.ipti RFCI 28 IPTI
Unsigned 8-bit integer
iuup.rfci.28.li RFCI 28 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.28.lri RFCI 28 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.29 RFCI 29
Unsigned 8-bit integer
iuup.rfci.29.flow.0 RFCI 29 Flow 0
Byte array
iuup.rfci.29.flow.0.len RFCI 29 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.29.flow.1 RFCI 29 Flow 1
Byte array
iuup.rfci.29.flow.1.len RFCI 29 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.29.flow.2 RFCI 29 Flow 2
Byte array
iuup.rfci.29.flow.2.len RFCI 29 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.29.flow.3 RFCI 29 Flow 3
Byte array
iuup.rfci.29.flow.3.len RFCI 29 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.29.flow.4 RFCI 29 Flow 4
Byte array
iuup.rfci.29.flow.4.len RFCI 29 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.29.flow.5 RFCI 29 Flow 5
Byte array
iuup.rfci.29.flow.5.len RFCI 29 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.29.flow.6 RFCI 29 Flow 6
Byte array
iuup.rfci.29.flow.6.len RFCI 29 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.29.flow.7 RFCI 29 Flow 7
Byte array
iuup.rfci.29.flow.7.len RFCI 29 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.29.ipti RFCI 29 IPTI
Unsigned 8-bit integer
iuup.rfci.29.li RFCI 29 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.29.lri RFCI 29 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.3 RFCI 3
Unsigned 8-bit integer
iuup.rfci.3.flow.0 RFCI 3 Flow 0
Byte array
iuup.rfci.3.flow.0.len RFCI 3 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.3.flow.1 RFCI 3 Flow 1
Byte array
iuup.rfci.3.flow.1.len RFCI 3 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.3.flow.2 RFCI 3 Flow 2
Byte array
iuup.rfci.3.flow.2.len RFCI 3 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.3.flow.3 RFCI 3 Flow 3
Byte array
iuup.rfci.3.flow.3.len RFCI 3 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.3.flow.4 RFCI 3 Flow 4
Byte array
iuup.rfci.3.flow.4.len RFCI 3 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.3.flow.5 RFCI 3 Flow 5
Byte array
iuup.rfci.3.flow.5.len RFCI 3 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.3.flow.6 RFCI 3 Flow 6
Byte array
iuup.rfci.3.flow.6.len RFCI 3 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.3.flow.7 RFCI 3 Flow 7
Byte array
iuup.rfci.3.flow.7.len RFCI 3 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.3.ipti RFCI 3 IPTI
Unsigned 8-bit integer
iuup.rfci.3.li RFCI 3 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.3.lri RFCI 3 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.30 RFCI 30
Unsigned 8-bit integer
iuup.rfci.30.flow.0 RFCI 30 Flow 0
Byte array
iuup.rfci.30.flow.0.len RFCI 30 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.30.flow.1 RFCI 30 Flow 1
Byte array
iuup.rfci.30.flow.1.len RFCI 30 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.30.flow.2 RFCI 30 Flow 2
Byte array
iuup.rfci.30.flow.2.len RFCI 30 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.30.flow.3 RFCI 30 Flow 3
Byte array
iuup.rfci.30.flow.3.len RFCI 30 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.30.flow.4 RFCI 30 Flow 4
Byte array
iuup.rfci.30.flow.4.len RFCI 30 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.30.flow.5 RFCI 30 Flow 5
Byte array
iuup.rfci.30.flow.5.len RFCI 30 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.30.flow.6 RFCI 30 Flow 6
Byte array
iuup.rfci.30.flow.6.len RFCI 30 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.30.flow.7 RFCI 30 Flow 7
Byte array
iuup.rfci.30.flow.7.len RFCI 30 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.30.ipti RFCI 30 IPTI
Unsigned 8-bit integer
iuup.rfci.30.li RFCI 30 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.30.lri RFCI 30 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.31 RFCI 31
Unsigned 8-bit integer
iuup.rfci.31.flow.0 RFCI 31 Flow 0
Byte array
iuup.rfci.31.flow.0.len RFCI 31 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.31.flow.1 RFCI 31 Flow 1
Byte array
iuup.rfci.31.flow.1.len RFCI 31 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.31.flow.2 RFCI 31 Flow 2
Byte array
iuup.rfci.31.flow.2.len RFCI 31 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.31.flow.3 RFCI 31 Flow 3
Byte array
iuup.rfci.31.flow.3.len RFCI 31 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.31.flow.4 RFCI 31 Flow 4
Byte array
iuup.rfci.31.flow.4.len RFCI 31 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.31.flow.5 RFCI 31 Flow 5
Byte array
iuup.rfci.31.flow.5.len RFCI 31 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.31.flow.6 RFCI 31 Flow 6
Byte array
iuup.rfci.31.flow.6.len RFCI 31 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.31.flow.7 RFCI 31 Flow 7
Byte array
iuup.rfci.31.flow.7.len RFCI 31 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.31.ipti RFCI 31 IPTI
Unsigned 8-bit integer
iuup.rfci.31.li RFCI 31 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.31.lri RFCI 31 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.32 RFCI 32
Unsigned 8-bit integer
iuup.rfci.32.flow.0 RFCI 32 Flow 0
Byte array
iuup.rfci.32.flow.0.len RFCI 32 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.32.flow.1 RFCI 32 Flow 1
Byte array
iuup.rfci.32.flow.1.len RFCI 32 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.32.flow.2 RFCI 32 Flow 2
Byte array
iuup.rfci.32.flow.2.len RFCI 32 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.32.flow.3 RFCI 32 Flow 3
Byte array
iuup.rfci.32.flow.3.len RFCI 32 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.32.flow.4 RFCI 32 Flow 4
Byte array
iuup.rfci.32.flow.4.len RFCI 32 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.32.flow.5 RFCI 32 Flow 5
Byte array
iuup.rfci.32.flow.5.len RFCI 32 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.32.flow.6 RFCI 32 Flow 6
Byte array
iuup.rfci.32.flow.6.len RFCI 32 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.32.flow.7 RFCI 32 Flow 7
Byte array
iuup.rfci.32.flow.7.len RFCI 32 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.32.ipti RFCI 32 IPTI
Unsigned 8-bit integer
iuup.rfci.32.li RFCI 32 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.32.lri RFCI 32 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.33 RFCI 33
Unsigned 8-bit integer
iuup.rfci.33.flow.0 RFCI 33 Flow 0
Byte array
iuup.rfci.33.flow.0.len RFCI 33 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.33.flow.1 RFCI 33 Flow 1
Byte array
iuup.rfci.33.flow.1.len RFCI 33 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.33.flow.2 RFCI 33 Flow 2
Byte array
iuup.rfci.33.flow.2.len RFCI 33 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.33.flow.3 RFCI 33 Flow 3
Byte array
iuup.rfci.33.flow.3.len RFCI 33 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.33.flow.4 RFCI 33 Flow 4
Byte array
iuup.rfci.33.flow.4.len RFCI 33 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.33.flow.5 RFCI 33 Flow 5
Byte array
iuup.rfci.33.flow.5.len RFCI 33 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.33.flow.6 RFCI 33 Flow 6
Byte array
iuup.rfci.33.flow.6.len RFCI 33 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.33.flow.7 RFCI 33 Flow 7
Byte array
iuup.rfci.33.flow.7.len RFCI 33 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.33.ipti RFCI 33 IPTI
Unsigned 8-bit integer
iuup.rfci.33.li RFCI 33 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.33.lri RFCI 33 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.34 RFCI 34
Unsigned 8-bit integer
iuup.rfci.34.flow.0 RFCI 34 Flow 0
Byte array
iuup.rfci.34.flow.0.len RFCI 34 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.34.flow.1 RFCI 34 Flow 1
Byte array
iuup.rfci.34.flow.1.len RFCI 34 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.34.flow.2 RFCI 34 Flow 2
Byte array
iuup.rfci.34.flow.2.len RFCI 34 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.34.flow.3 RFCI 34 Flow 3
Byte array
iuup.rfci.34.flow.3.len RFCI 34 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.34.flow.4 RFCI 34 Flow 4
Byte array
iuup.rfci.34.flow.4.len RFCI 34 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.34.flow.5 RFCI 34 Flow 5
Byte array
iuup.rfci.34.flow.5.len RFCI 34 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.34.flow.6 RFCI 34 Flow 6
Byte array
iuup.rfci.34.flow.6.len RFCI 34 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.34.flow.7 RFCI 34 Flow 7
Byte array
iuup.rfci.34.flow.7.len RFCI 34 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.34.ipti RFCI 34 IPTI
Unsigned 8-bit integer
iuup.rfci.34.li RFCI 34 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.34.lri RFCI 34 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.35 RFCI 35
Unsigned 8-bit integer
iuup.rfci.35.flow.0 RFCI 35 Flow 0
Byte array
iuup.rfci.35.flow.0.len RFCI 35 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.35.flow.1 RFCI 35 Flow 1
Byte array
iuup.rfci.35.flow.1.len RFCI 35 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.35.flow.2 RFCI 35 Flow 2
Byte array
iuup.rfci.35.flow.2.len RFCI 35 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.35.flow.3 RFCI 35 Flow 3
Byte array
iuup.rfci.35.flow.3.len RFCI 35 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.35.flow.4 RFCI 35 Flow 4
Byte array
iuup.rfci.35.flow.4.len RFCI 35 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.35.flow.5 RFCI 35 Flow 5
Byte array
iuup.rfci.35.flow.5.len RFCI 35 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.35.flow.6 RFCI 35 Flow 6
Byte array
iuup.rfci.35.flow.6.len RFCI 35 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.35.flow.7 RFCI 35 Flow 7
Byte array
iuup.rfci.35.flow.7.len RFCI 35 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.35.ipti RFCI 35 IPTI
Unsigned 8-bit integer
iuup.rfci.35.li RFCI 35 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.35.lri RFCI 35 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.36 RFCI 36
Unsigned 8-bit integer
iuup.rfci.36.flow.0 RFCI 36 Flow 0
Byte array
iuup.rfci.36.flow.0.len RFCI 36 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.36.flow.1 RFCI 36 Flow 1
Byte array
iuup.rfci.36.flow.1.len RFCI 36 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.36.flow.2 RFCI 36 Flow 2
Byte array
iuup.rfci.36.flow.2.len RFCI 36 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.36.flow.3 RFCI 36 Flow 3
Byte array
iuup.rfci.36.flow.3.len RFCI 36 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.36.flow.4 RFCI 36 Flow 4
Byte array
iuup.rfci.36.flow.4.len RFCI 36 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.36.flow.5 RFCI 36 Flow 5
Byte array
iuup.rfci.36.flow.5.len RFCI 36 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.36.flow.6 RFCI 36 Flow 6
Byte array
iuup.rfci.36.flow.6.len RFCI 36 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.36.flow.7 RFCI 36 Flow 7
Byte array
iuup.rfci.36.flow.7.len RFCI 36 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.36.ipti RFCI 36 IPTI
Unsigned 8-bit integer
iuup.rfci.36.li RFCI 36 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.36.lri RFCI 36 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.37 RFCI 37
Unsigned 8-bit integer
iuup.rfci.37.flow.0 RFCI 37 Flow 0
Byte array
iuup.rfci.37.flow.0.len RFCI 37 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.37.flow.1 RFCI 37 Flow 1
Byte array
iuup.rfci.37.flow.1.len RFCI 37 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.37.flow.2 RFCI 37 Flow 2
Byte array
iuup.rfci.37.flow.2.len RFCI 37 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.37.flow.3 RFCI 37 Flow 3
Byte array
iuup.rfci.37.flow.3.len RFCI 37 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.37.flow.4 RFCI 37 Flow 4
Byte array
iuup.rfci.37.flow.4.len RFCI 37 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.37.flow.5 RFCI 37 Flow 5
Byte array
iuup.rfci.37.flow.5.len RFCI 37 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.37.flow.6 RFCI 37 Flow 6
Byte array
iuup.rfci.37.flow.6.len RFCI 37 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.37.flow.7 RFCI 37 Flow 7
Byte array
iuup.rfci.37.flow.7.len RFCI 37 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.37.ipti RFCI 37 IPTI
Unsigned 8-bit integer
iuup.rfci.37.li RFCI 37 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.37.lri RFCI 37 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.38 RFCI 38
Unsigned 8-bit integer
iuup.rfci.38.flow.0 RFCI 38 Flow 0
Byte array
iuup.rfci.38.flow.0.len RFCI 38 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.38.flow.1 RFCI 38 Flow 1
Byte array
iuup.rfci.38.flow.1.len RFCI 38 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.38.flow.2 RFCI 38 Flow 2
Byte array
iuup.rfci.38.flow.2.len RFCI 38 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.38.flow.3 RFCI 38 Flow 3
Byte array
iuup.rfci.38.flow.3.len RFCI 38 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.38.flow.4 RFCI 38 Flow 4
Byte array
iuup.rfci.38.flow.4.len RFCI 38 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.38.flow.5 RFCI 38 Flow 5
Byte array
iuup.rfci.38.flow.5.len RFCI 38 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.38.flow.6 RFCI 38 Flow 6
Byte array
iuup.rfci.38.flow.6.len RFCI 38 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.38.flow.7 RFCI 38 Flow 7
Byte array
iuup.rfci.38.flow.7.len RFCI 38 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.38.ipti RFCI 38 IPTI
Unsigned 8-bit integer
iuup.rfci.38.li RFCI 38 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.38.lri RFCI 38 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.39 RFCI 39
Unsigned 8-bit integer
iuup.rfci.39.flow.0 RFCI 39 Flow 0
Byte array
iuup.rfci.39.flow.0.len RFCI 39 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.39.flow.1 RFCI 39 Flow 1
Byte array
iuup.rfci.39.flow.1.len RFCI 39 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.39.flow.2 RFCI 39 Flow 2
Byte array
iuup.rfci.39.flow.2.len RFCI 39 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.39.flow.3 RFCI 39 Flow 3
Byte array
iuup.rfci.39.flow.3.len RFCI 39 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.39.flow.4 RFCI 39 Flow 4
Byte array
iuup.rfci.39.flow.4.len RFCI 39 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.39.flow.5 RFCI 39 Flow 5
Byte array
iuup.rfci.39.flow.5.len RFCI 39 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.39.flow.6 RFCI 39 Flow 6
Byte array
iuup.rfci.39.flow.6.len RFCI 39 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.39.flow.7 RFCI 39 Flow 7
Byte array
iuup.rfci.39.flow.7.len RFCI 39 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.39.ipti RFCI 39 IPTI
Unsigned 8-bit integer
iuup.rfci.39.li RFCI 39 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.39.lri RFCI 39 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.4 RFCI 4
Unsigned 8-bit integer
iuup.rfci.4.flow.0 RFCI 4 Flow 0
Byte array
iuup.rfci.4.flow.0.len RFCI 4 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.4.flow.1 RFCI 4 Flow 1
Byte array
iuup.rfci.4.flow.1.len RFCI 4 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.4.flow.2 RFCI 4 Flow 2
Byte array
iuup.rfci.4.flow.2.len RFCI 4 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.4.flow.3 RFCI 4 Flow 3
Byte array
iuup.rfci.4.flow.3.len RFCI 4 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.4.flow.4 RFCI 4 Flow 4
Byte array
iuup.rfci.4.flow.4.len RFCI 4 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.4.flow.5 RFCI 4 Flow 5
Byte array
iuup.rfci.4.flow.5.len RFCI 4 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.4.flow.6 RFCI 4 Flow 6
Byte array
iuup.rfci.4.flow.6.len RFCI 4 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.4.flow.7 RFCI 4 Flow 7
Byte array
iuup.rfci.4.flow.7.len RFCI 4 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.4.ipti RFCI 4 IPTI
Unsigned 8-bit integer
iuup.rfci.4.li RFCI 4 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.4.lri RFCI 4 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.40 RFCI 40
Unsigned 8-bit integer
iuup.rfci.40.flow.0 RFCI 40 Flow 0
Byte array
iuup.rfci.40.flow.0.len RFCI 40 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.40.flow.1 RFCI 40 Flow 1
Byte array
iuup.rfci.40.flow.1.len RFCI 40 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.40.flow.2 RFCI 40 Flow 2
Byte array
iuup.rfci.40.flow.2.len RFCI 40 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.40.flow.3 RFCI 40 Flow 3
Byte array
iuup.rfci.40.flow.3.len RFCI 40 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.40.flow.4 RFCI 40 Flow 4
Byte array
iuup.rfci.40.flow.4.len RFCI 40 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.40.flow.5 RFCI 40 Flow 5
Byte array
iuup.rfci.40.flow.5.len RFCI 40 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.40.flow.6 RFCI 40 Flow 6
Byte array
iuup.rfci.40.flow.6.len RFCI 40 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.40.flow.7 RFCI 40 Flow 7
Byte array
iuup.rfci.40.flow.7.len RFCI 40 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.40.ipti RFCI 40 IPTI
Unsigned 8-bit integer
iuup.rfci.40.li RFCI 40 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.40.lri RFCI 40 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.41 RFCI 41
Unsigned 8-bit integer
iuup.rfci.41.flow.0 RFCI 41 Flow 0
Byte array
iuup.rfci.41.flow.0.len RFCI 41 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.41.flow.1 RFCI 41 Flow 1
Byte array
iuup.rfci.41.flow.1.len RFCI 41 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.41.flow.2 RFCI 41 Flow 2
Byte array
iuup.rfci.41.flow.2.len RFCI 41 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.41.flow.3 RFCI 41 Flow 3
Byte array
iuup.rfci.41.flow.3.len RFCI 41 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.41.flow.4 RFCI 41 Flow 4
Byte array
iuup.rfci.41.flow.4.len RFCI 41 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.41.flow.5 RFCI 41 Flow 5
Byte array
iuup.rfci.41.flow.5.len RFCI 41 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.41.flow.6 RFCI 41 Flow 6
Byte array
iuup.rfci.41.flow.6.len RFCI 41 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.41.flow.7 RFCI 41 Flow 7
Byte array
iuup.rfci.41.flow.7.len RFCI 41 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.41.ipti RFCI 41 IPTI
Unsigned 8-bit integer
iuup.rfci.41.li RFCI 41 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.41.lri RFCI 41 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.42 RFCI 42
Unsigned 8-bit integer
iuup.rfci.42.flow.0 RFCI 42 Flow 0
Byte array
iuup.rfci.42.flow.0.len RFCI 42 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.42.flow.1 RFCI 42 Flow 1
Byte array
iuup.rfci.42.flow.1.len RFCI 42 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.42.flow.2 RFCI 42 Flow 2
Byte array
iuup.rfci.42.flow.2.len RFCI 42 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.42.flow.3 RFCI 42 Flow 3
Byte array
iuup.rfci.42.flow.3.len RFCI 42 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.42.flow.4 RFCI 42 Flow 4
Byte array
iuup.rfci.42.flow.4.len RFCI 42 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.42.flow.5 RFCI 42 Flow 5
Byte array
iuup.rfci.42.flow.5.len RFCI 42 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.42.flow.6 RFCI 42 Flow 6
Byte array
iuup.rfci.42.flow.6.len RFCI 42 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.42.flow.7 RFCI 42 Flow 7
Byte array
iuup.rfci.42.flow.7.len RFCI 42 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.42.ipti RFCI 42 IPTI
Unsigned 8-bit integer
iuup.rfci.42.li RFCI 42 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.42.lri RFCI 42 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.43 RFCI 43
Unsigned 8-bit integer
iuup.rfci.43.flow.0 RFCI 43 Flow 0
Byte array
iuup.rfci.43.flow.0.len RFCI 43 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.43.flow.1 RFCI 43 Flow 1
Byte array
iuup.rfci.43.flow.1.len RFCI 43 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.43.flow.2 RFCI 43 Flow 2
Byte array
iuup.rfci.43.flow.2.len RFCI 43 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.43.flow.3 RFCI 43 Flow 3
Byte array
iuup.rfci.43.flow.3.len RFCI 43 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.43.flow.4 RFCI 43 Flow 4
Byte array
iuup.rfci.43.flow.4.len RFCI 43 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.43.flow.5 RFCI 43 Flow 5
Byte array
iuup.rfci.43.flow.5.len RFCI 43 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.43.flow.6 RFCI 43 Flow 6
Byte array
iuup.rfci.43.flow.6.len RFCI 43 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.43.flow.7 RFCI 43 Flow 7
Byte array
iuup.rfci.43.flow.7.len RFCI 43 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.43.ipti RFCI 43 IPTI
Unsigned 8-bit integer
iuup.rfci.43.li RFCI 43 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.43.lri RFCI 43 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.44 RFCI 44
Unsigned 8-bit integer
iuup.rfci.44.flow.0 RFCI 44 Flow 0
Byte array
iuup.rfci.44.flow.0.len RFCI 44 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.44.flow.1 RFCI 44 Flow 1
Byte array
iuup.rfci.44.flow.1.len RFCI 44 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.44.flow.2 RFCI 44 Flow 2
Byte array
iuup.rfci.44.flow.2.len RFCI 44 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.44.flow.3 RFCI 44 Flow 3
Byte array
iuup.rfci.44.flow.3.len RFCI 44 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.44.flow.4 RFCI 44 Flow 4
Byte array
iuup.rfci.44.flow.4.len RFCI 44 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.44.flow.5 RFCI 44 Flow 5
Byte array
iuup.rfci.44.flow.5.len RFCI 44 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.44.flow.6 RFCI 44 Flow 6
Byte array
iuup.rfci.44.flow.6.len RFCI 44 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.44.flow.7 RFCI 44 Flow 7
Byte array
iuup.rfci.44.flow.7.len RFCI 44 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.44.ipti RFCI 44 IPTI
Unsigned 8-bit integer
iuup.rfci.44.li RFCI 44 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.44.lri RFCI 44 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.45 RFCI 45
Unsigned 8-bit integer
iuup.rfci.45.flow.0 RFCI 45 Flow 0
Byte array
iuup.rfci.45.flow.0.len RFCI 45 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.45.flow.1 RFCI 45 Flow 1
Byte array
iuup.rfci.45.flow.1.len RFCI 45 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.45.flow.2 RFCI 45 Flow 2
Byte array
iuup.rfci.45.flow.2.len RFCI 45 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.45.flow.3 RFCI 45 Flow 3
Byte array
iuup.rfci.45.flow.3.len RFCI 45 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.45.flow.4 RFCI 45 Flow 4
Byte array
iuup.rfci.45.flow.4.len RFCI 45 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.45.flow.5 RFCI 45 Flow 5
Byte array
iuup.rfci.45.flow.5.len RFCI 45 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.45.flow.6 RFCI 45 Flow 6
Byte array
iuup.rfci.45.flow.6.len RFCI 45 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.45.flow.7 RFCI 45 Flow 7
Byte array
iuup.rfci.45.flow.7.len RFCI 45 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.45.ipti RFCI 45 IPTI
Unsigned 8-bit integer
iuup.rfci.45.li RFCI 45 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.45.lri RFCI 45 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.46 RFCI 46
Unsigned 8-bit integer
iuup.rfci.46.flow.0 RFCI 46 Flow 0
Byte array
iuup.rfci.46.flow.0.len RFCI 46 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.46.flow.1 RFCI 46 Flow 1
Byte array
iuup.rfci.46.flow.1.len RFCI 46 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.46.flow.2 RFCI 46 Flow 2
Byte array
iuup.rfci.46.flow.2.len RFCI 46 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.46.flow.3 RFCI 46 Flow 3
Byte array
iuup.rfci.46.flow.3.len RFCI 46 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.46.flow.4 RFCI 46 Flow 4
Byte array
iuup.rfci.46.flow.4.len RFCI 46 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.46.flow.5 RFCI 46 Flow 5
Byte array
iuup.rfci.46.flow.5.len RFCI 46 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.46.flow.6 RFCI 46 Flow 6
Byte array
iuup.rfci.46.flow.6.len RFCI 46 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.46.flow.7 RFCI 46 Flow 7
Byte array
iuup.rfci.46.flow.7.len RFCI 46 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.46.ipti RFCI 46 IPTI
Unsigned 8-bit integer
iuup.rfci.46.li RFCI 46 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.46.lri RFCI 46 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.47 RFCI 47
Unsigned 8-bit integer
iuup.rfci.47.flow.0 RFCI 47 Flow 0
Byte array
iuup.rfci.47.flow.0.len RFCI 47 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.47.flow.1 RFCI 47 Flow 1
Byte array
iuup.rfci.47.flow.1.len RFCI 47 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.47.flow.2 RFCI 47 Flow 2
Byte array
iuup.rfci.47.flow.2.len RFCI 47 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.47.flow.3 RFCI 47 Flow 3
Byte array
iuup.rfci.47.flow.3.len RFCI 47 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.47.flow.4 RFCI 47 Flow 4
Byte array
iuup.rfci.47.flow.4.len RFCI 47 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.47.flow.5 RFCI 47 Flow 5
Byte array
iuup.rfci.47.flow.5.len RFCI 47 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.47.flow.6 RFCI 47 Flow 6
Byte array
iuup.rfci.47.flow.6.len RFCI 47 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.47.flow.7 RFCI 47 Flow 7
Byte array
iuup.rfci.47.flow.7.len RFCI 47 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.47.ipti RFCI 47 IPTI
Unsigned 8-bit integer
iuup.rfci.47.li RFCI 47 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.47.lri RFCI 47 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.48 RFCI 48
Unsigned 8-bit integer
iuup.rfci.48.flow.0 RFCI 48 Flow 0
Byte array
iuup.rfci.48.flow.0.len RFCI 48 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.48.flow.1 RFCI 48 Flow 1
Byte array
iuup.rfci.48.flow.1.len RFCI 48 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.48.flow.2 RFCI 48 Flow 2
Byte array
iuup.rfci.48.flow.2.len RFCI 48 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.48.flow.3 RFCI 48 Flow 3
Byte array
iuup.rfci.48.flow.3.len RFCI 48 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.48.flow.4 RFCI 48 Flow 4
Byte array
iuup.rfci.48.flow.4.len RFCI 48 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.48.flow.5 RFCI 48 Flow 5
Byte array
iuup.rfci.48.flow.5.len RFCI 48 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.48.flow.6 RFCI 48 Flow 6
Byte array
iuup.rfci.48.flow.6.len RFCI 48 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.48.flow.7 RFCI 48 Flow 7
Byte array
iuup.rfci.48.flow.7.len RFCI 48 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.48.ipti RFCI 48 IPTI
Unsigned 8-bit integer
iuup.rfci.48.li RFCI 48 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.48.lri RFCI 48 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.49 RFCI 49
Unsigned 8-bit integer
iuup.rfci.49.flow.0 RFCI 49 Flow 0
Byte array
iuup.rfci.49.flow.0.len RFCI 49 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.49.flow.1 RFCI 49 Flow 1
Byte array
iuup.rfci.49.flow.1.len RFCI 49 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.49.flow.2 RFCI 49 Flow 2
Byte array
iuup.rfci.49.flow.2.len RFCI 49 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.49.flow.3 RFCI 49 Flow 3
Byte array
iuup.rfci.49.flow.3.len RFCI 49 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.49.flow.4 RFCI 49 Flow 4
Byte array
iuup.rfci.49.flow.4.len RFCI 49 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.49.flow.5 RFCI 49 Flow 5
Byte array
iuup.rfci.49.flow.5.len RFCI 49 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.49.flow.6 RFCI 49 Flow 6
Byte array
iuup.rfci.49.flow.6.len RFCI 49 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.49.flow.7 RFCI 49 Flow 7
Byte array
iuup.rfci.49.flow.7.len RFCI 49 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.49.ipti RFCI 49 IPTI
Unsigned 8-bit integer
iuup.rfci.49.li RFCI 49 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.49.lri RFCI 49 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.5 RFCI 5
Unsigned 8-bit integer
iuup.rfci.5.flow.0 RFCI 5 Flow 0
Byte array
iuup.rfci.5.flow.0.len RFCI 5 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.5.flow.1 RFCI 5 Flow 1
Byte array
iuup.rfci.5.flow.1.len RFCI 5 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.5.flow.2 RFCI 5 Flow 2
Byte array
iuup.rfci.5.flow.2.len RFCI 5 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.5.flow.3 RFCI 5 Flow 3
Byte array
iuup.rfci.5.flow.3.len RFCI 5 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.5.flow.4 RFCI 5 Flow 4
Byte array
iuup.rfci.5.flow.4.len RFCI 5 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.5.flow.5 RFCI 5 Flow 5
Byte array
iuup.rfci.5.flow.5.len RFCI 5 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.5.flow.6 RFCI 5 Flow 6
Byte array
iuup.rfci.5.flow.6.len RFCI 5 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.5.flow.7 RFCI 5 Flow 7
Byte array
iuup.rfci.5.flow.7.len RFCI 5 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.5.ipti RFCI 5 IPTI
Unsigned 8-bit integer
iuup.rfci.5.li RFCI 5 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.5.lri RFCI 5 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.50 RFCI 50
Unsigned 8-bit integer
iuup.rfci.50.flow.0 RFCI 50 Flow 0
Byte array
iuup.rfci.50.flow.0.len RFCI 50 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.50.flow.1 RFCI 50 Flow 1
Byte array
iuup.rfci.50.flow.1.len RFCI 50 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.50.flow.2 RFCI 50 Flow 2
Byte array
iuup.rfci.50.flow.2.len RFCI 50 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.50.flow.3 RFCI 50 Flow 3
Byte array
iuup.rfci.50.flow.3.len RFCI 50 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.50.flow.4 RFCI 50 Flow 4
Byte array
iuup.rfci.50.flow.4.len RFCI 50 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.50.flow.5 RFCI 50 Flow 5
Byte array
iuup.rfci.50.flow.5.len RFCI 50 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.50.flow.6 RFCI 50 Flow 6
Byte array
iuup.rfci.50.flow.6.len RFCI 50 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.50.flow.7 RFCI 50 Flow 7
Byte array
iuup.rfci.50.flow.7.len RFCI 50 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.50.ipti RFCI 50 IPTI
Unsigned 8-bit integer
iuup.rfci.50.li RFCI 50 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.50.lri RFCI 50 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.51 RFCI 51
Unsigned 8-bit integer
iuup.rfci.51.flow.0 RFCI 51 Flow 0
Byte array
iuup.rfci.51.flow.0.len RFCI 51 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.51.flow.1 RFCI 51 Flow 1
Byte array
iuup.rfci.51.flow.1.len RFCI 51 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.51.flow.2 RFCI 51 Flow 2
Byte array
iuup.rfci.51.flow.2.len RFCI 51 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.51.flow.3 RFCI 51 Flow 3
Byte array
iuup.rfci.51.flow.3.len RFCI 51 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.51.flow.4 RFCI 51 Flow 4
Byte array
iuup.rfci.51.flow.4.len RFCI 51 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.51.flow.5 RFCI 51 Flow 5
Byte array
iuup.rfci.51.flow.5.len RFCI 51 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.51.flow.6 RFCI 51 Flow 6
Byte array
iuup.rfci.51.flow.6.len RFCI 51 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.51.flow.7 RFCI 51 Flow 7
Byte array
iuup.rfci.51.flow.7.len RFCI 51 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.51.ipti RFCI 51 IPTI
Unsigned 8-bit integer
iuup.rfci.51.li RFCI 51 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.51.lri RFCI 51 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.52 RFCI 52
Unsigned 8-bit integer
iuup.rfci.52.flow.0 RFCI 52 Flow 0
Byte array
iuup.rfci.52.flow.0.len RFCI 52 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.52.flow.1 RFCI 52 Flow 1
Byte array
iuup.rfci.52.flow.1.len RFCI 52 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.52.flow.2 RFCI 52 Flow 2
Byte array
iuup.rfci.52.flow.2.len RFCI 52 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.52.flow.3 RFCI 52 Flow 3
Byte array
iuup.rfci.52.flow.3.len RFCI 52 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.52.flow.4 RFCI 52 Flow 4
Byte array
iuup.rfci.52.flow.4.len RFCI 52 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.52.flow.5 RFCI 52 Flow 5
Byte array
iuup.rfci.52.flow.5.len RFCI 52 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.52.flow.6 RFCI 52 Flow 6
Byte array
iuup.rfci.52.flow.6.len RFCI 52 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.52.flow.7 RFCI 52 Flow 7
Byte array
iuup.rfci.52.flow.7.len RFCI 52 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.52.ipti RFCI 52 IPTI
Unsigned 8-bit integer
iuup.rfci.52.li RFCI 52 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.52.lri RFCI 52 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.53 RFCI 53
Unsigned 8-bit integer
iuup.rfci.53.flow.0 RFCI 53 Flow 0
Byte array
iuup.rfci.53.flow.0.len RFCI 53 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.53.flow.1 RFCI 53 Flow 1
Byte array
iuup.rfci.53.flow.1.len RFCI 53 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.53.flow.2 RFCI 53 Flow 2
Byte array
iuup.rfci.53.flow.2.len RFCI 53 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.53.flow.3 RFCI 53 Flow 3
Byte array
iuup.rfci.53.flow.3.len RFCI 53 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.53.flow.4 RFCI 53 Flow 4
Byte array
iuup.rfci.53.flow.4.len RFCI 53 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.53.flow.5 RFCI 53 Flow 5
Byte array
iuup.rfci.53.flow.5.len RFCI 53 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.53.flow.6 RFCI 53 Flow 6
Byte array
iuup.rfci.53.flow.6.len RFCI 53 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.53.flow.7 RFCI 53 Flow 7
Byte array
iuup.rfci.53.flow.7.len RFCI 53 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.53.ipti RFCI 53 IPTI
Unsigned 8-bit integer
iuup.rfci.53.li RFCI 53 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.53.lri RFCI 53 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.54 RFCI 54
Unsigned 8-bit integer
iuup.rfci.54.flow.0 RFCI 54 Flow 0
Byte array
iuup.rfci.54.flow.0.len RFCI 54 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.54.flow.1 RFCI 54 Flow 1
Byte array
iuup.rfci.54.flow.1.len RFCI 54 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.54.flow.2 RFCI 54 Flow 2
Byte array
iuup.rfci.54.flow.2.len RFCI 54 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.54.flow.3 RFCI 54 Flow 3
Byte array
iuup.rfci.54.flow.3.len RFCI 54 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.54.flow.4 RFCI 54 Flow 4
Byte array
iuup.rfci.54.flow.4.len RFCI 54 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.54.flow.5 RFCI 54 Flow 5
Byte array
iuup.rfci.54.flow.5.len RFCI 54 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.54.flow.6 RFCI 54 Flow 6
Byte array
iuup.rfci.54.flow.6.len RFCI 54 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.54.flow.7 RFCI 54 Flow 7
Byte array
iuup.rfci.54.flow.7.len RFCI 54 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.54.ipti RFCI 54 IPTI
Unsigned 8-bit integer
iuup.rfci.54.li RFCI 54 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.54.lri RFCI 54 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.55 RFCI 55
Unsigned 8-bit integer
iuup.rfci.55.flow.0 RFCI 55 Flow 0
Byte array
iuup.rfci.55.flow.0.len RFCI 55 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.55.flow.1 RFCI 55 Flow 1
Byte array
iuup.rfci.55.flow.1.len RFCI 55 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.55.flow.2 RFCI 55 Flow 2
Byte array
iuup.rfci.55.flow.2.len RFCI 55 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.55.flow.3 RFCI 55 Flow 3
Byte array
iuup.rfci.55.flow.3.len RFCI 55 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.55.flow.4 RFCI 55 Flow 4
Byte array
iuup.rfci.55.flow.4.len RFCI 55 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.55.flow.5 RFCI 55 Flow 5
Byte array
iuup.rfci.55.flow.5.len RFCI 55 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.55.flow.6 RFCI 55 Flow 6
Byte array
iuup.rfci.55.flow.6.len RFCI 55 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.55.flow.7 RFCI 55 Flow 7
Byte array
iuup.rfci.55.flow.7.len RFCI 55 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.55.ipti RFCI 55 IPTI
Unsigned 8-bit integer
iuup.rfci.55.li RFCI 55 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.55.lri RFCI 55 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.56 RFCI 56
Unsigned 8-bit integer
iuup.rfci.56.flow.0 RFCI 56 Flow 0
Byte array
iuup.rfci.56.flow.0.len RFCI 56 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.56.flow.1 RFCI 56 Flow 1
Byte array
iuup.rfci.56.flow.1.len RFCI 56 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.56.flow.2 RFCI 56 Flow 2
Byte array
iuup.rfci.56.flow.2.len RFCI 56 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.56.flow.3 RFCI 56 Flow 3
Byte array
iuup.rfci.56.flow.3.len RFCI 56 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.56.flow.4 RFCI 56 Flow 4
Byte array
iuup.rfci.56.flow.4.len RFCI 56 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.56.flow.5 RFCI 56 Flow 5
Byte array
iuup.rfci.56.flow.5.len RFCI 56 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.56.flow.6 RFCI 56 Flow 6
Byte array
iuup.rfci.56.flow.6.len RFCI 56 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.56.flow.7 RFCI 56 Flow 7
Byte array
iuup.rfci.56.flow.7.len RFCI 56 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.56.ipti RFCI 56 IPTI
Unsigned 8-bit integer
iuup.rfci.56.li RFCI 56 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.56.lri RFCI 56 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.57 RFCI 57
Unsigned 8-bit integer
iuup.rfci.57.flow.0 RFCI 57 Flow 0
Byte array
iuup.rfci.57.flow.0.len RFCI 57 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.57.flow.1 RFCI 57 Flow 1
Byte array
iuup.rfci.57.flow.1.len RFCI 57 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.57.flow.2 RFCI 57 Flow 2
Byte array
iuup.rfci.57.flow.2.len RFCI 57 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.57.flow.3 RFCI 57 Flow 3
Byte array
iuup.rfci.57.flow.3.len RFCI 57 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.57.flow.4 RFCI 57 Flow 4
Byte array
iuup.rfci.57.flow.4.len RFCI 57 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.57.flow.5 RFCI 57 Flow 5
Byte array
iuup.rfci.57.flow.5.len RFCI 57 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.57.flow.6 RFCI 57 Flow 6
Byte array
iuup.rfci.57.flow.6.len RFCI 57 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.57.flow.7 RFCI 57 Flow 7
Byte array
iuup.rfci.57.flow.7.len RFCI 57 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.57.ipti RFCI 57 IPTI
Unsigned 8-bit integer
iuup.rfci.57.li RFCI 57 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.57.lri RFCI 57 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.58 RFCI 58
Unsigned 8-bit integer
iuup.rfci.58.flow.0 RFCI 58 Flow 0
Byte array
iuup.rfci.58.flow.0.len RFCI 58 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.58.flow.1 RFCI 58 Flow 1
Byte array
iuup.rfci.58.flow.1.len RFCI 58 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.58.flow.2 RFCI 58 Flow 2
Byte array
iuup.rfci.58.flow.2.len RFCI 58 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.58.flow.3 RFCI 58 Flow 3
Byte array
iuup.rfci.58.flow.3.len RFCI 58 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.58.flow.4 RFCI 58 Flow 4
Byte array
iuup.rfci.58.flow.4.len RFCI 58 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.58.flow.5 RFCI 58 Flow 5
Byte array
iuup.rfci.58.flow.5.len RFCI 58 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.58.flow.6 RFCI 58 Flow 6
Byte array
iuup.rfci.58.flow.6.len RFCI 58 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.58.flow.7 RFCI 58 Flow 7
Byte array
iuup.rfci.58.flow.7.len RFCI 58 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.58.ipti RFCI 58 IPTI
Unsigned 8-bit integer
iuup.rfci.58.li RFCI 58 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.58.lri RFCI 58 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.59 RFCI 59
Unsigned 8-bit integer
iuup.rfci.59.flow.0 RFCI 59 Flow 0
Byte array
iuup.rfci.59.flow.0.len RFCI 59 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.59.flow.1 RFCI 59 Flow 1
Byte array
iuup.rfci.59.flow.1.len RFCI 59 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.59.flow.2 RFCI 59 Flow 2
Byte array
iuup.rfci.59.flow.2.len RFCI 59 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.59.flow.3 RFCI 59 Flow 3
Byte array
iuup.rfci.59.flow.3.len RFCI 59 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.59.flow.4 RFCI 59 Flow 4
Byte array
iuup.rfci.59.flow.4.len RFCI 59 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.59.flow.5 RFCI 59 Flow 5
Byte array
iuup.rfci.59.flow.5.len RFCI 59 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.59.flow.6 RFCI 59 Flow 6
Byte array
iuup.rfci.59.flow.6.len RFCI 59 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.59.flow.7 RFCI 59 Flow 7
Byte array
iuup.rfci.59.flow.7.len RFCI 59 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.59.ipti RFCI 59 IPTI
Unsigned 8-bit integer
iuup.rfci.59.li RFCI 59 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.59.lri RFCI 59 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.6 RFCI 6
Unsigned 8-bit integer
iuup.rfci.6.flow.0 RFCI 6 Flow 0
Byte array
iuup.rfci.6.flow.0.len RFCI 6 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.6.flow.1 RFCI 6 Flow 1
Byte array
iuup.rfci.6.flow.1.len RFCI 6 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.6.flow.2 RFCI 6 Flow 2
Byte array
iuup.rfci.6.flow.2.len RFCI 6 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.6.flow.3 RFCI 6 Flow 3
Byte array
iuup.rfci.6.flow.3.len RFCI 6 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.6.flow.4 RFCI 6 Flow 4
Byte array
iuup.rfci.6.flow.4.len RFCI 6 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.6.flow.5 RFCI 6 Flow 5
Byte array
iuup.rfci.6.flow.5.len RFCI 6 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.6.flow.6 RFCI 6 Flow 6
Byte array
iuup.rfci.6.flow.6.len RFCI 6 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.6.flow.7 RFCI 6 Flow 7
Byte array
iuup.rfci.6.flow.7.len RFCI 6 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.6.ipti RFCI 6 IPTI
Unsigned 8-bit integer
iuup.rfci.6.li RFCI 6 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.6.lri RFCI 6 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.60 RFCI 60
Unsigned 8-bit integer
iuup.rfci.60.flow.0 RFCI 60 Flow 0
Byte array
iuup.rfci.60.flow.0.len RFCI 60 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.60.flow.1 RFCI 60 Flow 1
Byte array
iuup.rfci.60.flow.1.len RFCI 60 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.60.flow.2 RFCI 60 Flow 2
Byte array
iuup.rfci.60.flow.2.len RFCI 60 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.60.flow.3 RFCI 60 Flow 3
Byte array
iuup.rfci.60.flow.3.len RFCI 60 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.60.flow.4 RFCI 60 Flow 4
Byte array
iuup.rfci.60.flow.4.len RFCI 60 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.60.flow.5 RFCI 60 Flow 5
Byte array
iuup.rfci.60.flow.5.len RFCI 60 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.60.flow.6 RFCI 60 Flow 6
Byte array
iuup.rfci.60.flow.6.len RFCI 60 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.60.flow.7 RFCI 60 Flow 7
Byte array
iuup.rfci.60.flow.7.len RFCI 60 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.60.ipti RFCI 60 IPTI
Unsigned 8-bit integer
iuup.rfci.60.li RFCI 60 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.60.lri RFCI 60 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.61 RFCI 61
Unsigned 8-bit integer
iuup.rfci.61.flow.0 RFCI 61 Flow 0
Byte array
iuup.rfci.61.flow.0.len RFCI 61 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.61.flow.1 RFCI 61 Flow 1
Byte array
iuup.rfci.61.flow.1.len RFCI 61 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.61.flow.2 RFCI 61 Flow 2
Byte array
iuup.rfci.61.flow.2.len RFCI 61 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.61.flow.3 RFCI 61 Flow 3
Byte array
iuup.rfci.61.flow.3.len RFCI 61 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.61.flow.4 RFCI 61 Flow 4
Byte array
iuup.rfci.61.flow.4.len RFCI 61 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.61.flow.5 RFCI 61 Flow 5
Byte array
iuup.rfci.61.flow.5.len RFCI 61 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.61.flow.6 RFCI 61 Flow 6
Byte array
iuup.rfci.61.flow.6.len RFCI 61 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.61.flow.7 RFCI 61 Flow 7
Byte array
iuup.rfci.61.flow.7.len RFCI 61 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.61.ipti RFCI 61 IPTI
Unsigned 8-bit integer
iuup.rfci.61.li RFCI 61 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.61.lri RFCI 61 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.62 RFCI 62
Unsigned 8-bit integer
iuup.rfci.62.flow.0 RFCI 62 Flow 0
Byte array
iuup.rfci.62.flow.0.len RFCI 62 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.62.flow.1 RFCI 62 Flow 1
Byte array
iuup.rfci.62.flow.1.len RFCI 62 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.62.flow.2 RFCI 62 Flow 2
Byte array
iuup.rfci.62.flow.2.len RFCI 62 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.62.flow.3 RFCI 62 Flow 3
Byte array
iuup.rfci.62.flow.3.len RFCI 62 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.62.flow.4 RFCI 62 Flow 4
Byte array
iuup.rfci.62.flow.4.len RFCI 62 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.62.flow.5 RFCI 62 Flow 5
Byte array
iuup.rfci.62.flow.5.len RFCI 62 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.62.flow.6 RFCI 62 Flow 6
Byte array
iuup.rfci.62.flow.6.len RFCI 62 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.62.flow.7 RFCI 62 Flow 7
Byte array
iuup.rfci.62.flow.7.len RFCI 62 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.62.ipti RFCI 62 IPTI
Unsigned 8-bit integer
iuup.rfci.62.li RFCI 62 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.62.lri RFCI 62 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.63 RFCI 63
Unsigned 8-bit integer
iuup.rfci.63.flow.0 RFCI 63 Flow 0
Byte array
iuup.rfci.63.flow.0.len RFCI 63 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.63.flow.1 RFCI 63 Flow 1
Byte array
iuup.rfci.63.flow.1.len RFCI 63 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.63.flow.2 RFCI 63 Flow 2
Byte array
iuup.rfci.63.flow.2.len RFCI 63 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.63.flow.3 RFCI 63 Flow 3
Byte array
iuup.rfci.63.flow.3.len RFCI 63 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.63.flow.4 RFCI 63 Flow 4
Byte array
iuup.rfci.63.flow.4.len RFCI 63 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.63.flow.5 RFCI 63 Flow 5
Byte array
iuup.rfci.63.flow.5.len RFCI 63 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.63.flow.6 RFCI 63 Flow 6
Byte array
iuup.rfci.63.flow.6.len RFCI 63 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.63.flow.7 RFCI 63 Flow 7
Byte array
iuup.rfci.63.flow.7.len RFCI 63 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.63.ipti RFCI 63 IPTI
Unsigned 8-bit integer
iuup.rfci.63.li RFCI 63 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.63.lri RFCI 63 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.7 RFCI 7
Unsigned 8-bit integer
iuup.rfci.7.flow.0 RFCI 7 Flow 0
Byte array
iuup.rfci.7.flow.0.len RFCI 7 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.7.flow.1 RFCI 7 Flow 1
Byte array
iuup.rfci.7.flow.1.len RFCI 7 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.7.flow.2 RFCI 7 Flow 2
Byte array
iuup.rfci.7.flow.2.len RFCI 7 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.7.flow.3 RFCI 7 Flow 3
Byte array
iuup.rfci.7.flow.3.len RFCI 7 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.7.flow.4 RFCI 7 Flow 4
Byte array
iuup.rfci.7.flow.4.len RFCI 7 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.7.flow.5 RFCI 7 Flow 5
Byte array
iuup.rfci.7.flow.5.len RFCI 7 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.7.flow.6 RFCI 7 Flow 6
Byte array
iuup.rfci.7.flow.6.len RFCI 7 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.7.flow.7 RFCI 7 Flow 7
Byte array
iuup.rfci.7.flow.7.len RFCI 7 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.7.ipti RFCI 7 IPTI
Unsigned 8-bit integer
iuup.rfci.7.li RFCI 7 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.7.lri RFCI 7 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.8 RFCI 8
Unsigned 8-bit integer
iuup.rfci.8.flow.0 RFCI 8 Flow 0
Byte array
iuup.rfci.8.flow.0.len RFCI 8 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.8.flow.1 RFCI 8 Flow 1
Byte array
iuup.rfci.8.flow.1.len RFCI 8 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.8.flow.2 RFCI 8 Flow 2
Byte array
iuup.rfci.8.flow.2.len RFCI 8 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.8.flow.3 RFCI 8 Flow 3
Byte array
iuup.rfci.8.flow.3.len RFCI 8 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.8.flow.4 RFCI 8 Flow 4
Byte array
iuup.rfci.8.flow.4.len RFCI 8 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.8.flow.5 RFCI 8 Flow 5
Byte array
iuup.rfci.8.flow.5.len RFCI 8 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.8.flow.6 RFCI 8 Flow 6
Byte array
iuup.rfci.8.flow.6.len RFCI 8 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.8.flow.7 RFCI 8 Flow 7
Byte array
iuup.rfci.8.flow.7.len RFCI 8 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.8.ipti RFCI 8 IPTI
Unsigned 8-bit integer
iuup.rfci.8.li RFCI 8 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.8.lri RFCI 8 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.9 RFCI 9
Unsigned 8-bit integer
iuup.rfci.9.flow.0 RFCI 9 Flow 0
Byte array
iuup.rfci.9.flow.0.len RFCI 9 Flow 0 Len
Unsigned 16-bit integer
iuup.rfci.9.flow.1 RFCI 9 Flow 1
Byte array
iuup.rfci.9.flow.1.len RFCI 9 Flow 1 Len
Unsigned 16-bit integer
iuup.rfci.9.flow.2 RFCI 9 Flow 2
Byte array
iuup.rfci.9.flow.2.len RFCI 9 Flow 2 Len
Unsigned 16-bit integer
iuup.rfci.9.flow.3 RFCI 9 Flow 3
Byte array
iuup.rfci.9.flow.3.len RFCI 9 Flow 3 Len
Unsigned 16-bit integer
iuup.rfci.9.flow.4 RFCI 9 Flow 4
Byte array
iuup.rfci.9.flow.4.len RFCI 9 Flow 4 Len
Unsigned 16-bit integer
iuup.rfci.9.flow.5 RFCI 9 Flow 5
Byte array
iuup.rfci.9.flow.5.len RFCI 9 Flow 5 Len
Unsigned 16-bit integer
iuup.rfci.9.flow.6 RFCI 9 Flow 6
Byte array
iuup.rfci.9.flow.6.len RFCI 9 Flow 6 Len
Unsigned 16-bit integer
iuup.rfci.9.flow.7 RFCI 9 Flow 7
Byte array
iuup.rfci.9.flow.7.len RFCI 9 Flow 7 Len
Unsigned 16-bit integer
iuup.rfci.9.ipti RFCI 9 IPTI
Unsigned 8-bit integer
iuup.rfci.9.li RFCI 9 LI
Unsigned 8-bit integer
Length Indicator
iuup.rfci.9.lri RFCI 9 LRI
Unsigned 8-bit integer
Last Record Indicator
iuup.rfci.init RFCI Initialization
Byte array
iuup.spare Spare
Unsigned 8-bit integer
iuup.subflows Subflows
Unsigned 8-bit integer
Number of Subflows
iuup.support_mode Iu UP Mode Versions Supported
Unsigned 16-bit integer
iuup.support_mode.version1 Version 1
Unsigned 16-bit integer
iuup.support_mode.version10 Version 10
Unsigned 16-bit integer
iuup.support_mode.version11 Version 11
Unsigned 16-bit integer
iuup.support_mode.version12 Version 12
Unsigned 16-bit integer
iuup.support_mode.version13 Version 13
Unsigned 16-bit integer
iuup.support_mode.version14 Version 14
Unsigned 16-bit integer
iuup.support_mode.version15 Version 15
Unsigned 16-bit integer
iuup.support_mode.version16 Version 16
Unsigned 16-bit integer
iuup.support_mode.version2 Version 2
Unsigned 16-bit integer
iuup.support_mode.version3 Version 3
Unsigned 16-bit integer
iuup.support_mode.version4 Version 4
Unsigned 16-bit integer
iuup.support_mode.version5 Version 5
Unsigned 16-bit integer
iuup.support_mode.version6 Version 6
Unsigned 16-bit integer
iuup.support_mode.version7 Version 7
Unsigned 16-bit integer
iuup.support_mode.version8 Version 8
Unsigned 16-bit integer
iuup.support_mode.version9 Version 9
Unsigned 16-bit integer
iuup.ti TI
Unsigned 8-bit integer
Timing Information
iuup.time_align Time Align
Unsigned 8-bit integer
image-jfif.RGB RGB values of thumbnail pixels
Byte array
RGB values of the thumbnail pixels (24 bit per pixel, Xthumbnail x Ythumbnail pixels)
image-jfif.Xdensity Xdensity
Unsigned 16-bit integer
Horizontal pixel density
image-jfif.Xthumbnail Xthumbnail
Unsigned 16-bit integer
Thumbnail horizontal pixel count
image-jfif.Ydensity Ydensity
Unsigned 16-bit integer
Vertical pixel density
image-jfif.Ythumbnail Ythumbnail
Unsigned 16-bit integer
Thumbnail vertical pixel count
image-jfif.extension.code Extension code
Unsigned 8-bit integer
JFXX extension code for thumbnail encoding
image-jfif.header.sos Start of Segment header
No value
Start of Segment header
image-jfif.identifier Identifier
String
Identifier of the segment
image-jfif.length Length
Unsigned 16-bit integer
Length of segment (including length field)
image-jfif.marker Marker
Unsigned 8-bit integer
JFIF Marker
image-jfif.sof Start of Frame header
No value
Start of Frame header
image-jfif.sof.c_i Component identifier
Unsigned 8-bit integer
Assigns a unique label to the ith component in the sequence of frame component specification parameters.
image-jfif.sof.h_i Horizontal sampling factor
Unsigned 8-bit integer
Specifies the relationship between the component horizontal dimension and maximum image dimension X.
image-jfif.sof.lines Lines
Unsigned 16-bit integer
Specifies the maximum number of lines in the source image.
image-jfif.sof.nf Number of image components in frame
Unsigned 8-bit integer
Specifies the number of source image components in the frame.
image-jfif.sof.precision Sample Precision (bits)
Unsigned 8-bit integer
Specifies the precision in bits for the samples of the components in the frame.
image-jfif.sof.samples_per_line Samples per line
Unsigned 16-bit integer
Specifies the maximum number of samples per line in the source image.
image-jfif.sof.tq_i Quantization table destination selector
Unsigned 8-bit integer
Specifies one of four possible quantization table destinations from which the quantization table to use for dequantization of DCT coefficients of component Ci is retrieved.
image-jfif.sof.v_i Vertical sampling factor
Unsigned 8-bit integer
Specifies the relationship between the component vertical dimension and maximum image dimension Y.
image-jfif.sos.ac_entropy_selector AC entropy coding table destination selector
Unsigned 8-bit integer
Specifies one of four possible AC entropy coding table destinations from which the entropy table needed for decoding of the AC coefficients of component Csj is retrieved.
image-jfif.sos.ah Successive approximation bit position high
Unsigned 8-bit integer
This parameter specifies the point transform used in the preceding scan (i.e. successive approximation bit position low in the preceding scan) for the band of coefficients specified by Ss and Se. This parameter shall be set to zero for the first scan of each band of coefficients. In the lossless mode of operations this parameter has no meaning. It shall be set to zero.
image-jfif.sos.al Successive approximation bit position low or point transform
Unsigned 8-bit integer
In the DCT modes of operation this parameter specifies the point transform, i.e. bit position low, used before coding the band of coefficients specified by Ss and Se. This parameter shall be set to zero for the sequential DCT processes. In the lossless mode of operations, this parameter specifies the point transform, Pt.
image-jfif.sos.component_selector Scan component selector
Unsigned 8-bit integer
Selects which of the Nf image components specified in the frame parameters shall be the jth component in the scan.
image-jfif.sos.dc_entropy_selector DC entropy coding table destination selector
Unsigned 8-bit integer
Specifies one of four possible DC entropy coding table destinations from which the entropy table needed for decoding of the DC coefficients of component Csj is retrieved.
image-jfif.sos.ns Number of image components in scan
Unsigned 8-bit integer
Specifies the number of source image components in the scan.
image-jfif.sos.se End of spectral selection
Unsigned 8-bit integer
Specifies the last DCT coefficient in each block in zig-zag order which shall be coded in the scan. This parameter shall be set to 63 for the sequential DCT processes. In the lossless mode of operations this parameter has no meaning. It shall be set to zero.
image-jfif.sos.ss Start of spectral or predictor selection
Unsigned 8-bit integer
In the DCT modes of operation, this parameter specifies the first DCT coefficient in each block in zig-zag order which shall be coded in the scan. This parameter shall be set to zero for the sequential DCT processes. In the lossless mode of operations this parameter is used to select the predictor.
image-jfif.units Units
Unsigned 8-bit integer
Units used in this segment
image-jfif.version Version
No value
JFIF Version
image-jfif.version.major Major Version
Unsigned 8-bit integer
JFIF Major Version
image-jfif.version.minor Minor Version
Unsigned 8-bit integer
JFIF Minor Version
image-jfifmarker_segment Marker segment
No value
Marker segment
jxta.framing Framing
No value
JXTA Message Framing
jxta.framing.header Header
No value
JXTA Message Framing Header
jxta.framing.header.name Name
String
JXTA Message Framing Header Name
jxta.framing.header.value Value
Byte array
JXTA Message Framing Header Value
jxta.framing.header.valuelen Value Length
Unsigned 16-bit integer
JXTA Message Framing Header Value Length
jxta.message.address Address
String
JXTA Message Address (source or destination)
jxta.message.destination Destination
String
JXTA Message Destination
jxta.message.element JXTA Message Element
No value
JXTA Message Element
jxta.message.element.content Element Content
Byte array
JXTA Message Element Content
jxta.message.element.content.length Element Content Length
Unsigned 32-bit integer
JXTA Message Element Content Length
jxta.message.element.encoding Element Type
String
JXTA Message Element Encoding
jxta.message.element.encodingid Encoding ID
Unsigned 16-bit integer
JXTA Message Element Encoding ID
jxta.message.element.flags Flags
Unsigned 8-bit integer
JXTA Message Element Flags
jxta.message.element.flags.hasEncoding hasEncoding
Boolean
JXTA Message Element Flag -- hasEncoding
jxta.message.element.flags.hasSignature hasSignature
Boolean
JXTA Message Element Flag -- hasSignature
jxta.message.element.flags.hasType hasType
Boolean
JXTA Message Element Flag -- hasType
jxta.message.element.flags.nameLiteral nameLiteral
Boolean
JXTA Message Element Flag -- nameLiteral
jxta.message.element.flags.sigOfEncoded sigOfEncoded
Boolean
JXTA Message Element Flag -- sigOfEncoded
jxta.message.element.flags.uint64Lens uint64Lens
Boolean
JXTA Message Element Flag -- uint64Lens
jxta.message.element.mimeid MIME ID
Unsigned 16-bit integer
JXTA Message Element MIME ID
jxta.message.element.name Element Name
String
JXTA Message Element Name
jxta.message.element.nameid Name ID
Unsigned 16-bit integer
JXTA Message Element Name ID
jxta.message.element.namespaceid Namespace ID
Unsigned 8-bit integer
JXTA Message Element Namespace ID
jxta.message.element.signature Signature
String
JXTA Message Element Signature
jxta.message.element.type Element Type
String
JXTA Message Element Name
jxta.message.elements Element Count
Unsigned 16-bit integer
JXTA Message Element Count
jxta.message.flags Flags
Unsigned 8-bit integer
JXTA Message Flags
jxta.message.flags.UCS32BE UCS32BE
Boolean
JXTA Message Flag -- UCS32-BE Strings
jxta.message.flags.UTF-16BE UTF16BE
Boolean
JXTA Message Element Flag -- UTF16-BE Strings
jxta.message.names Names Count
Unsigned 16-bit integer
JXTA Message Names Table
jxta.message.names.name Names Table Name
String
JXTA Message Names Table Name
jxta.message.signature Signature
String
JXTA Message Signature
jxta.message.source Source
String
JXTA Message Source
jxta.message.version Version
Unsigned 8-bit integer
JXTA Message Version
jxta.udp JXTA UDP
No value
JXTA UDP
jxta.udpsig Signature
String
JXTA UDP Signature
jxta.welcome Welcome
No value
JXTA Connection Welcome Message
jxta.welcome.destAddr Destination Address
String
JXTA Connection Welcome Message Destination Address
jxta.welcome.initiator Initiator
Boolean
JXTA Connection Welcome Message Initiator
jxta.welcome.msgVersion Preferred Message Version
String
JXTA Connection Welcome Message Preferred Message Version
jxta.welcome.noPropFlag No Propagate Flag
String
JXTA Connection Welcome Message No Propagate Flag
jxta.welcome.peerid PeerID
String
JXTA Connection Welcome Message PeerID
jxta.welcome.pubAddr Public Address
String
JXTA Connection Welcome Message Public Address
jxta.welcome.signature Signature
String
JXTA Connection Welcome Message Signature
jxta.welcome.variable Variable Parameter
String
JXTA Connection Welcome Message Variable Parameter
jxta.welcome.version Version
String
JXTA Connection Welcome Message Version
uri.addr Address
String
URI Address (source or destination)
uri.dst Destination
String
URI Destination
uri.src Source
String
URI Source
jabber.request Request
Boolean
TRUE if Jabber request
jabber.response Response
Boolean
TRUE if Jabber response
rmi.endpoint_id.hostname Hostname
String
RMI Endpointidentifier Hostname
rmi.endpoint_id.length Length
Unsigned 16-bit integer
RMI Endpointidentifier Length
rmi.endpoint_id.port Port
Unsigned 16-bit integer
RMI Endpointindentifier Port
rmi.inputstream.message Input Stream Message
Unsigned 8-bit integer
RMI Inputstream Message Token
rmi.magic Magic
Unsigned 32-bit integer
RMI Header Magic
rmi.outputstream.message Output Stream Message
Unsigned 8-bit integer
RMI Outputstream Message token
rmi.protocol Protocol
Unsigned 8-bit integer
RMI Protocol Type
rmi.ser.magic Magic
Unsigned 16-bit integer
Java Serialization Magic
rmi.ser.version Version
Unsigned 16-bit integer
Java Serialization Version
rmi.version Version
Unsigned 16-bit integer
RMI Protocol Version
juniper.aspic.cookie Cookie
Unsigned 64-bit integer
juniper.atm1.cookie Cookie
Unsigned 32-bit integer
juniper.atm2.cookie Cookie
Unsigned 64-bit integer
juniper.direction Direction
Unsigned 8-bit integer
juniper.ext.ifd Device Interface Index
Unsigned 32-bit integer
juniper.ext.ifl Logical Interface Index
Unsigned 32-bit integer
juniper.ext.ifle Logical Interface Encapsulation
Unsigned 16-bit integer
juniper.ext.ifmt Device Media Type
Unsigned 16-bit integer
juniper.ext.ttp_ifle TTP derived Logical Interface Encapsulation
Unsigned 16-bit integer
juniper.ext.ttp_ifmt TTP derived Device Media Type
Unsigned 16-bit integer
juniper.ext.unit Logical Unit Number
Unsigned 32-bit integer
juniper.ext_total_len Extension(s) Total length
Unsigned 16-bit integer
juniper.l2hdr L2 header presence
Unsigned 8-bit integer
juniper.lspic.cookie Cookie
Unsigned 32-bit integer
juniper.magic-number Magic Number
Unsigned 24-bit integer
juniper.mlpic.cookie Cookie
Unsigned 16-bit integer
juniper.proto Protocol
Unsigned 16-bit integer
juniper.vlan VLan ID
Unsigned 16-bit integer
nsrp.authchecksum Checksum
Unsigned 16-bit integer
NSRP AUTH CHECKSUM
nsrp.authflag AuthFlag
Unsigned 8-bit integer
NSRP Auth Flag
nsrp.checksum Checksum
Unsigned 16-bit integer
NSRP PACKET CHECKSUM
nsrp.clustid Clust ID
Unsigned 8-bit integer
NSRP CLUST ID
nsrp.data Data
String
PADING
nsrp.dst Destination
Unsigned 32-bit integer
DESTINATION UNIT INFORMATION
nsrp.dummy Dummy
Unsigned 8-bit integer
NSRP Dummy
nsrp.encflag Enc Flag
Unsigned 8-bit integer
NSRP ENCRYPT FLAG
nsrp.flag Flag
Unsigned 8-bit integer
NSRP FLAG
nsrp.haport Port
Unsigned 8-bit integer
NSRP HA Port
nsrp.hst Hst group
Unsigned 8-bit integer
NSRP HST GROUP
nsrp.ifnum Ifnum
Unsigned 16-bit integer
NSRP IfNum
nsrp.length Length
Unsigned 16-bit integer
NSRP Length
nsrp.msgflag Msgflag
Unsigned 8-bit integer
NSRP MSG FLAG
nsrp.msglen Msg Length
Unsigned 16-bit integer
NSRP MESSAGE LENGTH
nsrp.msgtype MsgType
Unsigned 8-bit integer
Message Type
nsrp.notused Not used
Unsigned 8-bit integer
NOT USED
nsrp.nr Nr
Unsigned 16-bit integer
Nr
nsrp.ns Ns
Unsigned 16-bit integer
Ns
nsrp.priority Priority
Unsigned 8-bit integer
NSRP Priority
nsrp.reserved Reserved
Unsigned 16-bit integer
RESERVED
nsrp.src Source
Unsigned 32-bit integer
SOURCE UNIT INFORMATION
nsrp.totalsize Total Size
Unsigned 32-bit integer
NSRP MSG TOTAL MESSAGE
nsrp.type Type
Unsigned 8-bit integer
NSRP Message Type
nsrp.version Version
Unsigned 8-bit integer
NSRP Version
nsrp.wst Wst group
Unsigned 8-bit integer
NSRP WST GROUP
aal2.cid AAL2 CID
Unsigned 16-bit integer
k12.ds0.ts Timeslot mask
Unsigned 32-bit integer
k12.input_type Port type
Unsigned 32-bit integer
k12.port_id Port Id
Unsigned 32-bit integer
k12.port_name Port Name
String
k12.stack_file Stack file used
String
kink.A A
Unsigned 8-bit integer
the A of kink
kink.checkSum Checksum
Byte array
the checkSum of kink
kink.checkSumLength Checksum Length
Unsigned 8-bit integer
the check sum length of kink
kink.length Length
Unsigned 16-bit integer
the length of the kink length
kink.nextPayload Next Payload
Unsigned 8-bit integer
the next payload of kink
kink.reserved Reserved
Unsigned 16-bit integer
the reserved of kink
kink.transactionId Transaction ID
Unsigned 32-bit integer
the transactionID of kink
kink.type Type
Unsigned 8-bit integer
the type of the kink
kerberos.Authenticator Authenticator
No value
This is a decrypted Kerberos Authenticator sequence
kerberos.AuthorizationData AuthorizationData
No value
This is a Kerberos AuthorizationData sequence
kerberos.Checksum Checksum
No value
This is a Kerberos Checksum sequence
kerberos.ENC_PRIV enc PRIV
Byte array
Encrypted PRIV blob
kerberos.EncAPRepPart EncAPRepPart
No value
This is a decrypted Kerberos EncAPRepPart sequence
kerberos.EncKDCRepPart EncKDCRepPart
No value
This is a decrypted Kerberos EncKDCRepPart sequence
kerberos.EncKrbCredPart EncKrbCredPart
No value
This is a decrypted Kerberos EncKrbCredPart sequence
kerberos.EncKrbCredPart.encrypted enc EncKrbCredPart
Byte array
Encrypted EncKrbCredPart blob
kerberos.EncKrbPrivPart EncKrbPrivPart
No value
This is a decrypted Kerberos EncKrbPrivPart sequence
kerberos.EncTicketPart EncTicketPart
No value
This is a decrypted Kerberos EncTicketPart sequence
kerberos.IF_RELEVANT.type Type
Unsigned 32-bit integer
IF-RELEVANT Data Type
kerberos.IF_RELEVANT.value Data
Byte array
IF_RELEVANT Data
kerberos.KrbCredInfo KrbCredInfo
No value
This is a Kerberos KrbCredInfo
kerberos.KrbCredInfos Sequence of KrbCredInfo
No value
This is a list of KrbCredInfo
kerberos.LastReq LastReq
No value
This is a LastReq sequence
kerberos.LastReqs LastReqs
No value
This is a list of LastReq structures
kerberos.PAC_CLIENT_INFO_TYPE PAC_CLIENT_INFO_TYPE
Byte array
PAC_CLIENT_INFO_TYPE structure
kerberos.PAC_CONSTRAINED_DELEGATION PAC_CONSTRAINED_DELEGATION
Byte array
PAC_CONSTRAINED_DELEGATION structure
kerberos.PAC_CREDENTIAL_TYPE PAC_CREDENTIAL_TYPE
Byte array
PAC_CREDENTIAL_TYPE structure
kerberos.PAC_LOGON_INFO PAC_LOGON_INFO
Byte array
PAC_LOGON_INFO structure
kerberos.PAC_PRIVSVR_CHECKSUM PAC_PRIVSVR_CHECKSUM
Byte array
PAC_PRIVSVR_CHECKSUM structure
kerberos.PAC_SERVER_CHECKSUM PAC_SERVER_CHECKSUM
Byte array
PAC_SERVER_CHECKSUM structure
kerberos.PA_ENC_TIMESTAMP.encrypted enc PA_ENC_TIMESTAMP
Byte array
Encrypted PA-ENC-TIMESTAMP blob
kerberos.PRIV_BODY.user_data User Data
Byte array
PRIV BODY userdata field
kerberos.SAFE_BODY.timestamp Timestamp
String
Timestamp of this SAFE_BODY
kerberos.SAFE_BODY.usec usec
Unsigned 32-bit integer
micro second component of SAFE_BODY time
kerberos.SAFE_BODY.user_data User Data
Byte array
SAFE BODY userdata field
kerberos.TransitedEncoding TransitedEncoding
No value
This is a Kerberos TransitedEncoding sequence
kerberos.addr_ip IP Address
IPv4 address
IP Address
kerberos.addr_nb NetBIOS Address
String
NetBIOS Address and type
kerberos.addr_type Addr-type
Unsigned 32-bit integer
Address Type
kerberos.adtype Type
Unsigned 32-bit integer
Authorization Data Type
kerberos.advalue Data
Byte array
Authentication Data
kerberos.apoptions APOptions
Byte array
Kerberos APOptions bitstring
kerberos.apoptions.mutual_required Mutual required
Boolean
kerberos.apoptions.use_session_key Use Session Key
Boolean
kerberos.aprep.data enc-part
Byte array
The encrypted part of AP-REP
kerberos.aprep.enc_part enc-part
No value
The structure holding the encrypted part of AP-REP
kerberos.authenticator Authenticator
No value
Encrypted authenticator blob
kerberos.authenticator.data Authenticator data
Byte array
Data content of an encrypted authenticator
kerberos.authenticator_vno Authenticator vno
Unsigned 32-bit integer
Version Number for the Authenticator
kerberos.authtime Authtime
String
Time of initial authentication
kerberos.checksum.checksum checksum
Byte array
Kerberos Checksum
kerberos.checksum.type Type
Unsigned 32-bit integer
Type of checksum
kerberos.cname Client Name
No value
The name part of the client principal identifier
kerberos.crealm Client Realm
String
Name of the Clients Kerberos Realm
kerberos.cred_body CRED_BODY
No value
Kerberos CREDential BODY
kerberos.ctime ctime
String
Current Time on the client host
kerberos.cusec cusec
Unsigned 32-bit integer
micro second component of client time
kerberos.e_checksum e-checksum
No value
This is a Kerberos e-checksum
kerberos.e_data e-data
No value
The e-data blob
kerberos.e_text e-text
String
Additional (human readable) error description
kerberos.enc_priv Encrypted PRIV
No value
Kerberos Encrypted PRIVate blob data
kerberos.encrypted_cred EncKrbCredPart
No value
Encrypted Cred blob
kerberos.endtime End time
String
The time after which the ticket has expired
kerberos.error_code error_code
Unsigned 32-bit integer
Kerberos error code
kerberos.etype Encryption type
Signed 32-bit integer
Encryption Type
kerberos.etype_info.s2kparams Salt
Byte array
S2kparams
kerberos.etype_info.salt Salt
Byte array
Salt
kerberos.etype_info2.salt Salt
Byte array
Salt
kerberos.etypes Encryption Types
No value
This is a list of Kerberos encryption types
kerberos.from from
String
From when the ticket is to be valid (postdating)
kerberos.gssapi.bdn Bnd
Byte array
GSSAPI Bnd field
kerberos.gssapi.checksum.flags.conf Conf
Boolean
kerberos.gssapi.checksum.flags.dce-style DCE-style
Boolean
kerberos.gssapi.checksum.flags.deleg Deleg
Boolean
kerberos.gssapi.checksum.flags.integ Integ
Boolean
kerberos.gssapi.checksum.flags.mutual Mutual
Boolean
kerberos.gssapi.checksum.flags.replay Replay
Boolean
kerberos.gssapi.checksum.flags.sequence Sequence
Boolean
kerberos.gssapi.dlglen DlgLen
Unsigned 16-bit integer
GSSAPI DlgLen
kerberos.gssapi.dlgopt DlgOpt
Unsigned 16-bit integer
GSSAPI DlgOpt
kerberos.gssapi.len Length
Unsigned 32-bit integer
Length of GSSAPI Bnd field
kerberos.hostaddress HostAddress
No value
This is a Kerberos HostAddress sequence
kerberos.hostaddresses HostAddresses
No value
This is a list of Kerberos HostAddress sequences
kerberos.if_relevant IF_RELEVANT
No value
This is a list of IF-RELEVANT sequences
kerberos.kdc_req_body KDC_REQ_BODY
No value
Kerberos KDC REQuest BODY
kerberos.kdcoptions KDCOptions
Byte array
Kerberos KDCOptions bitstring
kerberos.kdcoptions.allow_postdate Allow Postdate
Boolean
Flag controlling whether we allow postdated tickets or not
kerberos.kdcoptions.canonicalize Canonicalize
Boolean
Do we want the KDC to canonicalize the principal or not
kerberos.kdcoptions.constrained_delegation Constrained Delegation
Boolean
Do we want a PAC containing constrained delegation info or not
kerberos.kdcoptions.disable_transited_check Disable Transited Check
Boolean
Whether we should do transited checking or not
kerberos.kdcoptions.enc_tkt_in_skey Enc-Tkt-in-Skey
Boolean
Whether the ticket is encrypted in the skey or not
kerberos.kdcoptions.forwardable Forwardable
Boolean
Flag controlling whether the tickes are forwardable or not
kerberos.kdcoptions.forwarded Forwarded
Boolean
Has this ticket been forwarded?
kerberos.kdcoptions.opt_hardware_auth Opt HW Auth
Boolean
Opt HW Auth flag
kerberos.kdcoptions.postdated Postdated
Boolean
Whether this ticket is postdated or not
kerberos.kdcoptions.proxy Proxy
Boolean
Has this ticket been proxied?
kerberos.kdcoptions.proxyable Proxyable
Boolean
Flag controlling whether the tickes are proxyable or not
kerberos.kdcoptions.renew Renew
Boolean
Is this a request to renew a ticket?
kerberos.kdcoptions.renewable Renewable
Boolean
Whether this ticket is renewable or not
kerberos.kdcoptions.renewable_ok Renewable OK
Boolean
Whether we accept renewed tickets or not
kerberos.kdcoptions.validate Validate
Boolean
Is this a request to validate a postdated ticket?
kerberos.kdcrep.data enc-part
Byte array
The encrypted part of KDC-REP
kerberos.kdcrep.enc_part enc-part
No value
The structure holding the encrypted part of KDC-REP
kerberos.key key
No value
This is a Kerberos EncryptionKey sequence
kerberos.key_expiration Key Expiration
String
The time after which the key will expire
kerberos.keytype Key type
Unsigned 32-bit integer
Key Type
kerberos.keyvalue Key value
Byte array
Key value (encryption key)
kerberos.kvno Kvno
Unsigned 32-bit integer
Version Number for the encryption Key
kerberos.lr_time Lr-time
String
Time of LR-entry
kerberos.lr_type Lr-type
Unsigned 32-bit integer
Type of lastreq value
kerberos.midl.fill_bytes Fill bytes
Unsigned 32-bit integer
Just some fill bytes
kerberos.midl.hdr_len HDR Length
Unsigned 16-bit integer
Length of header
kerberos.midl.version Version
Unsigned 8-bit integer
Version of pickling
kerberos.midl_blob_len Blob Length
Unsigned 64-bit integer
Length of NDR encoded data that follows
kerberos.msg.type MSG Type
Unsigned 32-bit integer
Kerberos Message Type
kerberos.name_string Name
String
String component that is part of a PrincipalName
kerberos.name_type Name-type
Signed 32-bit integer
Type of principal name
kerberos.nonce Nonce
Unsigned 32-bit integer
Kerberos Nonce random number
kerberos.pac.clientid ClientID
Date/Time stamp
ClientID Timestamp
kerberos.pac.entries Num Entries
Unsigned 32-bit integer
Number of W2k PAC entries
kerberos.pac.name Name
String
Name of the Client in the PAC structure
kerberos.pac.namelen Name Length
Unsigned 16-bit integer
Length of client name
kerberos.pac.offset Offset
Unsigned 32-bit integer
Offset to W2k PAC entry
kerberos.pac.signature.signature Signature
Byte array
A PAC signature blob
kerberos.pac.signature.type Type
Signed 32-bit integer
PAC Signature Type
kerberos.pac.size Size
Unsigned 32-bit integer
Size of W2k PAC entry
kerberos.pac.type Type
Unsigned 32-bit integer
Type of W2k PAC entry
kerberos.pac.version Version
Unsigned 32-bit integer
Version of PAC structures
kerberos.pac_request.flag PAC Request
Unsigned 32-bit integer
This is a MS PAC Request Flag
kerberos.padata padata
No value
Sequence of preauthentication data
kerberos.padata.type Type
Unsigned 32-bit integer
Type of preauthentication data
kerberos.padata.value Value
Byte array
Content of the PADATA blob
kerberos.patimestamp patimestamp
String
Time of client
kerberos.pausec pausec
Unsigned 32-bit integer
Microsecond component of client time
kerberos.pname Delegated Principal Name
No value
Identity of the delegated principal
kerberos.prealm Delegated Principal Realm
String
Name of the Kerberos PRealm
kerberos.priv_body PRIV_BODY
No value
Kerberos PRIVate BODY
kerberos.provsrv_location PROVSRV Location
String
PacketCable PROV SRV Location
kerberos.pvno Pvno
Unsigned 32-bit integer
Kerberos Protocol Version Number
kerberos.r_address R-Address
No value
This is the Recipient address
kerberos.realm Realm
String
Name of the Kerberos Realm
kerberos.renenw_till Renew-till
String
The maximum time we can renew the ticket until
kerberos.rm.length Record Length
Unsigned 32-bit integer
Record length
kerberos.rm.reserved Reserved
Boolean
Record mark reserved bit
kerberos.rtime rtime
String
Renew Until timestamp
kerberos.s4u2self.auth S4U2Self Auth
String
S4U2Self authentication string
kerberos.s_address S-Address
No value
This is the Senders address
kerberos.seq_number Seq Number
Unsigned 32-bit integer
This is a Kerberos sequence number
kerberos.smb.nt_status NT Status
Unsigned 32-bit integer
NT Status code
kerberos.smb.unknown Unknown
Unsigned 32-bit integer
unknown
kerberos.sname Server Name
No value
This is the name part server's identity
kerberos.sq.tickets Tickets
No value
This is a list of Kerberos Tickets
kerberos.srealm SRealm
String
Name of the Kerberos SRealm
kerberos.starttime Start time
String
The time after which the ticket is valid
kerberos.stime stime
String
Current Time on the server host
kerberos.subkey Subkey
No value
This is a Kerberos subkey
kerberos.susec susec
Unsigned 32-bit integer
micro second component of server time
kerberos.ticket Ticket
No value
This is a Kerberos Ticket
kerberos.ticket.data enc-part
Byte array
The encrypted part of a ticket
kerberos.ticket.enc_part enc-part
No value
The structure holding the encrypted part of a ticket
kerberos.ticketflags Ticket Flags
No value
Kerberos Ticket Flags
kerberos.ticketflags.allow_postdate Allow Postdate
Boolean
Flag controlling whether we allow postdated tickets or not
kerberos.ticketflags.forwardable Forwardable
Boolean
Flag controlling whether the tickes are forwardable or not
kerberos.ticketflags.forwarded Forwarded
Boolean
Has this ticket been forwarded?
kerberos.ticketflags.hw_auth HW-Auth
Boolean
Whether this ticket is hardware-authenticated or not
kerberos.ticketflags.initial Initial
Boolean
Whether this ticket is an initial ticket or not
kerberos.ticketflags.invalid Invalid
Boolean
Whether this ticket is invalid or not
kerberos.ticketflags.ok_as_delegate Ok As Delegate
Boolean
Whether this ticket is Ok As Delegate or not
kerberos.ticketflags.postdated Postdated
Boolean
Whether this ticket is postdated or not
kerberos.ticketflags.pre_auth Pre-Auth
Boolean
Whether this ticket is pre-authenticated or not
kerberos.ticketflags.proxy Proxy
Boolean
Has this ticket been proxied?
kerberos.ticketflags.proxyable Proxyable
Boolean
Flag controlling whether the tickes are proxyable or not
kerberos.ticketflags.renewable Renewable
Boolean
Whether this ticket is renewable or not
kerberos.ticketflags.transited_policy_checked Transited Policy Checked
Boolean
Whether this ticket is transited policy checked or not
kerberos.till till
String
When the ticket will expire
kerberos.tkt_vno Tkt-vno
Unsigned 32-bit integer
Version number for the Ticket format
kerberos.transited.contents Contents
Byte array
Transitent Contents string
kerberos.transited.type Type
Unsigned 32-bit integer
Transited Type
kadm5.procedure_v2 V2 Procedure
Unsigned 32-bit integer
V2 Procedure
krb4.auth_msg_type Msg Type
Unsigned 8-bit integer
Message Type/Byte Order
krb4.byte_order Byte Order
Unsigned 8-bit integer
Byte Order
krb4.encrypted_blob Encrypted Blob
Byte array
Encrypted blob
krb4.exp_date Exp Date
Date/Time stamp
Exp Date
krb4.instance Instance
String
Instance
krb4.kvno Kvno
Unsigned 8-bit integer
Key Version No
krb4.length Length
Unsigned 32-bit integer
Length of encrypted blob
krb4.lifetime Lifetime
Unsigned 8-bit integer
Lifetime (in 5 min units)
krb4.m_type M Type
Unsigned 8-bit integer
Message Type
krb4.name Name
String
Name
krb4.realm Realm
String
Realm
krb4.req_date Req Date
Date/Time stamp
Req Date
krb4.request.blob Request Blob
Byte array
Request Blob
krb4.request.length Request Length
Unsigned 8-bit integer
Length of request
krb4.s_instance Service Instance
String
Service Instance
krb4.s_name Service Name
String
Service Name
krb4.ticket.blob Ticket Blob
Byte array
Ticket blob
krb4.ticket.length Ticket Length
Unsigned 8-bit integer
Length of ticket
krb4.time_sec Time Sec
Date/Time stamp
Time Sec
krb4.unknown_transarc_blob Unknown Transarc Blob
Byte array
Unknown blob only present in Transarc packets
krb4.version Version
Unsigned 8-bit integer
Kerberos(v4) version number
klm.block block
Boolean
Block
klm.exclusive exclusive
Boolean
Exclusive lock
klm.holder holder
No value
KLM lock holder
klm.len length
Unsigned 32-bit integer
Length of lock region
klm.lock lock
No value
KLM lock structure
klm.offset offset
Unsigned 32-bit integer
File offset
klm.pid pid
Unsigned 32-bit integer
ProcessID
klm.procedure_v1 V1 Procedure
Unsigned 32-bit integer
V1 Procedure
klm.servername server name
String
Server name
klm.stats stats
Unsigned 32-bit integer
stats
kingfisher.checksum Checksum
Unsigned 16-bit integer
kingfisher.from From RTU
Unsigned 16-bit integer
kingfisher.function Function Code
Unsigned 8-bit integer
kingfisher.length Length
Unsigned 8-bit integer
kingfisher.message Message Number
Unsigned 8-bit integer
kingfisher.system System Identifier
Unsigned 8-bit integer
kingfisher.target Target RTU
Unsigned 16-bit integer
kingfisher.version Version
Unsigned 8-bit integer
kingfisher.via Via RTU
Unsigned 16-bit integer
kismet.request Request
Boolean
TRUE if kismet request
kismet.response Response
Boolean
TRUE if kismet response
lge_monitor.dir Direction
Unsigned 32-bit integer
Direction
lge_monitor.length Payload Length
Unsigned 32-bit integer
Payload Length
lge_monitor.prot Protocol Identifier
Unsigned 32-bit integer
Protocol Identifier
lwapp.Length Length
Unsigned 16-bit integer
lwapp.apid AP Identity
6-byte Hardware (MAC) Address
Access Point Identity
lwapp.control Control Data (not dissected yet)
Byte array
lwapp.control.length Control Length
Unsigned 16-bit integer
lwapp.control.seqno Control Sequence Number
Unsigned 8-bit integer
lwapp.control.type Control Type
Unsigned 8-bit integer
lwapp.flags.fragment Fragment
Boolean
lwapp.flags.fragmentType Fragment Type
Boolean
lwapp.flags.type Type
Boolean
lwapp.fragmentId Fragment Id
Unsigned 8-bit integer
lwapp.rssi RSSI
Unsigned 8-bit integer
lwapp.slotId slotId
Unsigned 24-bit integer
lwapp.snr SNR
Unsigned 8-bit integer
lwapp.version Version
Unsigned 8-bit integer
ldp.hdr.ldpid.lsid Label Space ID
Unsigned 16-bit integer
LDP Label Space ID
ldp.hdr.ldpid.lsr LSR ID
IPv4 address
LDP Label Space Router ID
ldp.hdr.pdu_len PDU Length
Unsigned 16-bit integer
LDP PDU Length
ldp.hdr.version Version
Unsigned 16-bit integer
LDP Version Number
ldp.msg.experiment.id Experiment ID
Unsigned 32-bit integer
LDP Experimental Message ID
ldp.msg.id Message ID
Unsigned 32-bit integer
LDP Message ID
ldp.msg.len Message Length
Unsigned 16-bit integer
LDP Message Length (excluding message type and len)
ldp.msg.tlv.addrl.addr Address
String
Address
ldp.msg.tlv.addrl.addr_family Address Family
Unsigned 16-bit integer
Address Family List
ldp.msg.tlv.atm.label.vbits V-bits
Unsigned 8-bit integer
ATM Label V Bits
ldp.msg.tlv.atm.label.vci VCI
Unsigned 16-bit integer
ATM Label VCI
ldp.msg.tlv.atm.label.vpi VPI
Unsigned 16-bit integer
ATM Label VPI
ldp.msg.tlv.cbs CBS
Double-precision floating point
Committed Burst Size
ldp.msg.tlv.cdr CDR
Double-precision floating point
Committed Data Rate
ldp.msg.tlv.diffserv Diff-Serv TLV
No value
Diffserv TLV
ldp.msg.tlv.diffserv.map MAP
No value
MAP entry
ldp.msg.tlv.diffserv.map.exp EXP
Unsigned 8-bit integer
EXP bit code
ldp.msg.tlv.diffserv.mapnb MAPnb
Unsigned 8-bit integer
Number of MAP entries
ldp.msg.tlv.diffserv.phbid PHBID
No value
PHBID
ldp.msg.tlv.diffserv.phbid.bit14 Bit 14
Unsigned 16-bit integer
Bit 14
ldp.msg.tlv.diffserv.phbid.bit15 Bit 15
Unsigned 16-bit integer
Bit 15
ldp.msg.tlv.diffserv.phbid.code PHB id code
Unsigned 16-bit integer
PHB id code
ldp.msg.tlv.diffserv.phbid.dscp DSCP
Unsigned 16-bit integer
DSCP
ldp.msg.tlv.diffserv.type LSP Type
Unsigned 8-bit integer
LSP Type
ldp.msg.tlv.ebs EBS
Double-precision floating point
Excess Burst Size
ldp.msg.tlv.er_hop.as AS Number
Unsigned 16-bit integer
AS Number
ldp.msg.tlv.er_hop.locallspid Local CR-LSP ID
Unsigned 16-bit integer
Local CR-LSP ID
ldp.msg.tlv.er_hop.loose Loose route bit
Unsigned 24-bit integer
Loose route bit
ldp.msg.tlv.er_hop.lsrid Local CR-LSP ID
IPv4 address
Local CR-LSP ID
ldp.msg.tlv.er_hop.prefix4 IPv4 Address
IPv4 address
IPv4 Address
ldp.msg.tlv.er_hop.prefix6 IPv6 Address
IPv6 address
IPv6 Address
ldp.msg.tlv.er_hop.prefixlen Prefix length
Unsigned 8-bit integer
Prefix len
ldp.msg.tlv.experiment_id Experiment ID
Unsigned 32-bit integer
Experiment ID
ldp.msg.tlv.extstatus.data Extended Status Data
Unsigned 32-bit integer
Extended Status Data
ldp.msg.tlv.fec.af FEC Element Address Type
Unsigned 16-bit integer
Forwarding Equivalence Class Element Address Family
ldp.msg.tlv.fec.hoval FEC Element Host Address Value
String
Forwarding Equivalence Class Element Address
ldp.msg.tlv.fec.len FEC Element Length
Unsigned 8-bit integer
Forwarding Equivalence Class Element Length
ldp.msg.tlv.fec.pfval FEC Element Prefix Value
String
Forwarding Equivalence Class Element Prefix
ldp.msg.tlv.fec.type FEC Element Type
Unsigned 8-bit integer
Forwarding Equivalence Class Element Types
ldp.msg.tlv.fec.vc.controlword C-bit
Boolean
Control Word Present
ldp.msg.tlv.fec.vc.groupid Group ID
Unsigned 32-bit integer
VC FEC Group ID
ldp.msg.tlv.fec.vc.infolength VC Info Length
Unsigned 8-bit integer
VC FEC Info Length
ldp.msg.tlv.fec.vc.intparam.cepbytes Payload Bytes
Unsigned 16-bit integer
VC FEC Interface Param CEP/TDM Payload Bytes
ldp.msg.tlv.fec.vc.intparam.cepopt_ais AIS
Boolean
VC FEC Interface Param CEP Option AIS
ldp.msg.tlv.fec.vc.intparam.cepopt_ceptype CEP Type
Unsigned 16-bit integer
VC FEC Interface Param CEP Option CEP Type
ldp.msg.tlv.fec.vc.intparam.cepopt_e3 Async E3
Boolean
VC FEC Interface Param CEP Option Async E3
ldp.msg.tlv.fec.vc.intparam.cepopt_ebm EBM
Boolean
VC FEC Interface Param CEP Option EBM Header
ldp.msg.tlv.fec.vc.intparam.cepopt_mah MAH
Boolean
VC FEC Interface Param CEP Option MPLS Adaptation header
ldp.msg.tlv.fec.vc.intparam.cepopt_res Reserved
Unsigned 16-bit integer
VC FEC Interface Param CEP Option Reserved
ldp.msg.tlv.fec.vc.intparam.cepopt_rtp RTP
Boolean
VC FEC Interface Param CEP Option RTP Header
ldp.msg.tlv.fec.vc.intparam.cepopt_t3 Async T3
Boolean
VC FEC Interface Param CEP Option Async T3
ldp.msg.tlv.fec.vc.intparam.cepopt_une UNE
Boolean
VC FEC Interface Param CEP Option Unequipped
ldp.msg.tlv.fec.vc.intparam.desc Description
String
VC FEC Interface Description
ldp.msg.tlv.fec.vc.intparam.dlcilen DLCI Length
Unsigned 16-bit integer
VC FEC Interface Parameter Frame-Relay DLCI Length
ldp.msg.tlv.fec.vc.intparam.fcslen FCS Length
Unsigned 16-bit integer
VC FEC Interface Paramater FCS Length
ldp.msg.tlv.fec.vc.intparam.id ID
Unsigned 8-bit integer
VC FEC Interface Paramater ID
ldp.msg.tlv.fec.vc.intparam.length Length
Unsigned 8-bit integer
VC FEC Interface Paramater Length
ldp.msg.tlv.fec.vc.intparam.maxatm Number of Cells
Unsigned 16-bit integer
VC FEC Interface Param Max ATM Concat Cells
ldp.msg.tlv.fec.vc.intparam.mtu MTU
Unsigned 16-bit integer
VC FEC Interface Paramater MTU
ldp.msg.tlv.fec.vc.intparam.tdmbps BPS
Unsigned 32-bit integer
VC FEC Interface Parameter CEP/TDM bit-rate
ldp.msg.tlv.fec.vc.intparam.tdmopt_d D Bit
Boolean
VC FEC Interface Param TDM Options Dynamic Timestamp
ldp.msg.tlv.fec.vc.intparam.tdmopt_f F Bit
Boolean
VC FEC Interface Param TDM Options Flavor bit
ldp.msg.tlv.fec.vc.intparam.tdmopt_freq FREQ
Unsigned 16-bit integer
VC FEC Interface Param TDM Options Frequency
ldp.msg.tlv.fec.vc.intparam.tdmopt_pt PT
Unsigned 8-bit integer
VC FEC Interface Param TDM Options Payload Type
ldp.msg.tlv.fec.vc.intparam.tdmopt_r R Bit
Boolean
VC FEC Interface Param TDM Options RTP Header
ldp.msg.tlv.fec.vc.intparam.tdmopt_res1 RSVD-1
Unsigned 16-bit integer
VC FEC Interface Param TDM Options Reserved
ldp.msg.tlv.fec.vc.intparam.tdmopt_res2 RSVD-2
Unsigned 8-bit integer
VC FEC Interface Param TDM Options Reserved
ldp.msg.tlv.fec.vc.intparam.tdmopt_ssrc SSRC
Unsigned 32-bit integer
VC FEC Interface Param TDM Options SSRC
ldp.msg.tlv.fec.vc.intparam.vccv.cctype_cw PWE3 Control Word
Boolean
VC FEC Interface Param VCCV CC Type PWE3 CW
ldp.msg.tlv.fec.vc.intparam.vccv.cctype_mplsra MPLS Router Alert
Boolean
VC FEC Interface Param VCCV CC Type MPLS Router Alert
ldp.msg.tlv.fec.vc.intparam.vccv.cctype_ttl1 MPLS Inner Label TTL = 1
Boolean
VC FEC Interface Param VCCV CC Type Inner Label TTL 1
ldp.msg.tlv.fec.vc.intparam.vccv.cvtype_bfd BFD
Boolean
VC FEC Interface Param VCCV CV Type BFD
ldp.msg.tlv.fec.vc.intparam.vccv.cvtype_icmpping ICMP Ping
Boolean
VC FEC Interface Param VCCV CV Type ICMP Ping
ldp.msg.tlv.fec.vc.intparam.vccv.cvtype_lspping LSP Ping
Boolean
VC FEC Interface Param VCCV CV Type LSP Ping
ldp.msg.tlv.fec.vc.intparam.vlanid VLAN Id
Unsigned 16-bit integer
VC FEC Interface Param VLAN Id
ldp.msg.tlv.fec.vc.vcid VC ID
Unsigned 32-bit integer
VC FEC VCID
ldp.msg.tlv.fec.vc.vctype VC Type
Unsigned 16-bit integer
Virtual Circuit Type
ldp.msg.tlv.flags_cbs CBS
Boolean
CBS negotiability flag
ldp.msg.tlv.flags_cdr CDR
Boolean
CDR negotiability flag
ldp.msg.tlv.flags_ebs EBS
Boolean
EBS negotiability flag
ldp.msg.tlv.flags_pbs PBS
Boolean
PBS negotiability flag
ldp.msg.tlv.flags_pdr PDR
Boolean
PDR negotiability flag
ldp.msg.tlv.flags_reserv Reserved
Unsigned 8-bit integer
Reserved
ldp.msg.tlv.flags_weight Weight
Boolean
Weight negotiability flag
ldp.msg.tlv.fr.label.dlci DLCI
Unsigned 24-bit integer
FRAME RELAY Label DLCI
ldp.msg.tlv.fr.label.len Number of DLCI bits
Unsigned 16-bit integer
DLCI Number of bits
ldp.msg.tlv.frequency Frequency
Unsigned 8-bit integer
Frequency
ldp.msg.tlv.ft_ack.sequence_num FT ACK Sequence Number
Unsigned 32-bit integer
FT ACK Sequence Number
ldp.msg.tlv.ft_protect.sequence_num FT Sequence Number
Unsigned 32-bit integer
FT Sequence Number
ldp.msg.tlv.ft_sess.flag_a A bit
Boolean
All-Label protection Required
ldp.msg.tlv.ft_sess.flag_c C bit
Boolean
Check-Pointint Flag
ldp.msg.tlv.ft_sess.flag_l L bit
Boolean
Learn From network Flag
ldp.msg.tlv.ft_sess.flag_r R bit
Boolean
FT Reconnect Flag
ldp.msg.tlv.ft_sess.flag_res Reserved
Unsigned 16-bit integer
Reserved bits
ldp.msg.tlv.ft_sess.flag_s S bit
Boolean
Save State Flag
ldp.msg.tlv.ft_sess.flags Flags
Unsigned 16-bit integer
FT Session Flags
ldp.msg.tlv.ft_sess.reconn_to Reconnect Timeout
Unsigned 32-bit integer
FT Reconnect Timeout
ldp.msg.tlv.ft_sess.recovery_time Recovery Time
Unsigned 32-bit integer
Recovery Time
ldp.msg.tlv.ft_sess.res Reserved
Unsigned 16-bit integer
Reserved
ldp.msg.tlv.generic.label Generic Label
Unsigned 32-bit integer
Generic Label
ldp.msg.tlv.hc.value Hop Count Value
Unsigned 8-bit integer
Hop Count
ldp.msg.tlv.hello.cnf_seqno Configuration Sequence Number
Unsigned 32-bit integer
Hello Configuration Sequence Number
ldp.msg.tlv.hello.hold Hold Time
Unsigned 16-bit integer
Hello Common Parameters Hold Time
ldp.msg.tlv.hello.requested Hello Requested
Boolean
Hello Common Parameters Hello Requested Bit
ldp.msg.tlv.hello.res Reserved
Unsigned 16-bit integer
Hello Common Parameters Reserved Field
ldp.msg.tlv.hello.targeted Targeted Hello
Boolean
Hello Common Parameters Targeted Bit
ldp.msg.tlv.hold_prio Hold Prio
Unsigned 8-bit integer
LSP hold priority
ldp.msg.tlv.ipv4.taddr IPv4 Transport Address
IPv4 address
IPv4 Transport Address
ldp.msg.tlv.ipv6.taddr IPv6 Transport Address
IPv6 address
IPv6 Transport Address
ldp.msg.tlv.len TLV Length
Unsigned 16-bit integer
TLV Length Field
ldp.msg.tlv.lspid.actflg Action Indicator Flag
Unsigned 16-bit integer
Action Indicator Flag
ldp.msg.tlv.lspid.locallspid Local CR-LSP ID
Unsigned 16-bit integer
Local CR-LSP ID
ldp.msg.tlv.lspid.lsrid Ingress LSR Router ID
IPv4 address
Ingress LSR Router ID
ldp.msg.tlv.mac MAC address
6-byte Hardware (MAC) Address
MAC address
ldp.msg.tlv.pbs PBS
Double-precision floating point
Peak Burst Size
ldp.msg.tlv.pdr PDR
Double-precision floating point
Peak Data Rate
ldp.msg.tlv.pv.lsrid LSR Id
IPv4 address
Path Vector LSR Id
ldp.msg.tlv.resource_class Resource Class
Unsigned 32-bit integer
Resource Class (Color)
ldp.msg.tlv.returned.ldpid.lsid Returned PDU Label Space ID
Unsigned 16-bit integer
LDP Label Space ID
ldp.msg.tlv.returned.ldpid.lsr Returned PDU LSR ID
IPv4 address
LDP Label Space Router ID
ldp.msg.tlv.returned.msg.id Returned Message ID
Unsigned 32-bit integer
LDP Message ID
ldp.msg.tlv.returned.msg.len Returned Message Length
Unsigned 16-bit integer
LDP Message Length (excluding message type and len)
ldp.msg.tlv.returned.msg.type Returned Message Type
Unsigned 16-bit integer
LDP message type
ldp.msg.tlv.returned.msg.ubit Returned Message Unknown bit
Boolean
Message Unknown bit
ldp.msg.tlv.returned.pdu_len Returned PDU Length
Unsigned 16-bit integer
LDP PDU Length
ldp.msg.tlv.returned.version Returned PDU Version
Unsigned 16-bit integer
LDP Version Number
ldp.msg.tlv.route_pinning Route Pinning
Unsigned 32-bit integer
Route Pinning
ldp.msg.tlv.sess.advbit Session Label Advertisement Discipline
Boolean
Common Session Parameters Label Advertisement Discipline
ldp.msg.tlv.sess.atm.dir Directionality
Boolean
Label Directionality
ldp.msg.tlv.sess.atm.lr Number of ATM Label Ranges
Unsigned 8-bit integer
Number of Label Ranges
ldp.msg.tlv.sess.atm.maxvci Maximum VCI
Unsigned 16-bit integer
Maximum VCI
ldp.msg.tlv.sess.atm.maxvpi Maximum VPI
Unsigned 16-bit integer
Maximum VPI
ldp.msg.tlv.sess.atm.merge Session ATM Merge Parameter
Unsigned 8-bit integer
Merge ATM Session Parameters
ldp.msg.tlv.sess.atm.minvci Minimum VCI
Unsigned 16-bit integer
Minimum VCI
ldp.msg.tlv.sess.atm.minvpi Minimum VPI
Unsigned 16-bit integer
Minimum VPI
ldp.msg.tlv.sess.fr.dir Directionality
Boolean
Label Directionality
ldp.msg.tlv.sess.fr.len Number of DLCI bits
Unsigned 16-bit integer
DLCI Number of bits
ldp.msg.tlv.sess.fr.lr Number of Frame Relay Label Ranges
Unsigned 8-bit integer
Number of Label Ranges
ldp.msg.tlv.sess.fr.maxdlci Maximum DLCI
Unsigned 24-bit integer
Maximum DLCI
ldp.msg.tlv.sess.fr.merge Session Frame Relay Merge Parameter
Unsigned 8-bit integer
Merge Frame Relay Session Parameters
ldp.msg.tlv.sess.fr.mindlci Minimum DLCI
Unsigned 24-bit integer
Minimum DLCI
ldp.msg.tlv.sess.ka Session KeepAlive Time
Unsigned 16-bit integer
Common Session Parameters KeepAlive Time
ldp.msg.tlv.sess.ldetbit Session Loop Detection
Boolean
Common Session Parameters Loop Detection
ldp.msg.tlv.sess.mxpdu Session Max PDU Length
Unsigned 16-bit integer
Common Session Parameters Max PDU Length
ldp.msg.tlv.sess.pvlim Session Path Vector Limit
Unsigned 8-bit integer
Common Session Parameters Path Vector Limit
ldp.msg.tlv.sess.rxlsr Session Receiver LSR Identifier
IPv4 address
Common Session Parameters LSR Identifier
ldp.msg.tlv.sess.ver Session Protocol Version
Unsigned 16-bit integer
Common Session Parameters Protocol Version
ldp.msg.tlv.set_prio Set Prio
Unsigned 8-bit integer
LSP setup priority
ldp.msg.tlv.status.data Status Data
Unsigned 32-bit integer
Status Data
ldp.msg.tlv.status.ebit E Bit
Boolean
Fatal Error Bit
ldp.msg.tlv.status.fbit F Bit
Boolean
Forward Bit
ldp.msg.tlv.status.msg.id Message ID
Unsigned 32-bit integer
Identifies peer message to which Status TLV refers
ldp.msg.tlv.status.msg.type Message Type
Unsigned 16-bit integer
Type of peer message to which Status TLV refers
ldp.msg.tlv.type TLV Type
Unsigned 16-bit integer
TLV Type Field
ldp.msg.tlv.unknown TLV Unknown bits
Unsigned 8-bit integer
TLV Unknown bits Field
ldp.msg.tlv.value TLV Value
Byte array
TLV Value Bytes
ldp.msg.tlv.vendor_id Vendor ID
Unsigned 32-bit integer
IEEE 802 Assigned Vendor ID
ldp.msg.tlv.weight Weight
Unsigned 8-bit integer
Weight of the CR-LSP
ldp.msg.type Message Type
Unsigned 16-bit integer
LDP message type
ldp.msg.ubit U bit
Boolean
Unknown Message Bit
ldp.msg.vendor.id Vendor ID
Unsigned 32-bit integer
LDP Vendor-private Message ID
ldp.req Request
Boolean
ldp.rsp Response
Boolean
ldp.tlv.lbl_req_msg_id Label Request Message ID
Unsigned 32-bit integer
Label Request Message to be aborted
laplink.tcp_data Unknown TCP data
Byte array
TCP data
laplink.tcp_ident TCP Ident
Unsigned 32-bit integer
Unknown magic
laplink.tcp_length TCP Data payload length
Unsigned 16-bit integer
Length of remaining payload
laplink.udp_ident UDP Ident
Unsigned 32-bit integer
Unknown magic
laplink.udp_name UDP Name
String
Machine name
l2tp.Nr Nr
Unsigned 16-bit integer
l2tp.Ns Ns
Unsigned 16-bit integer
l2tp.avp.ciscotype Type
Unsigned 16-bit integer
AVP Type
l2tp.avp.hidden Hidden
Boolean
Hidden AVP
l2tp.avp.length Length
Unsigned 16-bit integer
AVP Length
l2tp.avp.mandatory Mandatory
Boolean
Mandatory AVP
l2tp.avp.type Type
Unsigned 16-bit integer
AVP Type
l2tp.avp.vendor_id Vendor ID
Unsigned 16-bit integer
AVP Vendor ID
l2tp.ccid Control Connection ID
Unsigned 32-bit integer
Control Connection ID
l2tp.length Length
Unsigned 16-bit integer
l2tp.length_bit Length Bit
Boolean
Length bit
l2tp.offset Offset
Unsigned 16-bit integer
Number of octest past the L2TP header at which thepayload data starts.
l2tp.offset_bit Offset bit
Boolean
Offset bit
l2tp.priority Priority
Boolean
Priority bit
l2tp.res Reserved
Unsigned 16-bit integer
Reserved
l2tp.seq_bit Sequence Bit
Boolean
Sequence bit
l2tp.session Session ID
Unsigned 16-bit integer
Session ID
l2tp.sid Session ID
Unsigned 32-bit integer
Session ID
l2tp.tie_breaker Tie Breaker
Unsigned 64-bit integer
Tie Breaker
l2tp.tunnel Tunnel ID
Unsigned 16-bit integer
Tunnel ID
l2tp.type Type
Unsigned 16-bit integer
Type bit
l2tp.version Version
Unsigned 16-bit integer
Version
lt2p.cookie Cookie
Byte array
Cookie
lt2p.l2_spec_atm ATM-Specific Sublayer
No value
ATM-Specific Sublayer
lt2p.l2_spec_c C-bit
Boolean
CLP Bit
lt2p.l2_spec_def Default L2-Specific Sublayer
No value
Default L2-Specific Sublayer
lt2p.l2_spec_g G-bit
Boolean
EFCI Bit
lt2p.l2_spec_s S-bit
Boolean
Sequence Bit
lt2p.l2_spec_sequence Sequence Number
Unsigned 24-bit integer
Sequence Number
lt2p.l2_spec_t T-bit
Boolean
Transport Type Bit
lt2p.l2_spec_u U-bit
Boolean
C/R Bit
lwres.adn.addr.addr IP Address
String
lwres adn addr addr
lwres.adn.addr.family Address family
Unsigned 32-bit integer
lwres adn addr family
lwres.adn.addr.length Address length
Unsigned 16-bit integer
lwres adn addr length
lwres.adn.addrtype Address type
Unsigned 32-bit integer
lwres adn addrtype
lwres.adn.aliasname Alias name
String
lwres adn aliasname
lwres.adn.flags Flags
Unsigned 32-bit integer
lwres adn flags
lwres.adn.naddrs Number of addresses
Unsigned 16-bit integer
lwres adn naddrs
lwres.adn.naliases Number of aliases
Unsigned 16-bit integer
lwres adn naliases
lwres.adn.name Name
String
lwres adn name
lwres.adn.namelen Name length
Unsigned 16-bit integer
lwres adn namelen
lwres.adn.realname Real name
String
lwres adn realname
lwres.areclen Length
Unsigned 16-bit integer
lwres areclen
lwres.arecord IPv4 Address
Unsigned 32-bit integer
lwres arecord
lwres.authlen Auth. length
Unsigned 16-bit integer
lwres authlen
lwres.authtype Auth. type
Unsigned 16-bit integer
lwres authtype
lwres.class Class
Unsigned 16-bit integer
lwres class
lwres.flags Packet Flags
Unsigned 16-bit integer
lwres flags
lwres.length Length
Unsigned 32-bit integer
lwres length
lwres.namelen Name length
Unsigned 16-bit integer
lwres namelen
lwres.nrdatas Number of rdata records
Unsigned 16-bit integer
lwres nrdatas
lwres.nsigs Number of signature records
Unsigned 16-bit integer
lwres nsigs
lwres.opcode Operation code
Unsigned 32-bit integer
lwres opcode
lwres.realname Real doname name
String
lwres realname
lwres.realnamelen Real name length
Unsigned 16-bit integer
lwres realnamelen
lwres.recvlen Received length
Unsigned 32-bit integer
lwres recvlen
lwres.reqdname Domain name
String
lwres reqdname
lwres.result Result
Unsigned 32-bit integer
lwres result
lwres.rflags Flags
Unsigned 32-bit integer
lwres rflags
lwres.serial Serial
Unsigned 32-bit integer
lwres serial
lwres.srv.port Port
Unsigned 16-bit integer
lwres srv port
lwres.srv.priority Priority
Unsigned 16-bit integer
lwres srv prio
lwres.srv.weight Weight
Unsigned 16-bit integer
lwres srv weight
lwres.ttl Time To Live
Unsigned 32-bit integer
lwres ttl
lwres.type Type
Unsigned 16-bit integer
lwres type
lwres.version Version
Unsigned 16-bit integer
lwres version
udp.checksum_coverage Checksum coverage
Unsigned 16-bit integer
udp.checksum_coverage_bad Bad Checksum coverage
Boolean
ldap.AccessMask.ADS_CONTROL_ACCESS Control Access
Boolean
ldap.AccessMask.ADS_CREATE_CHILD Create Child
Boolean
ldap.AccessMask.ADS_DELETE_CHILD Delete Child
Boolean
ldap.AccessMask.ADS_DELETE_TREE Delete Tree
Boolean
ldap.AccessMask.ADS_LIST List
Boolean
ldap.AccessMask.ADS_LIST_OBJECT List Object
Boolean
ldap.AccessMask.ADS_READ_PROP Read Prop
Boolean
ldap.AccessMask.ADS_SELF_WRITE Self Write
Boolean
ldap.AccessMask.ADS_WRITE_PROP Write Prop
Boolean
ldap.AttributeDescriptionList_item Item
String
ldap.AttributeDescription
ldap.AttributeList_item Item
No value
ldap.AttributeList_item
ldap.CancelRequestValue CancelRequestValue
No value
ldap.CancelRequestValue
ldap.Controls_item Item
No value
ldap.Control
ldap.LDAPMessage LDAPMessage
No value
ldap.LDAPMessage
ldap.PartialAttributeList_item Item
No value
ldap.PartialAttributeList_item
ldap.PasswdModifyRequestValue PasswdModifyRequestValue
No value
ldap.PasswdModifyRequestValue
ldap.Referral_item Item
String
ldap.LDAPURL
ldap.ReplControlValue ReplControlValue
No value
ldap.ReplControlValue
ldap.SearchControlValue SearchControlValue
No value
ldap.SearchControlValue
ldap.SortKeyList SortKeyList
Unsigned 32-bit integer
ldap.SortKeyList
ldap.SortKeyList_item Item
No value
ldap.SortKeyList_item
ldap.SortResult SortResult
No value
ldap.SortResult
ldap._untag_item Item
String
ldap.LDAPURL
ldap.abandonRequest abandonRequest
Unsigned 32-bit integer
ldap.AbandonRequest
ldap.addRequest addRequest
No value
ldap.AddRequest
ldap.addResponse addResponse
No value
ldap.AddResponse
ldap.and and
Unsigned 32-bit integer
ldap.T_and
ldap.and_item Item
Unsigned 32-bit integer
ldap.T_and_item
ldap.any any
String
ldap.LDAPString
ldap.approxMatch approxMatch
No value
ldap.T_approxMatch
ldap.assertionValue assertionValue
String
ldap.AssertionValue
ldap.attributeDesc attributeDesc
String
ldap.AttributeDescription
ldap.attributeType attributeType
String
ldap.AttributeDescription
ldap.attributes attributes
Unsigned 32-bit integer
ldap.AttributeDescriptionList
ldap.authentication authentication
Unsigned 32-bit integer
ldap.AuthenticationChoice
ldap.ava ava
No value
ldap.AttributeValueAssertion
ldap.baseObject baseObject
String
ldap.LDAPDN
ldap.bindRequest bindRequest
No value
ldap.BindRequest
ldap.bindResponse bindResponse
No value
ldap.BindResponse
ldap.cancelID cancelID
Unsigned 32-bit integer
ldap.MessageID
ldap.compareRequest compareRequest
No value
ldap.CompareRequest
ldap.compareResponse compareResponse
No value
ldap.CompareResponse
ldap.controlType controlType
String
ldap.ControlType
ldap.controlValue controlValue
Byte array
ldap.T_controlValue
ldap.controls controls
Unsigned 32-bit integer
ldap.Controls
ldap.cookie cookie
Byte array
ldap.OCTET_STRING
ldap.credentials credentials
Byte array
ldap.Credentials
ldap.criticality criticality
Boolean
ldap.BOOLEAN
ldap.delRequest delRequest
String
ldap.DelRequest
ldap.delResponse delResponse
No value
ldap.DelResponse
ldap.deleteoldrdn deleteoldrdn
Boolean
ldap.BOOLEAN
ldap.derefAliases derefAliases
Unsigned 32-bit integer
ldap.T_derefAliases
ldap.dnAttributes dnAttributes
Boolean
ldap.T_dnAttributes
ldap.entry entry
String
ldap.LDAPDN
ldap.equalityMatch equalityMatch
No value
ldap.T_equalityMatch
ldap.errorMessage errorMessage
String
ldap.ErrorMessage
ldap.extendedReq extendedReq
No value
ldap.ExtendedRequest
ldap.extendedResp extendedResp
No value
ldap.ExtendedResponse
ldap.extensibleMatch extensibleMatch
No value
ldap.T_extensibleMatch
ldap.filter filter
Unsigned 32-bit integer
ldap.T_filter
ldap.final final
String
ldap.LDAPString
ldap.genPasswd genPasswd
Byte array
ldap.OCTET_STRING
ldap.greaterOrEqual greaterOrEqual
No value
ldap.T_greaterOrEqual
ldap.guid GUID
GUID
ldap.initial initial
String
ldap.LDAPString
ldap.lessOrEqual lessOrEqual
No value
ldap.T_lessOrEqual
ldap.matchValue matchValue
String
ldap.AssertionValue
ldap.matchedDN matchedDN
String
ldap.LDAPDN
ldap.matchingRule matchingRule
String
ldap.MatchingRuleId
ldap.maxReturnLength maxReturnLength
Signed 32-bit integer
ldap.INTEGER
ldap.mechanism mechanism
String
ldap.Mechanism
ldap.messageID messageID
Unsigned 32-bit integer
ldap.MessageID
ldap.modDNRequest modDNRequest
No value
ldap.ModifyDNRequest
ldap.modDNResponse modDNResponse
No value
ldap.ModifyDNResponse
ldap.modification modification
Unsigned 32-bit integer
ldap.ModifyRequest_modification
ldap.modification_item Item
No value
ldap.T_modifyRequest_modification_item
ldap.modifyRequest modifyRequest
No value
ldap.ModifyRequest
ldap.modifyResponse modifyResponse
No value
ldap.ModifyResponse
ldap.name name
String
ldap.LDAPDN
ldap.newPasswd newPasswd
Byte array
ldap.OCTET_STRING
ldap.newSuperior newSuperior
String
ldap.LDAPDN
ldap.newrdn newrdn
String
ldap.RelativeLDAPDN
ldap.not not
Unsigned 32-bit integer
ldap.T_not
ldap.ntlmsspAuth ntlmsspAuth
Byte array
ldap.T_ntlmsspAuth
ldap.ntlmsspNegotiate ntlmsspNegotiate
Byte array
ldap.T_ntlmsspNegotiate
ldap.object object
String
ldap.LDAPDN
ldap.objectName objectName
String
ldap.LDAPDN
ldap.oldPasswd oldPasswd
Byte array
ldap.OCTET_STRING
ldap.operation operation
Unsigned 32-bit integer
ldap.T_operation
ldap.or or
Unsigned 32-bit integer
ldap.T_or
ldap.or_item Item
Unsigned 32-bit integer
ldap.T_or_item
ldap.orderingRule orderingRule
String
ldap.MatchingRuleId
ldap.parentsFirst parentsFirst
Signed 32-bit integer
ldap.INTEGER
ldap.present present
String
ldap.T_present
ldap.protocolOp protocolOp
Unsigned 32-bit integer
ldap.ProtocolOp
ldap.referral referral
Unsigned 32-bit integer
ldap.Referral
ldap.requestName requestName
String
ldap.LDAPOID
ldap.requestValue requestValue
Byte array
ldap.T_requestValue
ldap.response response
Byte array
ldap.OCTET_STRING
ldap.responseName responseName
String
ldap.ResponseName
ldap.response_in Response In
Frame number
The response to this LDAP request is in this frame
ldap.response_to Response To
Frame number
This is a response to the LDAP request in this frame
ldap.resultCode resultCode
Unsigned 32-bit integer
ldap.T_resultCode
ldap.reverseOrder reverseOrder
Boolean
ldap.BOOLEAN
ldap.sasl sasl
No value
ldap.SaslCredentials
ldap.sasl_buffer_length SASL Buffer Length
Unsigned 32-bit integer
SASL Buffer Length
ldap.scope scope
Unsigned 32-bit integer
ldap.T_scope
ldap.searchRequest searchRequest
No value
ldap.SearchRequest
ldap.searchResDone searchResDone
No value
ldap.SearchResultDone
ldap.searchResEntry searchResEntry
No value
ldap.SearchResultEntry
ldap.searchResRef searchResRef
Unsigned 32-bit integer
ldap.SearchResultReference
ldap.serverSaslCreds serverSaslCreds
Byte array
ldap.ServerSaslCreds
ldap.sid Sid
String
Sid
ldap.simple simple
Byte array
ldap.Simple
ldap.size size
Signed 32-bit integer
ldap.INTEGER
ldap.sizeLimit sizeLimit
Unsigned 32-bit integer
ldap.INTEGER_0_maxInt
ldap.sortResult sortResult
Unsigned 32-bit integer
ldap.T_sortResult
ldap.substrings substrings
No value
ldap.SubstringFilter
ldap.substrings_item Item
Unsigned 32-bit integer
ldap.T_substringFilter_substrings_item
ldap.time Time
Time duration
The time between the Call and the Reply
ldap.timeLimit timeLimit
Unsigned 32-bit integer
ldap.INTEGER_0_maxInt
ldap.type type
String
ldap.AttributeDescription
ldap.typesOnly typesOnly
Boolean
ldap.BOOLEAN
ldap.unbindRequest unbindRequest
No value
ldap.UnbindRequest
ldap.userIdentity userIdentity
Byte array
ldap.OCTET_STRING
ldap.vals vals
Unsigned 32-bit integer
ldap.SET_OF_AttributeValue
ldap.vals_item Item
Byte array
ldap.AttributeValue
ldap.version version
Unsigned 32-bit integer
ldap.INTEGER_1_127
mscldap.clientsitename Client Site
String
Client Site name
mscldap.domain Domain
String
Domainname
mscldap.domain.guid Domain GUID
Byte array
Domain GUID
mscldap.forest Forest
String
Forest
mscldap.hostname Hostname
String
Hostname
mscldap.nb_domain NetBios Domain
String
NetBios Domainname
mscldap.nb_hostname NetBios Hostname
String
NetBios Hostname
mscldap.netlogon.flags Flags
Unsigned 32-bit integer
Netlogon flags describing the DC properties
mscldap.netlogon.flags.closest Closest
Boolean
Is this the closest dc? (is this used at all?)
mscldap.netlogon.flags.ds DS
Boolean
Does this dc provide DS services?
mscldap.netlogon.flags.gc GC
Boolean
Does this dc service as a GLOBAL CATALOGUE?
mscldap.netlogon.flags.good_timeserv Good Time Serv
Boolean
Is this a Good Time Server? (i.e. does it have a hardware clock)
mscldap.netlogon.flags.kdc KDC
Boolean
Does this dc act as a KDC?
mscldap.netlogon.flags.ldap LDAP
Boolean
Does this DC act as an LDAP server?
mscldap.netlogon.flags.ndnc NDNC
Boolean
Is this an NDNC dc?
mscldap.netlogon.flags.pdc PDC
Boolean
Is this DC a PDC or not?
mscldap.netlogon.flags.timeserv Time Serv
Boolean
Does this dc provide time services (ntp) ?
mscldap.netlogon.flags.writable Writable
Boolean
Is this dc writable? (i.e. can it update the AD?)
mscldap.netlogon.lm_token LM Token
Unsigned 16-bit integer
LM Token
mscldap.netlogon.nt_token NT Token
Unsigned 16-bit integer
NT Token
mscldap.netlogon.type Type
Unsigned 32-bit integer
Type of <please tell Wireshark developers what this type is>
mscldap.netlogon.version Version
Unsigned 32-bit integer
Version of <please tell Wireshark developers what this type is>
mscldap.sitename Site
String
Site name
mscldap.username User
String
User name
lpd.request Request
Boolean
TRUE if LPD request
lpd.response Response
Boolean
TRUE if LPD response
lapb.address Address Field
Unsigned 8-bit integer
Address
lapb.control Control Field
Unsigned 8-bit integer
Control field
lapb.control.f Final
Boolean
lapb.control.ftype Frame type
Unsigned 8-bit integer
lapb.control.n_r N(R)
Unsigned 8-bit integer
lapb.control.n_s N(S)
Unsigned 8-bit integer
lapb.control.p Poll
Boolean
lapb.control.s_ftype Supervisory frame type
Unsigned 8-bit integer
lapb.control.u_modifier_cmd Command
Unsigned 8-bit integer
lapb.control.u_modifier_resp Response
Unsigned 8-bit integer
lapbether.length Length Field
Unsigned 16-bit integer
LAPBEther Length Field
lapd.address Address Field
Unsigned 16-bit integer
Address
lapd.control Control Field
Unsigned 16-bit integer
Control field
lapd.control.f Final
Boolean
lapd.control.ftype Frame type
Unsigned 16-bit integer
lapd.control.n_r N(R)
Unsigned 16-bit integer
lapd.control.n_s N(S)
Unsigned 16-bit integer
lapd.control.p Poll
Boolean
lapd.control.s_ftype Supervisory frame type
Unsigned 16-bit integer
lapd.control.u_modifier_cmd Command
Unsigned 8-bit integer
lapd.control.u_modifier_resp Response
Unsigned 8-bit integer
lapd.cr C/R
Unsigned 16-bit integer
Command/Response bit
lapd.direction Direction
Unsigned 8-bit integer
Direction
lapd.ea1 EA1
Unsigned 16-bit integer
First Address Extension bit
lapd.ea2 EA2
Unsigned 16-bit integer
Second Address Extension bit
lapd.sapi SAPI
Unsigned 16-bit integer
Service Access Point Identifier
lapd.tei TEI
Unsigned 16-bit integer
Terminal Endpoint Identifier
lldp.chassis.id Chassis Id
Byte array
lldp.chassis.id.ip4 Chassis Id
IPv4 address
lldp.chassis.id.ip6 Chassis Id
IPv6 address
lldp.chassis.id.mac Chassis Id
6-byte Hardware (MAC) Address
lldp.chassis.subtype Chassis Id Subtype
Unsigned 8-bit integer
lldp.ieee.802_1.subtype IEEE 802.1 Subtype
Unsigned 8-bit integer
lldp.ieee.802_3.subtype IEEE 802.3 Subtype
Unsigned 8-bit integer
lldp.media.subtype Media Subtype
Unsigned 8-bit integer
lldp.mgn.addr.hex Management Address
Byte array
lldp.mgn.addr.ip4 Management Address
IPv4 address
lldp.mgn.addr.ip6 Management Address
IPv6 address
lldp.mgn.obj.id Object Identifier
Byte array
lldp.network_address.subtype Network Address family
Unsigned 8-bit integer
Network Address family
lldp.orgtlv.oui Organization Unique Code
Unsigned 24-bit integer
lldp.port.id.ip4 Port Id
IPv4 address
lldp.port.id.ip6 Port Id
IPv6 address
lldp.port.id.mac Port Id
6-byte Hardware (MAC) Address
lldp.port.subtype Port Id Subtype
Unsigned 8-bit integer
lldp.profinet.cable_delay_local Port Cable Delay Local
Unsigned 32-bit integer
lldp.profinet.cm_mac_add CMMacAdd
6-byte Hardware (MAC) Address
CMResponderMacAdd or CMInitiatorMacAdd
lldp.profinet.green_period_begin_offset GreenPeriodBegin.Offset
Unsigned 32-bit integer
Unrestricted period, offset to cycle begin in nanoseconds
lldp.profinet.green_period_begin_valid GreenPeriodBegin.Valid
Unsigned 32-bit integer
Offset field is valid/invalid
lldp.profinet.ir_data_uuid IRDataUUID
lldp.profinet.length_of_period_length LengthOfPeriod.Length
Unsigned 32-bit integer
Duration of a cycle in nanoseconds
lldp.profinet.length_of_period_valid LengthOfPeriod.Valid
Unsigned 32-bit integer
Length field is valid/invalid
lldp.profinet.master_source_address MasterSourceAddress
6-byte Hardware (MAC) Address
lldp.profinet.mrp_domain_uuid MRP DomainUUID
lldp.profinet.mrrt_port_status MRRT PortStatus
Unsigned 16-bit integer
lldp.profinet.orange_period_begin_offset OrangePeriodBegin.Offset
Unsigned 32-bit integer
RT_CLASS_2 period, offset to cycle begin in nanoseconds
lldp.profinet.orange_period_begin_valid OrangePeriodBegin.Valid
Unsigned 32-bit integer
Offset field is valid/invalid
lldp.profinet.port_rx_delay_local Port RX Delay Local
Unsigned 32-bit integer
lldp.profinet.port_rx_delay_remote Port RX Delay Remote
Unsigned 32-bit integer
lldp.profinet.port_tx_delay_local Port TX Delay Local
Unsigned 32-bit integer
lldp.profinet.port_tx_delay_remote Port TX Delay Remote
Unsigned 32-bit integer
lldp.profinet.red_period_begin_offset RedPeriodBegin.Offset
Unsigned 32-bit integer
RT_CLASS_3 period, offset to cycle begin in nanoseconds
lldp.profinet.red_period_begin_valid RedPeriodBegin.Valid
Unsigned 32-bit integer
Offset field is valid/invalid
lldp.profinet.rtc2_port_status RTClass2 Port Status
Unsigned 16-bit integer
lldp.profinet.rtc3_port_status RTClass3 Port Status
Unsigned 16-bit integer
lldp.profinet.subdomain_uuid SubdomainUUID
lldp.profinet.subtype Subtype
Unsigned 8-bit integer
PROFINET Subtype
lldp.time_to_live Seconds
Unsigned 16-bit integer
lldp.tlv.len TLV Length
Unsigned 16-bit integer
lldp.tlv.type TLV Type
Unsigned 16-bit integer
lldp.unknown_subtype Unknown Subtype Content
Byte array
lmp.begin_verify.all_links Verify All Links
Boolean
lmp.begin_verify.enctype Encoding Type
Unsigned 8-bit integer
lmp.begin_verify.flags Flags
Unsigned 16-bit integer
lmp.begin_verify.link_type Data Link Type
Boolean
lmp.data_link.link_verify Data-Link is Allocated
Boolean
lmp.data_link.local_ipv4 Data-Link Local ID - IPv4
IPv4 address
lmp.data_link.local_unnum Data-Link Local ID - Unnumbered
Unsigned 32-bit integer
lmp.data_link.port Data-Link is Individual Port
Boolean
lmp.data_link.remote_ipv4 Data-Link Remote ID - IPv4
IPv4 address
lmp.data_link.remote_unnum Data-Link Remote ID - Unnumbered
Unsigned 32-bit integer
lmp.data_link_encoding LSP Encoding Type
Unsigned 8-bit integer
lmp.data_link_flags Data-Link Flags
Unsigned 8-bit integer
lmp.data_link_subobj Subobject
No value
lmp.data_link_switching Interface Switching Capability
Unsigned 8-bit integer
lmp.error Error Code
Unsigned 32-bit integer
lmp.error.config_bad_ccid Config - Bad CC ID
Boolean
lmp.error.config_bad_params Config - Unacceptable non-negotiable parameters
Boolean
lmp.error.config_renegotiate Config - Renegotiate Parametere
Boolean
lmp.error.summary_bad_data_link Summary - Bad Data Link Object
Boolean
lmp.error.summary_bad_params Summary - Unacceptable non-negotiable parameters
Boolean
lmp.error.summary_bad_remote_link_id Summary - Bad Remote Link ID
Boolean
lmp.error.summary_bad_te_link Summary - Bad TE Link Object
Boolean
lmp.error.summary_renegotiate Summary - Renegotiate Parametere
Boolean
lmp.error.summary_unknown_dl_ctype Summary - Bad Data Link C-Type
Boolean
lmp.error.summary_unknown_tel_ctype Summary - Bad TE Link C-Type
Boolean
lmp.error.verify_te_link_id Verification - TE Link ID Configuration Error
Boolean
lmp.error.verify_unknown_ctype Verification - Unknown Object C-Type
Boolean
lmp.error.verify_unsupported_link Verification - Unsupported for this TE-Link
Boolean
lmp.error.verify_unsupported_transport Verification - Transport Unsupported
Boolean
lmp.error.verify_unwilling Verification - Unwilling to Verify at this time
Boolean
lmp.hdr.ccdown ControlChannelDown
Boolean
lmp.hdr.flags LMP Header - Flags
Unsigned 8-bit integer
lmp.hdr.reboot Reboot
Boolean
lmp.hellodeadinterval HelloDeadInterval
Unsigned 32-bit integer
lmp.hellointerval HelloInterval
Unsigned 32-bit integer
lmp.local_ccid Local CCID Value
Unsigned 32-bit integer
lmp.local_interfaceid_ipv4 Local Interface ID - IPv4
IPv4 address
lmp.local_interfaceid_unnum Local Interface ID - Unnumbered
Unsigned 32-bit integer
lmp.local_linkid_ipv4 Local Link ID - IPv4
IPv4 address
lmp.local_linkid_unnum Local Link ID - Unnumbered
Unsigned 32-bit integer
lmp.local_nodeid Local Node ID Value
IPv4 address
lmp.messageid Message-ID Value
Unsigned 32-bit integer
lmp.messageid_ack Message-ID Ack Value
Unsigned 32-bit integer
lmp.msg Message Type
Unsigned 8-bit integer
lmp.msg.beginverify BeginVerify Message
Boolean
lmp.msg.beginverifyack BeginVerifyAck Message
Boolean
lmp.msg.beginverifynack BeginVerifyNack Message
Boolean
lmp.msg.channelstatus ChannelStatus Message
Boolean
lmp.msg.channelstatusack ChannelStatusAck Message
Boolean
lmp.msg.channelstatusrequest ChannelStatusRequest Message
Boolean
lmp.msg.channelstatusresponse ChannelStatusResponse Message
Boolean
lmp.msg.config Config Message
Boolean
lmp.msg.configack ConfigAck Message
Boolean
lmp.msg.confignack ConfigNack Message
Boolean
lmp.msg.endverify EndVerify Message
Boolean
lmp.msg.endverifyack EndVerifyAck Message
Boolean
lmp.msg.hello HELLO Message
Boolean
lmp.msg.linksummary LinkSummary Message
Boolean
lmp.msg.linksummaryack LinkSummaryAck Message
Boolean
lmp.msg.linksummarynack LinkSummaryNack Message
Boolean
lmp.msg.serviceconfig ServiceConfig Message
Boolean
lmp.msg.serviceconfigack ServiceConfigAck Message
Boolean
lmp.msg.serviceconfignack ServiceConfigNack Message
Boolean
lmp.msg.test Test Message
Boolean
lmp.msg.teststatusack TestStatusAck Message
Boolean
lmp.msg.teststatusfailure TestStatusFailure Message
Boolean
lmp.msg.teststatussuccess TestStatusSuccess Message
Boolean
lmp.obj.Nodeid NODE_ID
No value
lmp.obj.begin_verify BEGIN_VERIFY
No value
lmp.obj.begin_verify_ack BEGIN_VERIFY_ACK
No value
lmp.obj.ccid CCID
No value
lmp.obj.channel_status CHANNEL_STATUS
No value
lmp.obj.channel_status_request CHANNEL_STATUS_REQUEST
No value
lmp.obj.config CONFIG
No value
lmp.obj.ctype Object C-Type
Unsigned 8-bit integer
lmp.obj.data_link DATA_LINK
No value
lmp.obj.error ERROR
No value
lmp.obj.hello HELLO
No value
lmp.obj.interfaceid INTERFACE_ID
No value
lmp.obj.linkid LINK_ID
No value
lmp.obj.messageid MESSAGE_ID
No value
lmp.obj.serviceconfig SERVICE_CONFIG
No value
lmp.obj.te_link TE_LINK
No value
lmp.obj.verifyid VERIFY_ID
No value
lmp.object LOCAL_CCID
Unsigned 8-bit integer
lmp.remote_ccid Remote CCID Value
Unsigned 32-bit integer
lmp.remote_interfaceid_ipv4 Remote Interface ID - IPv4
IPv4 address
lmp.remote_interfaceid_unnum Remote Interface ID - Unnumbered
Unsigned 32-bit integer
lmp.remote_linkid_ipv4 Remote Link ID - IPv4
Unsigned 32-bit integer
lmp.remote_linkid_unnum Remote Link ID - Unnumbered
Unsigned 32-bit integer
lmp.remote_nodeid Remote Node ID Value
IPv4 address
lmp.rxseqnum RxSeqNum
Unsigned 32-bit integer
lmp.service_config.cct Contiguous Concatenation Types
Unsigned 8-bit integer
lmp.service_config.cpsa Client Port Service Attributes
Unsigned 8-bit integer
lmp.service_config.cpsa.line_overhead Line/MS Overhead Transparency Supported
Boolean
lmp.service_config.cpsa.local_ifid Local interface id of the client interface referred to
IPv4 address
lmp.service_config.cpsa.max_ncc Maximum Number of Contiguously Concatenated Components
Unsigned 8-bit integer
lmp.service_config.cpsa.max_nvc Minimum Number of Virtually Concatenated Components
Unsigned 8-bit integer
lmp.service_config.cpsa.min_ncc Minimum Number of Contiguously Concatenated Components
Unsigned 8-bit integer
lmp.service_config.cpsa.min_nvc Maximum Number of Contiguously Concatenated Components
Unsigned 8-bit integer
lmp.service_config.cpsa.path_overhead Path/VC Overhead Transparency Supported
Boolean
lmp.service_config.cpsa.section_overhead Section/RS Overhead Transparency Supported
Boolean
lmp.service_config.nsa.diversity Network Diversity Flags
Unsigned 8-bit integer
lmp.service_config.nsa.diversity.link Link diversity supported
Boolean
lmp.service_config.nsa.diversity.node Node diversity supported
Boolean
lmp.service_config.nsa.diversity.srlg SRLG diversity supported
Boolean
lmp.service_config.nsa.tcm TCM Monitoring
Unsigned 8-bit integer
lmp.service_config.nsa.transparency Network Transparency Flags
Unsigned 32-bit integer
lmp.service_config.nsa.transparency.loh Standard LOH/MSOH transparency supported
Boolean
lmp.service_config.nsa.transparency.soh Standard SOH/RSOH transparency supported
Boolean
lmp.service_config.nsa.transparency.tcm TCM Monitoring Supported
Boolean
lmp.service_config.sp Service Config - Supported Signalling Protocols
Unsigned 8-bit integer
lmp.service_config.sp.ldp LDP is supported
Boolean
lmp.service_config.sp.rsvp RSVP is supported
Boolean
lmp.te_link.fault_mgmt Fault Management Supported
Boolean
lmp.te_link.link_verify Link Verification Supported
Boolean
lmp.te_link.local_ipv4 TE-Link Local ID - IPv4
IPv4 address
lmp.te_link.local_unnum TE-Link Local ID - Unnumbered
Unsigned 32-bit integer
lmp.te_link.remote_ipv4 TE-Link Remote ID - IPv4
IPv4 address
lmp.te_link.remote_unnum TE-Link Remote ID - Unnumbered
Unsigned 32-bit integer
lmp.te_link_flags TE-Link Flags
Unsigned 8-bit integer
lmp.txseqnum TxSeqNum
Unsigned 32-bit integer
lmp.verifyid Verify-ID
Unsigned 32-bit integer
pktgen.magic Magic number
Unsigned 32-bit integer
The pktgen magic number
pktgen.seqnum Sequence number
Unsigned 32-bit integer
Sequence number
pktgen.timestamp Timestamp
Date/Time stamp
Timestamp
pktgen.tvsec Timestamp tvsec
Unsigned 32-bit integer
Timestamp tvsec part
pktgen.tvusec Timestamp tvusec
Unsigned 32-bit integer
Timestamp tvusec part
sll.etype Protocol
Unsigned 16-bit integer
Ethernet protocol type
sll.gretype Protocol
Unsigned 16-bit integer
GRE protocol type
sll.halen Link-layer address length
Unsigned 16-bit integer
Link-layer address length
sll.hatype Link-layer address type
Unsigned 16-bit integer
Link-layer address type
sll.ltype Protocol
Unsigned 16-bit integer
Linux protocol type
sll.pkttype Packet type
Unsigned 16-bit integer
Packet type
sll.src.eth Source
6-byte Hardware (MAC) Address
Source link-layer address
sll.src.ipv4 Source
IPv4 address
Source link-layer address
sll.src.other Source
Byte array
Source link-layer address
sll.trailer Trailer
Byte array
Trailer
lmi.cmd Call reference
Unsigned 8-bit integer
Call Reference
lmi.dlci_act DLCI Active
Unsigned 8-bit integer
DLCI Active Flag
lmi.dlci_hi DLCI High
Unsigned 8-bit integer
DLCI High bits
lmi.dlci_low DLCI Low
Unsigned 8-bit integer
DLCI Low bits
lmi.dlci_new DLCI New
Unsigned 8-bit integer
DLCI New Flag
lmi.ele_rcd_type Record Type
Unsigned 8-bit integer
Record Type
lmi.inf_ele_len Length
Unsigned 8-bit integer
Information Element Length
lmi.inf_ele_type Type
Unsigned 8-bit integer
Information Element Type
lmi.msg_type Message Type
Unsigned 8-bit integer
Message Type
lmi.recv_seq Recv Seq
Unsigned 8-bit integer
Receive Sequence
lmi.send_seq Send Seq
Unsigned 8-bit integer
Send Sequence
llap.dst Destination Node
Unsigned 8-bit integer
llap.src Source Node
Unsigned 8-bit integer
llap.type Type
Unsigned 8-bit integer
log.missed WARNING: Missed one or more messages while capturing!
No value
log.msg Message
String
llcgprs.as Ackn request bit
Boolean
Acknowledgement request bit A
llcgprs.cr Command/Response bit
Boolean
Command/Response bit
llcgprs.e E bit
Boolean
Encryption mode bit
llcgprs.frmrcr C/R
Unsigned 32-bit integer
Rejected command response
llcgprs.frmrrfcf Control Field Octet
Unsigned 16-bit integer
Rejected Frame CF
llcgprs.frmrspare X
Unsigned 32-bit integer
Filler
llcgprs.frmrvr V(R)
Unsigned 32-bit integer
Current receive state variable
llcgprs.frmrvs V(S)
Unsigned 32-bit integer
Current send state variable
llcgprs.frmrw1 W1
Unsigned 32-bit integer
Invalid - info not permitted
llcgprs.frmrw2 W2
Unsigned 32-bit integer
Info exceeded N201
llcgprs.frmrw3 W3
Unsigned 32-bit integer
Undefined control field
llcgprs.frmrw4 W4
Unsigned 32-bit integer
LLE was in ABM when rejecting
llcgprs.ia Ack Bit
Unsigned 24-bit integer
I A Bit
llcgprs.ifmt I Format
Unsigned 24-bit integer
I Fmt Bit
llcgprs.iignore Spare
Unsigned 24-bit integer
Ignore Bit
llcgprs.k k
Unsigned 8-bit integer
k counter
llcgprs.kmask ignored
Unsigned 8-bit integer
ignored
llcgprs.nr Receive sequence number
Unsigned 16-bit integer
Receive sequence number N(R)
llcgprs.nu N(U)
Unsigned 16-bit integer
Transmited unconfirmed sequence number
llcgprs.pd Protocol Discriminator_bit
Boolean
Protocol Discriminator bit (should be 0)
llcgprs.pf P/F bit
Boolean
Poll /Finall bit
llcgprs.pm PM bit
Boolean
Protected mode bit
llcgprs.romrl Remaining Length of TOM Protocol Header
Unsigned 8-bit integer
RL
llcgprs.s S format
Unsigned 16-bit integer
Supervisory format S
llcgprs.s1s2 Supervisory function bits
Unsigned 16-bit integer
Supervisory functions bits
llcgprs.sacknr N(R)
Unsigned 24-bit integer
N(R)
llcgprs.sackns N(S)
Unsigned 24-bit integer
N(S)
llcgprs.sackrbits R Bitmap Bits
Unsigned 8-bit integer
R Bitmap
llcgprs.sacksfb Supervisory function bits
Unsigned 24-bit integer
Supervisory functions bits
llcgprs.sapi SAPI
Unsigned 8-bit integer
Service Access Point Identifier
llcgprs.sapib SAPI
Unsigned 8-bit integer
Service Access Point Identifier
llcgprs.sspare Spare
Unsigned 16-bit integer
Ignore Bit
llcgprs.tomdata TOM Message Capsule Byte
Unsigned 8-bit integer
tdb
llcgprs.tomhead TOM Header Byte
Unsigned 8-bit integer
thb
llcgprs.tompd TOM Protocol Discriminator
Unsigned 8-bit integer
TPD
llcgprs.u U format
Unsigned 8-bit integer
U frame format
llcgprs.ucom Command/Response
Unsigned 8-bit integer
Commands and Responses
llcgprs.ui UI format
Unsigned 16-bit integer
UI frame format
llcgprs.ui_sp_bit Spare bits
Unsigned 16-bit integer
Spare bits
llcgprs.xidbyte Parameter Byte
Unsigned 8-bit integer
Data
llcgprs.xidlen1 Length
Unsigned 8-bit integer
Len
llcgprs.xidlen2 Length continued
Unsigned 8-bit integer
Len
llcgprs.xidspare Spare
Unsigned 8-bit integer
Ignore
llcgprs.xidtype Type
Unsigned 8-bit integer
Type
llcgprs.xidxl XL Bit
Unsigned 8-bit integer
XL
llc.cisco_pid PID
Unsigned 16-bit integer
llc.control Control
Unsigned 16-bit integer
llc.control.f Final
Boolean
llc.control.ftype Frame type
Unsigned 16-bit integer
llc.control.n_r N(R)
Unsigned 16-bit integer
llc.control.n_s N(S)
Unsigned 16-bit integer
llc.control.p Poll
Boolean
llc.control.s_ftype Supervisory frame type
Unsigned 16-bit integer
llc.control.u_modifier_cmd Command
Unsigned 8-bit integer
llc.control.u_modifier_resp Response
Unsigned 8-bit integer
llc.dsap DSAP
Unsigned 8-bit integer
DSAP - 7 Most Significant Bits only
llc.dsap.ig IG Bit
Boolean
Individual/Group - Least Significant Bit only
llc.extreme_pid PID
Unsigned 16-bit integer
llc.nortel_pid PID
Unsigned 16-bit integer
llc.oui Organization Code
Unsigned 24-bit integer
llc.pid Protocol ID
Unsigned 16-bit integer
llc.ssap SSAP
Unsigned 8-bit integer
SSAP - 7 Most Significant Bits only
llc.ssap.cr CR Bit
Boolean
Command/Response - Least Significant Bit only
llc.type Type
Unsigned 16-bit integer
llc.wlccp_pid PID
Unsigned 16-bit integer
basicxid.llc.xid.format XID Format
Unsigned 8-bit integer
basicxid.llc.xid.types LLC Types/Classes
Unsigned 8-bit integer
basicxid.llc.xid.wsize Receive Window Size
Unsigned 8-bit integer
logotypecertextn.LogotypeExtn LogotypeExtn
No value
logotypecertextn.LogotypeExtn
logotypecertextn.audio audio
Unsigned 32-bit integer
logotypecertextn.SEQUENCE_OF_LogotypeAudio
logotypecertextn.audioDetails audioDetails
No value
logotypecertextn.LogotypeDetails
logotypecertextn.audioInfo audioInfo
No value
logotypecertextn.LogotypeAudioInfo
logotypecertextn.audio_item Item
No value
logotypecertextn.LogotypeAudio
logotypecertextn.channels channels
Signed 32-bit integer
logotypecertextn.INTEGER
logotypecertextn.communityLogos communityLogos
Unsigned 32-bit integer
logotypecertextn.SEQUENCE_OF_LogotypeInfo
logotypecertextn.communityLogos_item Item
Unsigned 32-bit integer
logotypecertextn.LogotypeInfo
logotypecertextn.direct direct
No value
logotypecertextn.LogotypeData
logotypecertextn.fileSize fileSize
Signed 32-bit integer
logotypecertextn.INTEGER
logotypecertextn.hashAlg hashAlg
No value
x509af.AlgorithmIdentifier
logotypecertextn.hashValue hashValue
Byte array
logotypecertextn.OCTET_STRING
logotypecertextn.image image
Unsigned 32-bit integer
logotypecertextn.SEQUENCE_OF_LogotypeImage
logotypecertextn.imageDetails imageDetails
No value
logotypecertextn.LogotypeDetails
logotypecertextn.imageInfo imageInfo
No value
logotypecertextn.LogotypeImageInfo
logotypecertextn.image_item Item
No value
logotypecertextn.LogotypeImage
logotypecertextn.indirect indirect
No value
logotypecertextn.LogotypeReference
logotypecertextn.info info
Unsigned 32-bit integer
logotypecertextn.LogotypeInfo
logotypecertextn.issuerLogo issuerLogo
Unsigned 32-bit integer
logotypecertextn.LogotypeInfo
logotypecertextn.language language
String
logotypecertextn.IA5String
logotypecertextn.logotypeHash logotypeHash
Unsigned 32-bit integer
logotypecertextn.SEQUENCE_SIZE_1_MAX_OF_HashAlgAndValue
logotypecertextn.logotypeHash_item Item
No value
logotypecertextn.HashAlgAndValue
logotypecertextn.logotypeType logotypeType
logotypecertextn.OBJECT_IDENTIFIER
logotypecertextn.logotypeURI logotypeURI
Unsigned 32-bit integer
logotypecertextn.T_logotypeURI
logotypecertextn.logotypeURI_item Item
String
logotypecertextn.T_logotypeURI_item
logotypecertextn.mediaType mediaType
String
logotypecertextn.IA5String
logotypecertextn.numBits numBits
Signed 32-bit integer
logotypecertextn.INTEGER
logotypecertextn.otherLogos otherLogos
Unsigned 32-bit integer
logotypecertextn.SEQUENCE_OF_OtherLogotypeInfo
logotypecertextn.otherLogos_item Item
No value
logotypecertextn.OtherLogotypeInfo
logotypecertextn.playTime playTime
Signed 32-bit integer
logotypecertextn.INTEGER
logotypecertextn.refStructHash refStructHash
Unsigned 32-bit integer
logotypecertextn.SEQUENCE_SIZE_1_MAX_OF_HashAlgAndValue
logotypecertextn.refStructHash_item Item
No value
logotypecertextn.HashAlgAndValue
logotypecertextn.refStructURI refStructURI
Unsigned 32-bit integer
logotypecertextn.T_refStructURI
logotypecertextn.refStructURI_item Item
String
logotypecertextn.T_refStructURI_item
logotypecertextn.resolution resolution
Unsigned 32-bit integer
logotypecertextn.LogotypeImageResolution
logotypecertextn.sampleRate sampleRate
Signed 32-bit integer
logotypecertextn.INTEGER
logotypecertextn.subjectLogo subjectLogo
Unsigned 32-bit integer
logotypecertextn.LogotypeInfo
logotypecertextn.tableSize tableSize
Signed 32-bit integer
logotypecertextn.INTEGER
logotypecertextn.type type
Signed 32-bit integer
logotypecertextn.LogotypeImageType
logotypecertextn.xSize xSize
Signed 32-bit integer
logotypecertextn.INTEGER
logotypecertextn.ySize ySize
Signed 32-bit integer
logotypecertextn.INTEGER
ascend.chunk WDD Chunk
Unsigned 32-bit integer
ascend.number Called number
String
ascend.sess Session ID
Unsigned 32-bit integer
ascend.task Task
Unsigned 32-bit integer
ascend.type Link type
Unsigned 32-bit integer
ascend.user User name
String
macctrl.pause Pause
Unsigned 16-bit integer
MAC control Pause
macctrl.quanta Quanta
Unsigned 16-bit integer
MAC control quanta
mdshdr.crc CRC
Unsigned 32-bit integer
mdshdr.dstidx Dst Index
Unsigned 16-bit integer
mdshdr.eof EOF
Unsigned 8-bit integer
mdshdr.plen Packet Len
Unsigned 16-bit integer
mdshdr.sof SOF
Unsigned 8-bit integer
mdshdr.span SPAN Frame
Unsigned 8-bit integer
mdshdr.srcidx Src Index
Unsigned 16-bit integer
mdshdr.vsan VSAN
Unsigned 16-bit integer
megaco._h324_h223capr h324/h223capr
String
h324/h223capr
megaco.audit Audit Descriptor
String
Audit Descriptor of the megaco Command
megaco.command Command
String
Command of this message
megaco.command_line Command line
String
Commands of this message
megaco.context Context
String
Context ID of this massage
megaco.ctx Context
Unsigned 32-bit integer
megaco.ctx.cmd Command in Frame
Frame number
megaco.ctx.term Termination
String
megaco.ctx.term.bir BIR
String
megaco.ctx.term.nsap NSAP
String
megaco.ctx.term.type Type
Unsigned 32-bit integer
megaco.digitmap DigitMap Descriptor
String
DigitMap Descriptor of the megaco Command
megaco.ds_dscp ds/dscp
String
ds/dscp Differentiated Services Code Point
megaco.error ERROR Descriptor
String
Error Descriptor of the megaco Command
megaco.error_frame ERROR frame
String
Syntax error
megaco.eventbuffercontrol Event Buffer Control
String
Event Buffer Control in Termination State Descriptor
megaco.events Events Descriptor
String
Events Descriptor of the megaco Command
megaco.h245 h245
String
Embedded H.245 message
megaco.h245.h223Capability h223Capability
No value
megaco.h245.H223Capability
megaco.h324_muxtbl_in h324/muxtbl_in
String
h324/muxtbl_in
megaco.h324_muxtbl_out h324/muxtbl_out
String
h324/muxtbl_out
megaco.localcontroldescriptor Local Control Descriptor
String
Local Control Descriptor in Media Descriptor
megaco.localdescriptor Local Descriptor
String
Local Descriptor in Media Descriptor
megaco.mId MediagatewayID
String
Mediagateway ID
megaco.media Media Descriptor
String
Media Descriptor of the megaco Command
megaco.mode Mode
String
Mode sendonly/receiveonly/inactive/loopback
megaco.modem Modem Descriptor
String
Modem Descriptor of the megaco Command
megaco.multiplex Multiplex Descriptor
String
Multiplex Descriptor of the megaco Command
megaco.observedevents Observed Events Descriptor
String
Observed Events Descriptor of the megaco Command
megaco.packagesdescriptor Packages Descriptor
String
Packages Descriptor
megaco.pkgdname pkgdName
String
PackageName SLASH ItemID
megaco.remotedescriptor Remote Descriptor
String
Remote Descriptor in Media Descriptor
megaco.requestid RequestID
String
RequestID in Events or Observedevents Descriptor
megaco.reservegroup Reserve Group
String
Reserve Group on or off
megaco.reservevalue Reserve Value
String
Reserve Value on or off
megaco.servicechange Service Change Descriptor
String
Service Change Descriptor of the megaco Command
megaco.servicestates Service State
String
Service States in Termination State Descriptor
megaco.signal Signal Descriptor
String
Signal Descriptor of the megaco Command
megaco.statistics Statistics Descriptor
String
Statistics Descriptor of the megaco Command
megaco.streamid StreamID
String
StreamID in the Media Descriptor
megaco.termid Termination ID
String
Termination ID of this Command
megaco.terminationstate Termination State Descriptor
String
Termination State Descriptor in Media Descriptor
megaco.topology Topology Descriptor
String
Topology Descriptor of the megaco Command
megaco.transaction Transaction
String
Message Originator
megaco.transid Transaction ID
String
Transaction ID of this message
megaco.version Version
String
Version
mime_multipart.header.content-disposition Content-Disposition
String
RFC 2183: Content-Disposition Header
mime_multipart.header.content-encoding Content-Encoding
String
Content-Encoding Header
mime_multipart.header.content-id Content-Id
String
RFC 2045: Content-Id Header
mime_multipart.header.content-language Content-Language
String
Content-Language Header
mime_multipart.header.content-length Content-Length
String
Content-Length Header
mime_multipart.header.content-transfer-encoding Content-Transfer-Encoding
String
RFC 2045: Content-Transfer-Encoding Header
mime_multipart.header.content-type Content-Type
String
Content-Type Header
mime_multipart.part Encapsulated multipart part
String
Encapsulated multipart part
mime_multipart.type Type
String
MIME multipart encapsulation type
mms.AlternateAccess_item Item
Unsigned 32-bit integer
mms.AlternateAccess_item
mms.FileName_item Item
String
mms.GraphicString
mms.ScatteredAccessDescription_item Item
No value
mms.ScatteredAccessDescription_item
mms.Write_Response_item Item
Unsigned 32-bit integer
mms.Write_Response_item
mms.aaSpecific aaSpecific
No value
mms.NULL
mms.aa_specific aa-specific
String
mms.Identifier
mms.abortOnTimeOut abortOnTimeOut
Boolean
mms.BOOLEAN
mms.acceptableDelay acceptableDelay
Signed 32-bit integer
mms.Unsigned32
mms.access access
Signed 32-bit integer
mms.T_access
mms.accesst accesst
Unsigned 32-bit integer
mms.AlternateAccessSelection
mms.acknowledgeEventNotification acknowledgeEventNotification
No value
mms.AcknowledgeEventNotification_Request
mms.acknowledgedState acknowledgedState
Signed 32-bit integer
mms.EC_State
mms.acknowledgmentFilter acknowledgmentFilter
Signed 32-bit integer
mms.T_acknowledgmentFilter
mms.actionResult actionResult
No value
mms.T_actionResult
mms.active-to-disabled active-to-disabled
Boolean
mms.active-to-idle active-to-idle
Boolean
mms.activeAlarmsOnly activeAlarmsOnly
Boolean
mms.BOOLEAN
mms.additionalCode additionalCode
Signed 32-bit integer
mms.INTEGER
mms.additionalDescription additionalDescription
String
mms.VisibleString
mms.additionalDetail additionalDetail
No value
mms.JOU_Additional_Detail
mms.address address
Unsigned 32-bit integer
mms.Address
mms.ae_invocation_id ae-invocation-id
Signed 32-bit integer
mms.T_ae_invocation_id
mms.ae_qualifier ae-qualifier
Unsigned 32-bit integer
mms.T_ae_qualifier
mms.alarmAcknowledgementRule alarmAcknowledgementRule
Signed 32-bit integer
mms.AlarmAckRule
mms.alarmAcknowledgmentRule alarmAcknowledgmentRule
Signed 32-bit integer
mms.AlarmAckRule
mms.alarmSummaryReports alarmSummaryReports
Boolean
mms.BOOLEAN
mms.allElements allElements
No value
mms.NULL
mms.alterEventConditionMonitoring alterEventConditionMonitoring
No value
mms.AlterEventConditionMonitoring_Request
mms.alterEventEnrollment alterEventEnrollment
No value
mms.AlterEventEnrollment_Request
mms.alternateAccess alternateAccess
Unsigned 32-bit integer
mms.AlternateAccess
mms.annotation annotation
String
mms.VisibleString
mms.any-to-deleted any-to-deleted
Boolean
mms.ap_invocation_id ap-invocation-id
Signed 32-bit integer
mms.T_ap_invocation_id
mms.ap_title ap-title
Unsigned 32-bit integer
mms.T_ap_title
mms.applicationReference applicationReference
No value
mms.ApplicationReference
mms.applicationToPreempt applicationToPreempt
No value
mms.ApplicationReference
mms.application_reference application-reference
Signed 32-bit integer
mms.T_application_reference
mms.array array
No value
mms.T_array
mms.array_item Item
Unsigned 32-bit integer
mms.Data
mms.attachToEventCondition attachToEventCondition
Boolean
mms.attachToSemaphore attachToSemaphore
Boolean
mms.attach_To_Event_Condition attach-To-Event-Condition
No value
mms.AttachToEventCondition
mms.attach_To_Semaphore attach-To-Semaphore
No value
mms.AttachToSemaphore
mms.bcd bcd
Signed 32-bit integer
mms.Unsigned8
mms.binary_time binary-time
Boolean
mms.BOOLEAN
mms.bit_string bit-string
Signed 32-bit integer
mms.Integer32
mms.boolean boolean
No value
mms.NULL
mms.booleanArray booleanArray
Byte array
mms.BIT_STRING
mms.cancel cancel
Signed 32-bit integer
mms.T_cancel
mms.cancel_ErrorPDU cancel-ErrorPDU
No value
mms.Cancel_ErrorPDU
mms.cancel_RequestPDU cancel-RequestPDU
Signed 32-bit integer
mms.Cancel_RequestPDU
mms.cancel_ResponsePDU cancel-ResponsePDU
Signed 32-bit integer
mms.Cancel_ResponsePDU
mms.cancel_errorPDU cancel-errorPDU
Signed 32-bit integer
mms.T_cancel_errorPDU
mms.cancel_requestPDU cancel-requestPDU
Signed 32-bit integer
mms.T_cancel_requestPDU
mms.cancel_responsePDU cancel-responsePDU
Signed 32-bit integer
mms.T_cancel_responsePDU
mms.causingTransitions causingTransitions
Byte array
mms.Transitions
mms.cei cei
Boolean
mms.class class
Signed 32-bit integer
mms.T_class
mms.clientApplication clientApplication
No value
mms.ApplicationReference
mms.coded coded
No value
acse.EXTERNALt
mms.component component
String
mms.Identifier
mms.componentName componentName
String
mms.Identifier
mms.componentType componentType
Unsigned 32-bit integer
mms.TypeSpecification
mms.components components
Unsigned 32-bit integer
mms.T_components
mms.components_item Item
No value
mms.T_components_item
mms.conclude conclude
Signed 32-bit integer
mms.T_conclude
mms.conclude_ErrorPDU conclude-ErrorPDU
No value
mms.Conclude_ErrorPDU
mms.conclude_RequestPDU conclude-RequestPDU
No value
mms.Conclude_RequestPDU
mms.conclude_ResponsePDU conclude-ResponsePDU
No value
mms.Conclude_ResponsePDU
mms.conclude_errorPDU conclude-errorPDU
Signed 32-bit integer
mms.T_conclude_errorPDU
mms.conclude_requestPDU conclude-requestPDU
Signed 32-bit integer
mms.T_conclude_requestPDU
mms.conclude_responsePDU conclude-responsePDU
Signed 32-bit integer
mms.T_conclude_responsePDU
mms.confirmedServiceRequest confirmedServiceRequest
Unsigned 32-bit integer
mms.ConfirmedServiceRequest
mms.confirmedServiceResponse confirmedServiceResponse
Unsigned 32-bit integer
mms.ConfirmedServiceResponse
mms.confirmed_ErrorPDU confirmed-ErrorPDU
No value
mms.Confirmed_ErrorPDU
mms.confirmed_RequestPDU confirmed-RequestPDU
No value
mms.Confirmed_RequestPDU
mms.confirmed_ResponsePDU confirmed-ResponsePDU
No value
mms.Confirmed_ResponsePDU
mms.confirmed_errorPDU confirmed-errorPDU
Signed 32-bit integer
mms.T_confirmed_errorPDU
mms.confirmed_requestPDU confirmed-requestPDU
Signed 32-bit integer
mms.T_confirmed_requestPDU
mms.confirmed_responsePDU confirmed-responsePDU
Signed 32-bit integer
mms.T_confirmed_responsePDU
mms.continueAfter continueAfter
String
mms.Identifier
mms.controlTimeOut controlTimeOut
Signed 32-bit integer
mms.Unsigned32
mms.createJournal createJournal
No value
mms.CreateJournal_Request
mms.createProgramInvocation createProgramInvocation
No value
mms.CreateProgramInvocation_Request
mms.cs_request_detail cs-request-detail
Unsigned 32-bit integer
mms.CS_Request_Detail
mms.currentEntries currentEntries
Signed 32-bit integer
mms.Unsigned32
mms.currentFileName currentFileName
Unsigned 32-bit integer
mms.FileName
mms.currentName currentName
Unsigned 32-bit integer
mms.ObjectName
mms.currentState currentState
Signed 32-bit integer
mms.EC_State
mms.data data
No value
mms.T_data
mms.defineEventAction defineEventAction
No value
mms.DefineEventAction_Request
mms.defineEventCondition defineEventCondition
No value
mms.DefineEventCondition_Request
mms.defineEventEnrollment defineEventEnrollment
No value
mms.DefineEventEnrollment_Request
mms.defineEventEnrollment_Error defineEventEnrollment-Error
Unsigned 32-bit integer
mms.DefineEventEnrollment_Error
mms.defineNamedType defineNamedType
No value
mms.DefineNamedType_Request
mms.defineNamedVariable defineNamedVariable
No value
mms.DefineNamedVariable_Request
mms.defineNamedVariableList defineNamedVariableList
No value
mms.DefineNamedVariableList_Request
mms.defineScatteredAccess defineScatteredAccess
No value
mms.DefineScatteredAccess_Request
mms.defineSemaphore defineSemaphore
No value
mms.DefineSemaphore_Request
mms.definition definition
Signed 32-bit integer
mms.T_definition
mms.deleteDomain deleteDomain
String
mms.DeleteDomain_Request
mms.deleteEventAction deleteEventAction
Unsigned 32-bit integer
mms.DeleteEventAction_Request
mms.deleteEventCondition deleteEventCondition
Unsigned 32-bit integer
mms.DeleteEventCondition_Request
mms.deleteEventEnrollment deleteEventEnrollment
Unsigned 32-bit integer
mms.DeleteEventEnrollment_Request
mms.deleteJournal deleteJournal
No value
mms.DeleteJournal_Request
mms.deleteNamedType deleteNamedType
No value
mms.DeleteNamedType_Request
mms.deleteNamedVariableList deleteNamedVariableList
No value
mms.DeleteNamedVariableList_Request
mms.deleteProgramInvocation deleteProgramInvocation
String
mms.DeleteProgramInvocation_Request
mms.deleteSemaphore deleteSemaphore
Unsigned 32-bit integer
mms.DeleteSemaphore_Request
mms.deleteVariableAccess deleteVariableAccess
No value
mms.DeleteVariableAccess_Request
mms.destinationFile destinationFile
Unsigned 32-bit integer
mms.FileName
mms.disabled-to-active disabled-to-active
Boolean
mms.disabled-to-idle disabled-to-idle
Boolean
mms.discard discard
No value
mms.ServiceError
mms.domain domain
String
mms.Identifier
mms.domainId domainId
String
mms.Identifier
mms.domainName domainName
String
mms.Identifier
mms.domainSpecific domainSpecific
String
mms.Identifier
mms.domain_specific domain-specific
No value
mms.T_domain_specific
mms.downloadSegment downloadSegment
String
mms.DownloadSegment_Request
mms.duration duration
Signed 32-bit integer
mms.EE_Duration
mms.ea ea
Unsigned 32-bit integer
mms.ObjectName
mms.ec ec
Unsigned 32-bit integer
mms.ObjectName
mms.echo echo
Boolean
mms.BOOLEAN
mms.elementType elementType
Unsigned 32-bit integer
mms.TypeSpecification
mms.enabled enabled
Boolean
mms.BOOLEAN
mms.encodedString encodedString
No value
acse.EXTERNALt
mms.endingTime endingTime
Byte array
mms.TimeOfDay
mms.enrollementState enrollementState
Signed 32-bit integer
mms.EE_State
mms.enrollmentClass enrollmentClass
Signed 32-bit integer
mms.EE_Class
mms.enrollmentsOnly enrollmentsOnly
Boolean
mms.BOOLEAN
mms.entryClass entryClass
Signed 32-bit integer
mms.T_entryClass
mms.entryContent entryContent
No value
mms.EntryContent
mms.entryForm entryForm
Unsigned 32-bit integer
mms.T_entryForm
mms.entryId entryId
Byte array
mms.OCTET_STRING
mms.entryIdToStartAfter entryIdToStartAfter
Byte array
mms.OCTET_STRING
mms.entryIdentifier entryIdentifier
Byte array
mms.OCTET_STRING
mms.entrySpecification entrySpecification
Byte array
mms.OCTET_STRING
mms.entryToStartAfter entryToStartAfter
No value
mms.T_entryToStartAfter
mms.errorClass errorClass
Unsigned 32-bit integer
mms.T_errorClass
mms.evaluationInterval evaluationInterval
Signed 32-bit integer
mms.Unsigned32
mms.event event
No value
mms.T_event
mms.eventActioName eventActioName
Unsigned 32-bit integer
mms.ObjectName
mms.eventAction eventAction
Unsigned 32-bit integer
mms.ObjectName
mms.eventActionName eventActionName
Unsigned 32-bit integer
mms.ObjectName
mms.eventActionResult eventActionResult
Unsigned 32-bit integer
mms.T_eventActionResult
mms.eventCondition eventCondition
Unsigned 32-bit integer
mms.ObjectName
mms.eventConditionName eventConditionName
Unsigned 32-bit integer
mms.ObjectName
mms.eventConditionTransition eventConditionTransition
Byte array
mms.Transitions
mms.eventConditionTransitions eventConditionTransitions
Byte array
mms.Transitions
mms.eventEnrollmentName eventEnrollmentName
Unsigned 32-bit integer
mms.ObjectName
mms.eventEnrollmentNames eventEnrollmentNames
Unsigned 32-bit integer
mms.SEQUENCE_OF_ObjectName
mms.eventEnrollmentNames_item Item
Unsigned 32-bit integer
mms.ObjectName
mms.eventNotification eventNotification
No value
mms.EventNotification
mms.executionArgument executionArgument
Unsigned 32-bit integer
mms.T_executionArgument
mms.extendedObjectClass extendedObjectClass
Unsigned 32-bit integer
mms.T_extendedObjectClass
mms.failure failure
Signed 32-bit integer
mms.DataAccessError
mms.file file
Signed 32-bit integer
mms.T_file
mms.fileAttributes fileAttributes
No value
mms.FileAttributes
mms.fileClose fileClose
Signed 32-bit integer
mms.FileClose_Request
mms.fileData fileData
Byte array
mms.OCTET_STRING
mms.fileDelete fileDelete
Unsigned 32-bit integer
mms.FileDelete_Request
mms.fileDirectory fileDirectory
No value
mms.FileDirectory_Request
mms.fileName fileName
Unsigned 32-bit integer
mms.FileName
mms.fileOpen fileOpen
No value
mms.FileOpen_Request
mms.fileRead fileRead
Signed 32-bit integer
mms.FileRead_Request
mms.fileRename fileRename
No value
mms.FileRename_Request
mms.fileSpecification fileSpecification
Unsigned 32-bit integer
mms.FileName
mms.filenName filenName
Unsigned 32-bit integer
mms.FileName
mms.filename filename
Unsigned 32-bit integer
mms.FileName
mms.floating_point floating-point
Byte array
mms.FloatingPoint
mms.foo foo
Signed 32-bit integer
mms.INTEGER
mms.freeNamedToken freeNamedToken
String
mms.Identifier
mms.frsmID frsmID
Signed 32-bit integer
mms.Integer32
mms.generalized_time generalized-time
No value
mms.NULL
mms.getAlarmEnrollmentSummary getAlarmEnrollmentSummary
No value
mms.GetAlarmEnrollmentSummary_Request
mms.getAlarmSummary getAlarmSummary
No value
mms.GetAlarmSummary_Request
mms.getCapabilityList getCapabilityList
No value
mms.GetCapabilityList_Request
mms.getDomainAttributes getDomainAttributes
String
mms.GetDomainAttributes_Request
mms.getEventActionAttributes getEventActionAttributes
Unsigned 32-bit integer
mms.GetEventActionAttributes_Request
mms.getEventConditionAttributes getEventConditionAttributes
Unsigned 32-bit integer
mms.GetEventConditionAttributes_Request
mms.getEventEnrollmentAttributes getEventEnrollmentAttributes
No value
mms.GetEventEnrollmentAttributes_Request
mms.getNameList getNameList
No value
mms.GetNameList_Request
mms.getNamedTypeAttributes getNamedTypeAttributes
Unsigned 32-bit integer
mms.GetNamedTypeAttributes_Request
mms.getNamedVariableListAttributes getNamedVariableListAttributes
Unsigned 32-bit integer
mms.GetNamedVariableListAttributes_Request
mms.getProgramInvocationAttributes getProgramInvocationAttributes
String
mms.GetProgramInvocationAttributes_Request
mms.getScatteredAccessAttributes getScatteredAccessAttributes
Unsigned 32-bit integer
mms.GetScatteredAccessAttributes_Request
mms.getVariableAccessAttributes getVariableAccessAttributes
Unsigned 32-bit integer
mms.GetVariableAccessAttributes_Request
mms.hungNamedToken hungNamedToken
String
mms.Identifier
mms.identify identify
No value
mms.Identify_Request
mms.idle-to-active idle-to-active
Boolean
mms.idle-to-disabled idle-to-disabled
Boolean
mms.index index
Signed 32-bit integer
mms.Unsigned32
mms.indexRange indexRange
No value
mms.T_indexRange
mms.informationReport informationReport
No value
mms.InformationReport
mms.initialPosition initialPosition
Signed 32-bit integer
mms.Unsigned32
mms.initializeJournal initializeJournal
No value
mms.InitializeJournal_Request
mms.initiate initiate
Signed 32-bit integer
mms.T_initiate
mms.initiateDownloadSequence initiateDownloadSequence
No value
mms.InitiateDownloadSequence_Request
mms.initiateUploadSequence initiateUploadSequence
String
mms.InitiateUploadSequence_Request
mms.initiate_ErrorPDU initiate-ErrorPDU
No value
mms.Initiate_ErrorPDU
mms.initiate_RequestPDU initiate-RequestPDU
No value
mms.Initiate_RequestPDU
mms.initiate_ResponsePDU initiate-ResponsePDU
No value
mms.Initiate_ResponsePDU
mms.input input
No value
mms.Input_Request
mms.inputTimeOut inputTimeOut
Signed 32-bit integer
mms.Unsigned32
mms.integer integer
Signed 32-bit integer
mms.Unsigned8
mms.invalidated invalidated
No value
mms.NULL
mms.invokeID invokeID
Signed 32-bit integer
mms.Unsigned32
mms.itemId itemId
String
mms.Identifier
mms.journalName journalName
Unsigned 32-bit integer
mms.ObjectName
mms.kill kill
No value
mms.Kill_Request
mms.lastModified lastModified
String
mms.GeneralizedTime
mms.leastSevere leastSevere
Signed 32-bit integer
mms.Unsigned8
mms.limitSpecification limitSpecification
No value
mms.T_limitSpecification
mms.limitingEntry limitingEntry
Byte array
mms.OCTET_STRING
mms.limitingTime limitingTime
Byte array
mms.TimeOfDay
mms.listOfAbstractSyntaxes listOfAbstractSyntaxes
Unsigned 32-bit integer
mms.T_listOfAbstractSyntaxes
mms.listOfAbstractSyntaxes_item Item
mms.OBJECT_IDENTIFIER
mms.listOfAccessResult listOfAccessResult
Unsigned 32-bit integer
mms.SEQUENCE_OF_AccessResult
mms.listOfAccessResult_item Item
Unsigned 32-bit integer
mms.AccessResult
mms.listOfAlarmEnrollmentSummary listOfAlarmEnrollmentSummary
Unsigned 32-bit integer
mms.SEQUENCE_OF_AlarmEnrollmentSummary
mms.listOfAlarmEnrollmentSummary_item Item
No value
mms.AlarmEnrollmentSummary
mms.listOfAlarmSummary listOfAlarmSummary
Unsigned 32-bit integer
mms.SEQUENCE_OF_AlarmSummary
mms.listOfAlarmSummary_item Item
No value
mms.AlarmSummary
mms.listOfCapabilities listOfCapabilities
Unsigned 32-bit integer
mms.T_listOfCapabilities
mms.listOfCapabilities_item Item
String
mms.VisibleString
mms.listOfData listOfData
Unsigned 32-bit integer
mms.SEQUENCE_OF_Data
mms.listOfData_item Item
Unsigned 32-bit integer
mms.Data
mms.listOfDirectoryEntry listOfDirectoryEntry
Unsigned 32-bit integer
mms.SEQUENCE_OF_DirectoryEntry
mms.listOfDirectoryEntry_item Item
No value
mms.DirectoryEntry
mms.listOfDomainName listOfDomainName
Unsigned 32-bit integer
mms.SEQUENCE_OF_Identifier
mms.listOfDomainName_item Item
String
mms.Identifier
mms.listOfDomainNames listOfDomainNames
Unsigned 32-bit integer
mms.SEQUENCE_OF_Identifier
mms.listOfDomainNames_item Item
String
mms.Identifier
mms.listOfEventEnrollment listOfEventEnrollment
Unsigned 32-bit integer
mms.SEQUENCE_OF_EventEnrollment
mms.listOfEventEnrollment_item Item
No value
mms.EventEnrollment
mms.listOfIdentifier listOfIdentifier
Unsigned 32-bit integer
mms.SEQUENCE_OF_Identifier
mms.listOfIdentifier_item Item
String
mms.Identifier
mms.listOfJournalEntry listOfJournalEntry
Unsigned 32-bit integer
mms.SEQUENCE_OF_JournalEntry
mms.listOfJournalEntry_item Item
No value
mms.JournalEntry
mms.listOfModifier listOfModifier
Unsigned 32-bit integer
mms.SEQUENCE_OF_Modifier
mms.listOfModifier_item Item
Unsigned 32-bit integer
mms.Modifier
mms.listOfName listOfName
Unsigned 32-bit integer
mms.SEQUENCE_OF_ObjectName
mms.listOfName_item Item
Unsigned 32-bit integer
mms.ObjectName
mms.listOfNamedTokens listOfNamedTokens
Unsigned 32-bit integer
mms.T_listOfNamedTokens
mms.listOfNamedTokens_item Item
Unsigned 32-bit integer
mms.T_listOfNamedTokens_item
mms.listOfOutputData listOfOutputData
Unsigned 32-bit integer
mms.T_listOfOutputData
mms.listOfOutputData_item Item
String
mms.VisibleString
mms.listOfProgramInvocations listOfProgramInvocations
Unsigned 32-bit integer
mms.SEQUENCE_OF_Identifier
mms.listOfProgramInvocations_item Item
String
mms.Identifier
mms.listOfPromptData listOfPromptData
Unsigned 32-bit integer
mms.T_listOfPromptData
mms.listOfPromptData_item Item
String
mms.VisibleString
mms.listOfSemaphoreEntry listOfSemaphoreEntry
Unsigned 32-bit integer
mms.SEQUENCE_OF_SemaphoreEntry
mms.listOfSemaphoreEntry_item Item
No value
mms.SemaphoreEntry
mms.listOfTypeName listOfTypeName
Unsigned 32-bit integer
mms.SEQUENCE_OF_ObjectName
mms.listOfTypeName_item Item
Unsigned 32-bit integer
mms.ObjectName
mms.listOfVariable listOfVariable
Unsigned 32-bit integer
mms.T_listOfVariable
mms.listOfVariableListName listOfVariableListName
Unsigned 32-bit integer
mms.SEQUENCE_OF_ObjectName
mms.listOfVariableListName_item Item
Unsigned 32-bit integer
mms.ObjectName
mms.listOfVariable_item Item
No value
mms.T_listOfVariable_item
mms.listOfVariables listOfVariables
Unsigned 32-bit integer
mms.T_listOfVariables
mms.listOfVariables_item Item
String
mms.VisibleString
mms.loadData loadData
Unsigned 32-bit integer
mms.T_loadData
mms.loadDomainContent loadDomainContent
No value
mms.LoadDomainContent_Request
mms.localDetail localDetail
Byte array
mms.BIT_STRING_SIZE_0_128
mms.localDetailCalled localDetailCalled
Signed 32-bit integer
mms.Integer32
mms.localDetailCalling localDetailCalling
Signed 32-bit integer
mms.Integer32
mms.lowIndex lowIndex
Signed 32-bit integer
mms.Unsigned32
mms.mmsDeletable mmsDeletable
Boolean
mms.BOOLEAN
mms.mmsInitRequestDetail mmsInitRequestDetail
No value
mms.InitRequestDetail
mms.mmsInitResponseDetail mmsInitResponseDetail
No value
mms.InitResponseDetail
mms.modelName modelName
String
mms.VisibleString
mms.modifierPosition modifierPosition
Signed 32-bit integer
mms.Unsigned32
mms.monitor monitor
Boolean
mms.BOOLEAN
mms.monitorType monitorType
Boolean
mms.BOOLEAN
mms.monitoredVariable monitoredVariable
Unsigned 32-bit integer
mms.VariableSpecification
mms.moreFollows moreFollows
Boolean
mms.BOOLEAN
mms.mostSevere mostSevere
Signed 32-bit integer
mms.Unsigned8
mms.name name
Unsigned 32-bit integer
mms.ObjectName
mms.nameToStartAfter nameToStartAfter
String
mms.Identifier
mms.named named
No value
mms.T_named
mms.namedToken namedToken
String
mms.Identifier
mms.negociatedDataStructureNestingLevel negociatedDataStructureNestingLevel
Signed 32-bit integer
mms.Integer8
mms.negociatedMaxServOutstandingCalled negociatedMaxServOutstandingCalled
Signed 32-bit integer
mms.Integer16
mms.negociatedMaxServOutstandingCalling negociatedMaxServOutstandingCalling
Signed 32-bit integer
mms.Integer16
mms.negociatedParameterCBB negociatedParameterCBB
Byte array
mms.ParameterSupportOptions
mms.negociatedVersionNumber negociatedVersionNumber
Signed 32-bit integer
mms.Integer16
mms.newFileName newFileName
Unsigned 32-bit integer
mms.FileName
mms.newIdentifier newIdentifier
String
mms.Identifier
mms.noResult noResult
No value
mms.NULL
mms.non_coded non-coded
Byte array
mms.OCTET_STRING
mms.notificationLost notificationLost
Boolean
mms.BOOLEAN
mms.numberDeleted numberDeleted
Signed 32-bit integer
mms.Unsigned32
mms.numberMatched numberMatched
Signed 32-bit integer
mms.Unsigned32
mms.numberOfElements numberOfElements
Signed 32-bit integer
mms.Unsigned32
mms.numberOfEntries numberOfEntries
Signed 32-bit integer
mms.Integer32
mms.numberOfEventEnrollments numberOfEventEnrollments
Signed 32-bit integer
mms.Unsigned32
mms.numberOfHungTokens numberOfHungTokens
Signed 32-bit integer
mms.Unsigned16
mms.numberOfOwnedTokens numberOfOwnedTokens
Signed 32-bit integer
mms.Unsigned16
mms.numberOfTokens numberOfTokens
Signed 32-bit integer
mms.Unsigned16
mms.numbersOfTokens numbersOfTokens
Signed 32-bit integer
mms.Unsigned16
mms.numericAddress numericAddress
Signed 32-bit integer
mms.Unsigned32
mms.objId objId
No value
mms.NULL
mms.objectClass objectClass
Signed 32-bit integer
mms.T_objectClass
mms.objectScope objectScope
Unsigned 32-bit integer
mms.T_objectScope
mms.obtainFile obtainFile
No value
mms.ObtainFile_Request
mms.occurenceTime occurenceTime
Byte array
mms.TimeOfDay
mms.octet_string octet-string
Signed 32-bit integer
mms.Integer32
mms.operatorStationName operatorStationName
String
mms.Identifier
mms.originalInvokeID originalInvokeID
Signed 32-bit integer
mms.Unsigned32
mms.originatingApplication originatingApplication
No value
mms.ApplicationReference
mms.others others
Signed 32-bit integer
mms.INTEGER
mms.output output
No value
mms.Output_Request
mms.ownedNamedToken ownedNamedToken
String
mms.Identifier
mms.packed packed
Boolean
mms.BOOLEAN
mms.pdu_error pdu-error
Signed 32-bit integer
mms.T_pdu_error
mms.prio_rity prio-rity
Signed 32-bit integer
mms.Priority
mms.priority priority
Signed 32-bit integer
mms.Priority
mms.programInvocationName programInvocationName
String
mms.Identifier
mms.proposedDataStructureNestingLevel proposedDataStructureNestingLevel
Signed 32-bit integer
mms.Integer8
mms.proposedMaxServOutstandingCalled proposedMaxServOutstandingCalled
Signed 32-bit integer
mms.Integer16
mms.proposedMaxServOutstandingCalling proposedMaxServOutstandingCalling
Signed 32-bit integer
mms.Integer16
mms.proposedParameterCBB proposedParameterCBB
Byte array
mms.ParameterSupportOptions
mms.proposedVersionNumber proposedVersionNumber
Signed 32-bit integer
mms.Integer16
mms.rangeStartSpecification rangeStartSpecification
Unsigned 32-bit integer
mms.T_rangeStartSpecification
mms.rangeStopSpecification rangeStopSpecification
Unsigned 32-bit integer
mms.T_rangeStopSpecification
mms.read read
No value
mms.Read_Request
mms.readJournal readJournal
No value
mms.ReadJournal_Request
mms.real real
Boolean
mms.rejectPDU rejectPDU
No value
mms.RejectPDU
mms.rejectReason rejectReason
Unsigned 32-bit integer
mms.T_rejectReason
mms.relinquishControl relinquishControl
No value
mms.RelinquishControl_Request
mms.relinquishIfConnectionLost relinquishIfConnectionLost
Boolean
mms.BOOLEAN
mms.remainingAcceptableDelay remainingAcceptableDelay
Signed 32-bit integer
mms.Unsigned32
mms.remainingTimeOut remainingTimeOut
Signed 32-bit integer
mms.Unsigned32
mms.rename rename
No value
mms.Rename_Request
mms.reportActionStatus reportActionStatus
Signed 32-bit integer
mms.ReportEventActionStatus_Response
mms.reportEventActionStatus reportEventActionStatus
Unsigned 32-bit integer
mms.ReportEventActionStatus_Request
mms.reportEventConditionStatus reportEventConditionStatus
Unsigned 32-bit integer
mms.ReportEventConditionStatus_Request
mms.reportEventEnrollmentStatus reportEventEnrollmentStatus
Unsigned 32-bit integer
mms.ReportEventEnrollmentStatus_Request
mms.reportJournalStatus reportJournalStatus
Unsigned 32-bit integer
mms.ReportJournalStatus_Request
mms.reportPoolSemaphoreStatus reportPoolSemaphoreStatus
No value
mms.ReportPoolSemaphoreStatus_Request
mms.reportSemaphoreEntryStatus reportSemaphoreEntryStatus
No value
mms.ReportSemaphoreEntryStatus_Request
mms.reportSemaphoreStatus reportSemaphoreStatus
Unsigned 32-bit integer
mms.ReportSemaphoreStatus_Request
mms.requestDomainDownLoad requestDomainDownLoad
No value
mms.RequestDomainDownload_Response
mms.requestDomainDownload requestDomainDownload
No value
mms.RequestDomainDownload_Request
mms.requestDomainUpload requestDomainUpload
No value
mms.RequestDomainUpload_Request
mms.reset reset
No value
mms.Reset_Request
mms.resource resource
Signed 32-bit integer
mms.T_resource
mms.resume resume
No value
mms.Resume_Request
mms.reusable reusable
Boolean
mms.BOOLEAN
mms.revision revision
String
mms.VisibleString
mms.scatteredAccessDescription scatteredAccessDescription
Unsigned 32-bit integer
mms.ScatteredAccessDescription
mms.scatteredAccessName scatteredAccessName
Unsigned 32-bit integer
mms.ObjectName
mms.scopeOfDelete scopeOfDelete
Signed 32-bit integer
mms.T_scopeOfDelete
mms.scopeOfRequest scopeOfRequest
Signed 32-bit integer
mms.T_scopeOfRequest
mms.selectAccess selectAccess
Unsigned 32-bit integer
mms.T_selectAccess
mms.semaphoreName semaphoreName
Unsigned 32-bit integer
mms.ObjectName
mms.service service
Signed 32-bit integer
mms.T_service
mms.serviceError serviceError
No value
mms.ServiceError
mms.serviceSpecificInformation serviceSpecificInformation
Unsigned 32-bit integer
mms.T_serviceSpecificInformation
mms.service_preempt service-preempt
Signed 32-bit integer
mms.T_service_preempt
mms.servicesSupportedCalled servicesSupportedCalled
Byte array
mms.ServiceSupportOptions
mms.servicesSupportedCalling servicesSupportedCalling
Byte array
mms.ServiceSupportOptions
mms.severity severity
Signed 32-bit integer
mms.Unsigned8
mms.severityFilter severityFilter
No value
mms.T_severityFilter
mms.sharable sharable
Boolean
mms.BOOLEAN
mms.simpleString simpleString
String
mms.VisibleString
mms.sizeOfFile sizeOfFile
Signed 32-bit integer
mms.Unsigned32
mms.sourceFile sourceFile
Unsigned 32-bit integer
mms.FileName
mms.sourceFileServer sourceFileServer
No value
mms.ApplicationReference
mms.specific specific
Unsigned 32-bit integer
mms.SEQUENCE_OF_ObjectName
mms.specific_item Item
Unsigned 32-bit integer
mms.ObjectName
mms.specificationWithResult specificationWithResult
Boolean
mms.BOOLEAN
mms.start start
No value
mms.Start_Request
mms.startArgument startArgument
String
mms.VisibleString
mms.startingEntry startingEntry
Byte array
mms.OCTET_STRING
mms.startingTime startingTime
Byte array
mms.TimeOfDay
mms.state state
Signed 32-bit integer
mms.DomainState
mms.status status
Boolean
mms.Status_Request
mms.stop stop
No value
mms.Stop_Request
mms.storeDomainContent storeDomainContent
No value
mms.StoreDomainContent_Request
mms.str1 str1
Boolean
mms.str2 str2
Boolean
mms.structure structure
No value
mms.T_structure
mms.structure_item Item
Unsigned 32-bit integer
mms.Data
mms.success success
No value
mms.NULL
mms.symbolicAddress symbolicAddress
String
mms.VisibleString
mms.takeControl takeControl
No value
mms.TakeControl_Request
mms.terminateDownloadSequence terminateDownloadSequence
No value
mms.TerminateDownloadSequence_Request
mms.terminateUploadSequence terminateUploadSequence
Signed 32-bit integer
mms.TerminateUploadSequence_Request
mms.thirdParty thirdParty
No value
mms.ApplicationReference
mms.timeActiveAcknowledged timeActiveAcknowledged
Unsigned 32-bit integer
mms.EventTime
mms.timeIdleAcknowledged timeIdleAcknowledged
Unsigned 32-bit integer
mms.EventTime
mms.timeOfAcknowledgedTransition timeOfAcknowledgedTransition
Unsigned 32-bit integer
mms.EventTime
mms.timeOfDayT timeOfDayT
Byte array
mms.TimeOfDay
mms.timeOfLastTransitionToActive timeOfLastTransitionToActive
Unsigned 32-bit integer
mms.EventTime
mms.timeOfLastTransitionToIdle timeOfLastTransitionToIdle
Unsigned 32-bit integer
mms.EventTime
mms.timeSequenceIdentifier timeSequenceIdentifier
Signed 32-bit integer
mms.Unsigned32
mms.timeSpecification timeSpecification
Byte array
mms.TimeOfDay
mms.time_resolution time-resolution
Signed 32-bit integer
mms.T_time_resolution
mms.tpy tpy
Boolean
mms.transitionTime transitionTime
Unsigned 32-bit integer
mms.EventTime
mms.triggerEvent triggerEvent
No value
mms.TriggerEvent_Request
mms.typeName typeName
Unsigned 32-bit integer
mms.ObjectName
mms.typeSpecification typeSpecification
Unsigned 32-bit integer
mms.TypeSpecification
mms.ulsmID ulsmID
Signed 32-bit integer
mms.Integer32
mms.unacknowledgedState unacknowledgedState
Signed 32-bit integer
mms.T_unacknowledgedState
mms.unconfirmedPDU unconfirmedPDU
Signed 32-bit integer
mms.T_unconfirmedPDU
mms.unconfirmedService unconfirmedService
Unsigned 32-bit integer
mms.UnconfirmedService
mms.unconfirmed_PDU unconfirmed-PDU
No value
mms.Unconfirmed_PDU
mms.unconstrainedAddress unconstrainedAddress
Byte array
mms.OCTET_STRING
mms.undefined undefined
No value
mms.NULL
mms.unnamed unnamed
Unsigned 32-bit integer
mms.AlternateAccessSelection
mms.unsigned unsigned
Signed 32-bit integer
mms.Unsigned8
mms.unsolicitedStatus unsolicitedStatus
No value
mms.UnsolicitedStatus
mms.uploadInProgress uploadInProgress
Signed 32-bit integer
mms.Integer8
mms.uploadSegment uploadSegment
Signed 32-bit integer
mms.UploadSegment_Request
mms.vadr vadr
Boolean
mms.valt valt
Boolean
mms.valueSpecification valueSpecification
Unsigned 32-bit integer
mms.Data
mms.variableAccessSpecification variableAccessSpecification
Unsigned 32-bit integer
mms.VariableAccessSpecification
mms.variableAccessSpecificatn variableAccessSpecificatn
Unsigned 32-bit integer
mms.VariableAccessSpecification
mms.variableDescription variableDescription
No value
mms.T_variableDescription
mms.variableListName variableListName
Unsigned 32-bit integer
mms.ObjectName
mms.variableName variableName
Unsigned 32-bit integer
mms.ObjectName
mms.variableReference variableReference
Unsigned 32-bit integer
mms.VariableSpecification
mms.variableSpecification variableSpecification
Unsigned 32-bit integer
mms.VariableSpecification
mms.variableTag variableTag
String
mms.VisibleString
mms.vendorName vendorName
String
mms.VisibleString
mms.visible_string visible-string
Signed 32-bit integer
mms.Integer32
mms.vlis vlis
Boolean
mms.vmd vmd
No value
mms.NULL
mms.vmdLogicalStatus vmdLogicalStatus
Signed 32-bit integer
mms.T_vmdLogicalStatus
mms.vmdPhysicalStatus vmdPhysicalStatus
Signed 32-bit integer
mms.T_vmdPhysicalStatus
mms.vmdSpecific vmdSpecific
No value
mms.NULL
mms.vmd_specific vmd-specific
String
mms.Identifier
mms.vmd_state vmd-state
Signed 32-bit integer
mms.T_vmd_state
mms.vnam vnam
Boolean
mms.vsca vsca
Boolean
mms.write write
No value
mms.Write_Request
mms.writeJournal writeJournal
No value
mms.WriteJournal_Request
mmse.bcc Bcc
String
Blind carbon copy.
mmse.cc Cc
String
Carbon copy.
mmse.content_location X-Mms-Content-Location
String
Defines the location of the message.
mmse.content_type Data
No value
Media content of the message.
mmse.date Date
Date/Time stamp
Arrival timestamp of the message or sending timestamp.
mmse.delivery_report X-Mms-Delivery-Report
Unsigned 8-bit integer
Whether a report of message delivery is wanted or not.
mmse.delivery_time.abs X-Mms-Delivery-Time
Date/Time stamp
The time at which message delivery is desired.
mmse.delivery_time.rel X-Mms-Delivery-Time
Time duration
The desired message delivery delay.
mmse.expiry.abs X-Mms-Expiry
Date/Time stamp
Time when message expires and need not be delivered anymore.
mmse.expiry.rel X-Mms-Expiry
Time duration
Delay before message expires and need not be delivered anymore.
mmse.ffheader Free format (not encoded) header
String
Application header without corresponding encoding.
mmse.from From
String
Address of the message sender.
mmse.message_class.id X-Mms-Message-Class
Unsigned 8-bit integer
Of what category is the message.
mmse.message_class.str X-Mms-Message-Class
String
Of what category is the message.
mmse.message_id Message-Id
String
Unique identification of the message.
mmse.message_size X-Mms-Message-Size
Unsigned 32-bit integer
The size of the message in octets.
mmse.message_type X-Mms-Message-Type
Unsigned 8-bit integer
Specifies the transaction type. Effectively defines PDU.
mmse.mms_version X-Mms-MMS-Version
String
Version of the protocol used.
mmse.previously_sent_by X-Mms-Previously-Sent-By
String
Indicates that the MM has been previously sent by this user.
mmse.previously_sent_by.address Address
String
Indicates from whom the MM has been previously sent.
mmse.previously_sent_by.forward_count Forward Count
Unsigned 32-bit integer
Forward count of the previously sent MM.
mmse.previously_sent_date X-Mms-Previously-Sent-Date
String
Indicates the date that the MM has been previously sent.
mmse.previously_sent_date.date Date
String
Time when the MM has been previously sent.
mmse.previously_sent_date.forward_count Forward Count
Unsigned 32-bit integer
Forward count of the previously sent MM.
mmse.priority X-Mms-Priority
Unsigned 8-bit integer
Priority of the message.
mmse.read_reply X-Mms-Read-Reply
Unsigned 8-bit integer
Whether a read report from every recipient is wanted.
mmse.read_report X-Mms-Read-Report
Unsigned 8-bit integer
Whether a read report from every recipient is wanted.
mmse.read_status X-Mms-Read-Status
Unsigned 8-bit integer
MMS-specific message read status.
mmse.reply_charging X-Mms-Reply-Charging
Unsigned 8-bit integer
MMS-specific message reply charging method.
mmse.reply_charging_deadline.abs X-Mms-Reply-Charging-Deadline
Date/Time stamp
The latest time of the recipient(s) to submit the Reply MM.
mmse.reply_charging_deadline.rel X-Mms-Reply-Charging-Deadline
Time duration
The latest time of the recipient(s) to submit the Reply MM.
mmse.reply_charging_id X-Mms-Reply-Charging-Id
String
Unique reply charging identification of the message.
mmse.reply_charging_size X-Mms-Reply-Charging-Size
Unsigned 32-bit integer
The size of the reply charging in octets.
mmse.report_allowed X-Mms-Report-Allowed
Unsigned 8-bit integer
Sending of delivery report allowed or not.
mmse.response_status Response-Status
Unsigned 8-bit integer
MMS-specific result of a message submission or retrieval.
mmse.response_text Response-Text
String
Additional information on MMS-specific result.
mmse.retrieve_status X-Mms-Retrieve-Status
Unsigned 8-bit integer
MMS-specific result of a message retrieval.
mmse.retrieve_text X-Mms-Retrieve-Text
String
Status text of a MMS message retrieval.
mmse.sender_visibility Sender-Visibility
Unsigned 8-bit integer
Disclose sender identity to receiver or not.
mmse.status Status
Unsigned 8-bit integer
Current status of the message.
mmse.subject Subject
String
Subject of the message.
mmse.to To
String
Recipient(s) of the message.
mmse.transaction_id X-Mms-Transaction-ID
String
A unique identifier for this transaction. Identifies request and corresponding response only.
kpasswd.ChangePasswdData ChangePasswdData
No value
Change Password Data structure
kpasswd.ap_req AP_REQ
No value
AP_REQ structure
kpasswd.ap_req_len AP_REQ Length
Unsigned 16-bit integer
Length of AP_REQ data
kpasswd.krb_priv KRB-PRIV
No value
KRB-PRIV message
kpasswd.message_len Message Length
Unsigned 16-bit integer
Message Length
kpasswd.new_password New Password
String
New Password
kpasswd.result Result
Unsigned 16-bit integer
Result
kpasswd.result_string Result String
String
Result String
kpasswd.version Version
Unsigned 16-bit integer
Version
msnlb.cluster_virtual_ip Cluster Virtual IP
IPv4 address
Cluster Virtual IP address
msnlb.count Count
Unsigned 32-bit integer
Count
msnlb.host_ip Host IP
IPv4 address
Host IP address
msnlb.host_name Host name
String
Host name
msnlb.hpn Host Priority Number
Unsigned 32-bit integer
Host Priority Number
msnlb.unknown Unknown
Byte array
msproxy.bindaddr Destination
IPv4 address
msproxy.bindid Bound Port Id
Unsigned 32-bit integer
msproxy.bindport Bind Port
Unsigned 16-bit integer
msproxy.boundport Bound Port
Unsigned 16-bit integer
msproxy.clntport Client Port
Unsigned 16-bit integer
msproxy.command Command
Unsigned 16-bit integer
msproxy.dstaddr Destination Address
IPv4 address
msproxy.dstport Destination Port
Unsigned 16-bit integer
msproxy.resolvaddr Address
IPv4 address
msproxy.server_ext_addr Server External Address
IPv4 address
msproxy.server_ext_port Server External Port
Unsigned 16-bit integer
msproxy.server_int_addr Server Internal Address
IPv4 address
msproxy.server_int_port Server Internal Port
Unsigned 16-bit integer
msproxy.serveraddr Server Address
IPv4 address
msproxy.serverport Server Port
Unsigned 16-bit integer
msproxy.srcport Source Port
Unsigned 16-bit integer
msnip.checksum Checksum
Unsigned 16-bit integer
MSNIP Checksum
msnip.checksum_bad Bad Checksum
Boolean
Bad MSNIP Checksum
msnip.count Count
Unsigned 8-bit integer
MSNIP Number of groups
msnip.genid Generation ID
Unsigned 16-bit integer
MSNIP Generation ID
msnip.groups Groups
No value
MSNIP Groups
msnip.holdtime Holdtime
Unsigned 32-bit integer
MSNIP Holdtime in seconds
msnip.holdtime16 Holdtime
Unsigned 16-bit integer
MSNIP Holdtime in seconds
msnip.maddr Multicast group
IPv4 address
MSNIP Multicast Group
msnip.netmask Netmask
Unsigned 8-bit integer
MSNIP Netmask
msnip.rec_type Record Type
Unsigned 8-bit integer
MSNIP Record Type
msnip.type Type
Unsigned 8-bit integer
MSNIP Packet Type
m2tp.diagnostic_info Diagnostic information
Byte array
m2tp.error_code Error code
Unsigned 32-bit integer
m2tp.heartbeat_data Heartbeat data
Byte array
m2tp.info_string Info string
String
m2tp.interface_identifier Interface Identifier
Unsigned 32-bit integer
m2tp.master_slave Master Slave Indicator
Unsigned 32-bit integer
m2tp.message_class Message class
Unsigned 8-bit integer
m2tp.message_length Message length
Unsigned 32-bit integer
m2tp.message_type Message Type
Unsigned 8-bit integer
m2tp.parameter_length Parameter length
Unsigned 16-bit integer
m2tp.parameter_padding Padding
Byte array
m2tp.parameter_tag Parameter Tag
Unsigned 16-bit integer
m2tp.parameter_value Parameter Value
Byte array
m2tp.reason Reason
Unsigned 32-bit integer
m2tp.reserved Reserved
Unsigned 8-bit integer
m2tp.user_identifier M2tp User Identifier
Unsigned 32-bit integer
m2tp.version Version
Unsigned 8-bit integer
m2ua.action Actions
Unsigned 32-bit integer
m2ua.asp_identifier ASP identifier
Unsigned 32-bit integer
m2ua.congestion_status Congestion status
Unsigned 32-bit integer
m2ua.correlation_identifier Correlation identifier
Unsigned 32-bit integer
m2ua.data_2_li Length indicator
Unsigned 8-bit integer
m2ua.deregistration_status Deregistration status
Unsigned 32-bit integer
m2ua.diagnostic_information Diagnostic information
Byte array
m2ua.discard_status Discard status
Unsigned 32-bit integer
m2ua.error_code Error code
Unsigned 32-bit integer
m2ua.event Event
Unsigned 32-bit integer
m2ua.heartbeat_data Heartbeat data
Byte array
m2ua.info_string Info string
String
m2ua.interface_identifier_int Interface Identifier (integer)
Unsigned 32-bit integer
m2ua.interface_identifier_start Interface Identifier (start)
Unsigned 32-bit integer
m2ua.interface_identifier_stop Interface Identifier (stop)
Unsigned 32-bit integer
m2ua.interface_identifier_text Interface identifier (text)
String
m2ua.local_lk_identifier Local LK identifier
Unsigned 32-bit integer
m2ua.message_class Message class
Unsigned 8-bit integer
m2ua.message_length Message length
Unsigned 32-bit integer
m2ua.message_type Message Type
Unsigned 8-bit integer
m2ua.parameter_length Parameter length
Unsigned 16-bit integer
m2ua.parameter_padding Padding
Byte array
m2ua.parameter_tag Parameter Tag
Unsigned 16-bit integer
m2ua.parameter_value Parameter value
Byte array
m2ua.registration_status Registration status
Unsigned 32-bit integer
m2ua.reserved Reserved
Unsigned 8-bit integer
m2ua.retrieval_result Retrieval result
Unsigned 32-bit integer
m2ua.sdl_identifier SDL identifier
Unsigned 16-bit integer
m2ua.sdl_reserved Reserved
Unsigned 16-bit integer
m2ua.sdt_identifier SDT identifier
Unsigned 16-bit integer
m2ua.sdt_reserved Reserved
Unsigned 16-bit integer
m2ua.sequence_number Sequence number
Unsigned 32-bit integer
m2ua.state State
Unsigned 32-bit integer
m2ua.status_info Status info
Unsigned 16-bit integer
m2ua.status_type Status type
Unsigned 16-bit integer
m2ua.traffic_mode_type Traffic mode Type
Unsigned 32-bit integer
m2ua.version Version
Unsigned 8-bit integer
m3ua.affected_point_code_mask Mask
Unsigned 8-bit integer
m3ua.affected_point_code_pc Affected point code
Unsigned 24-bit integer
m3ua.asp_identifier ASP identifier
Unsigned 32-bit integer
m3ua.cic_range_lower Lower CIC value
Unsigned 16-bit integer
m3ua.cic_range_mask Mask
Unsigned 8-bit integer
m3ua.cic_range_pc Originating point code
Unsigned 24-bit integer
m3ua.cic_range_upper Upper CIC value
Unsigned 16-bit integer
m3ua.concerned_dpc Concerned DPC
Unsigned 24-bit integer
m3ua.concerned_reserved Reserved
Byte array
m3ua.congestion_level Congestion level
Unsigned 8-bit integer
m3ua.congestion_reserved Reserved
Byte array
m3ua.correlation_identifier Correlation Identifier
Unsigned 32-bit integer
m3ua.deregistration_result_routing_context Routing context
Unsigned 32-bit integer
m3ua.deregistration_results_status De-Registration status
Unsigned 32-bit integer
m3ua.deregistration_status Deregistration status
Unsigned 32-bit integer
m3ua.diagnostic_information Diagnostic information
Byte array
m3ua.dpc_mask Mask
Unsigned 8-bit integer
m3ua.dpc_pc Destination point code
Unsigned 24-bit integer
m3ua.error_code Error code
Unsigned 32-bit integer
m3ua.heartbeat_data Heartbeat data
Byte array
m3ua.info_string Info string
String
m3ua.local_rk_identifier Local routing key identifier
Unsigned 32-bit integer
m3ua.message_class Message class
Unsigned 8-bit integer
m3ua.message_length Message length
Unsigned 32-bit integer
m3ua.message_type Message Type
Unsigned 8-bit integer
m3ua.network_appearance Network appearance
Unsigned 32-bit integer
m3ua.opc_list_mask Mask
Unsigned 8-bit integer
m3ua.opc_list_pc Originating point code
Unsigned 24-bit integer
m3ua.parameter_length Parameter length
Unsigned 16-bit integer
m3ua.parameter_padding Padding
Byte array
m3ua.parameter_tag Parameter Tag
Unsigned 16-bit integer
m3ua.parameter_value Parameter value
Byte array
m3ua.paramter_trailer Trailer
Byte array
m3ua.protocol_data_2_li Length indicator
Unsigned 8-bit integer
m3ua.protocol_data_dpc DPC
Unsigned 32-bit integer
m3ua.protocol_data_mp MP
Unsigned 8-bit integer
m3ua.protocol_data_ni NI
Unsigned 8-bit integer
m3ua.protocol_data_opc OPC
Unsigned 32-bit integer
m3ua.protocol_data_si SI
Unsigned 8-bit integer
m3ua.protocol_data_sls SLS
Unsigned 8-bit integer
m3ua.reason Reason
Unsigned 32-bit integer
m3ua.registration_result_identifier Local RK-identifier value
Unsigned 32-bit integer
m3ua.registration_result_routing_context Routing context
Unsigned 32-bit integer
m3ua.registration_results_status Registration status
Unsigned 32-bit integer
m3ua.registration_status Registration status
Unsigned 32-bit integer
m3ua.reserved Reserved
Unsigned 8-bit integer
m3ua.routing_context Routing context
Unsigned 32-bit integer
m3ua.si Service indicator
Unsigned 8-bit integer
m3ua.ssn Subsystem number
Unsigned 8-bit integer
m3ua.status_info Status info
Unsigned 16-bit integer
m3ua.status_type Status type
Unsigned 16-bit integer
m3ua.traffic_mode_type Traffic mode Type
Unsigned 32-bit integer
m3ua.unavailability_cause Unavailability cause
Unsigned 16-bit integer
m3ua.user_identity User Identity
Unsigned 16-bit integer
m3ua.version Version
Unsigned 8-bit integer
mtp3.dpc DPC
Unsigned 32-bit integer
mtp3.ni NI
Unsigned 8-bit integer
mtp3.opc OPC
Unsigned 32-bit integer
mtp3.pc PC
Unsigned 32-bit integer
m2pa.bsn BSN
Unsigned 24-bit integer
m2pa.class Message Class
Unsigned 8-bit integer
m2pa.filler Filler
Byte array
m2pa.fsn FSN
Unsigned 24-bit integer
m2pa.length Message length
Unsigned 32-bit integer
m2pa.li_priority Priority
Unsigned 8-bit integer
m2pa.li_spare Spare
Unsigned 8-bit integer
m2pa.priority Priority
Unsigned 8-bit integer
m2pa.priority_spare Spare
Unsigned 8-bit integer
m2pa.spare Spare
Unsigned 8-bit integer
m2pa.status Link Status
Unsigned 32-bit integer
m2pa.type Message Type
Unsigned 16-bit integer
m2pa.unknown_data Unknown Data
Byte array
m2pa.unused Unused
Unsigned 8-bit integer
m2pa.version Version
Unsigned 8-bit integer
h245.AlternativeCapabilitySet_item alternativeCapability
Unsigned 32-bit integer
h245.CapabilityTableEntryNumber
h245.CertSelectionCriteria_item Item
No value
h245.Criteria
h245.EncryptionCapability_item Item
Unsigned 32-bit integer
h245.MediaEncryptionAlgorithm
h245.Manufacturer H.245 Manufacturer
Unsigned 32-bit integer
h245.H.221 Manufacturer
h245.ModeDescription_item Item
No value
h245.ModeElement
h245.OpenLogicalChannel OpenLogicalChannel
No value
h245.OpenLogicalChannel
h245.aal aal
Unsigned 32-bit integer
h245.Cmd_aal
h245.aal1 aal1
No value
h245.T_aal1
h245.aal1ViaGateway aal1ViaGateway
No value
h245.T_aal1ViaGateway
h245.aal5 aal5
No value
h245.T_aal5
h245.accept accept
No value
h245.NULL
h245.accepted accepted
No value
h245.NULL
h245.ackAndNackMessage ackAndNackMessage
No value
h245.NULL
h245.ackMessageOnly ackMessageOnly
No value
h245.NULL
h245.ackOrNackMessageOnly ackOrNackMessageOnly
No value
h245.NULL
h245.adaptationLayerType adaptationLayerType
Unsigned 32-bit integer
h245.T_adaptationLayerType
h245.adaptiveClockRecovery adaptiveClockRecovery
Boolean
h245.BOOLEAN
h245.addConnection addConnection
No value
h245.AddConnectionReq
h245.additionalDecoderBuffer additionalDecoderBuffer
Unsigned 32-bit integer
h245.INTEGER_0_262143
h245.additionalPictureMemory additionalPictureMemory
No value
h245.T_additionalPictureMemory
h245.address address
Unsigned 32-bit integer
h245.T_address
h245.advancedIntraCodingMode advancedIntraCodingMode
Boolean
h245.BOOLEAN
h245.advancedPrediction advancedPrediction
Boolean
h245.BOOLEAN
h245.al1Framed al1Framed
No value
h245.T_h223_al_type_al1Framed
h245.al1M al1M
No value
h245.T_h223_al_type_al1M
h245.al1NotFramed al1NotFramed
No value
h245.T_h223_al_type_al1NotFramed
h245.al2M al2M
No value
h245.T_h223_al_type_al2M
h245.al2WithSequenceNumbers al2WithSequenceNumbers
No value
h245.T_h223_al_type_al2WithSequenceNumbers
h245.al2WithoutSequenceNumbers al2WithoutSequenceNumbers
No value
h245.T_h223_al_type_al2WithoutSequenceNumbers
h245.al3 al3
No value
h245.T_h223_al_type_al3
h245.al3M al3M
No value
h245.T_h223_al_type_al3M
h245.algorithm algorithm
h245.OBJECT_IDENTIFIER
h245.algorithmOID algorithmOID
h245.OBJECT_IDENTIFIER
h245.alpduInterleaving alpduInterleaving
Boolean
h245.BOOLEAN
h245.alphanumeric alphanumeric
String
h245.GeneralString
h245.alsduSplitting alsduSplitting
Boolean
h245.BOOLEAN
h245.alternateInterVLCMode alternateInterVLCMode
Boolean
h245.BOOLEAN
h245.annexA annexA
Boolean
h245.BOOLEAN
h245.annexB annexB
Boolean
h245.BOOLEAN
h245.annexD annexD
Boolean
h245.BOOLEAN
h245.annexE annexE
Boolean
h245.BOOLEAN
h245.annexF annexF
Boolean
h245.BOOLEAN
h245.annexG annexG
Boolean
h245.BOOLEAN
h245.annexH annexH
Boolean
h245.BOOLEAN
h245.antiSpamAlgorithm antiSpamAlgorithm
h245.OBJECT_IDENTIFIER
h245.anyPixelAspectRatio anyPixelAspectRatio
Boolean
h245.BOOLEAN
h245.application application
Unsigned 32-bit integer
h245.Application
h245.arithmeticCoding arithmeticCoding
Boolean
h245.BOOLEAN
h245.arqType arqType
Unsigned 32-bit integer
h245.ArqType
h245.associateConference associateConference
Boolean
h245.BOOLEAN
h245.associatedAlgorithm associatedAlgorithm
No value
h245.NonStandardParameter
h245.associatedSessionID associatedSessionID
Unsigned 32-bit integer
h245.INTEGER_1_255
h245.atmABR atmABR
Boolean
h245.BOOLEAN
h245.atmCBR atmCBR
Boolean
h245.BOOLEAN
h245.atmParameters atmParameters
No value
h245.ATMParameters
h245.atmUBR atmUBR
Boolean
h245.BOOLEAN
h245.atm_AAL5_BIDIR atm-AAL5-BIDIR
No value
h245.NULL
h245.atm_AAL5_UNIDIR atm-AAL5-UNIDIR
No value
h245.NULL
h245.atm_AAL5_compressed atm-AAL5-compressed
No value
h245.T_atm_AAL5_compressed
h245.atmnrtVBR atmnrtVBR
Boolean
h245.BOOLEAN
h245.atmrtVBR atmrtVBR
Boolean
h245.BOOLEAN
h245.audioData audioData
Unsigned 32-bit integer
h245.AudioCapability
h245.audioHeader audioHeader
Boolean
h245.BOOLEAN
h245.audioHeaderPresent audioHeaderPresent
Boolean
h245.BOOLEAN
h245.audioLayer audioLayer
Unsigned 32-bit integer
h245.T_audioLayer
h245.audioLayer1 audioLayer1
Boolean
h245.BOOLEAN
h245.audioLayer2 audioLayer2
Boolean
h245.BOOLEAN
h245.audioLayer3 audioLayer3
Boolean
h245.BOOLEAN
h245.audioMode audioMode
Unsigned 32-bit integer
h245.AudioMode
h245.audioSampling audioSampling
Unsigned 32-bit integer
h245.T_audioSampling
h245.audioSampling16k audioSampling16k
Boolean
h245.BOOLEAN
h245.audioSampling22k05 audioSampling22k05
Boolean
h245.BOOLEAN
h245.audioSampling24k audioSampling24k
Boolean
h245.BOOLEAN
h245.audioSampling32k audioSampling32k
Boolean
h245.BOOLEAN
h245.audioSampling44k1 audioSampling44k1
Boolean
h245.BOOLEAN
h245.audioSampling48k audioSampling48k
Boolean
h245.BOOLEAN
h245.audioTelephoneEvent audioTelephoneEvent
String
h245.GeneralString
h245.audioTelephonyEvent audioTelephonyEvent
No value
h245.NoPTAudioTelephonyEventCapability
h245.audioTone audioTone
No value
h245.NoPTAudioToneCapability
h245.audioUnit audioUnit
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.audioUnitSize audioUnitSize
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.audioWithAL1 audioWithAL1
Boolean
h245.BOOLEAN
h245.audioWithAL1M audioWithAL1M
Boolean
h245.BOOLEAN
h245.audioWithAL2 audioWithAL2
Boolean
h245.BOOLEAN
h245.audioWithAL2M audioWithAL2M
Boolean
h245.BOOLEAN
h245.audioWithAL3 audioWithAL3
Boolean
h245.BOOLEAN
h245.audioWithAL3M audioWithAL3M
Boolean
h245.BOOLEAN
h245.authenticationCapability authenticationCapability
No value
h245.AuthenticationCapability
h245.authorizationParameter authorizationParameter
No value
h245.AuthorizationParameters
h245.availableBitRates availableBitRates
No value
h245.T_availableBitRates
h245.averageRate averageRate
Unsigned 32-bit integer
h245.INTEGER_1_4294967295
h245.bPictureEnhancement bPictureEnhancement
Unsigned 32-bit integer
h245.SET_SIZE_1_14_OF_BEnhancementParameters
h245.bPictureEnhancement_item Item
No value
h245.BEnhancementParameters
h245.backwardMaximumSDUSize backwardMaximumSDUSize
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.baseBitRateConstrained baseBitRateConstrained
Boolean
h245.BOOLEAN
h245.basic basic
No value
h245.NULL
h245.basicString basicString
No value
h245.NULL
h245.bigCpfAdditionalPictureMemory bigCpfAdditionalPictureMemory
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.bitRate bitRate
Unsigned 32-bit integer
h245.INTEGER_1_19200
h245.bitRateLockedToNetworkClock bitRateLockedToNetworkClock
Boolean
h245.BOOLEAN
h245.bitRateLockedToPCRClock bitRateLockedToPCRClock
Boolean
h245.BOOLEAN
h245.booleanArray booleanArray
Unsigned 32-bit integer
h245.T_booleanArray
h245.bppMaxKb bppMaxKb
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.broadcastMyLogicalChannel broadcastMyLogicalChannel
Unsigned 32-bit integer
h245.LogicalChannelNumber
h245.broadcastMyLogicalChannelResponse broadcastMyLogicalChannelResponse
Unsigned 32-bit integer
h245.T_broadcastMyLogicalChannelResponse
h245.bucketSize bucketSize
Unsigned 32-bit integer
h245.INTEGER_1_4294967295
h245.burst burst
Unsigned 32-bit integer
h245.INTEGER_1_4294967295
h245.callAssociationNumber callAssociationNumber
Unsigned 32-bit integer
h245.INTEGER_0_4294967295
h245.callInformation callInformation
No value
h245.CallInformationReq
h245.canNotPerformLoop canNotPerformLoop
No value
h245.NULL
h245.cancelBroadcastMyLogicalChannel cancelBroadcastMyLogicalChannel
Unsigned 32-bit integer
h245.LogicalChannelNumber
h245.cancelMakeMeChair cancelMakeMeChair
No value
h245.NULL
h245.cancelMakeTerminalBroadcaster cancelMakeTerminalBroadcaster
No value
h245.NULL
h245.cancelMultipointConference cancelMultipointConference
No value
h245.NULL
h245.cancelMultipointModeCommand cancelMultipointModeCommand
No value
h245.NULL
h245.cancelMultipointSecondaryStatus cancelMultipointSecondaryStatus
No value
h245.NULL
h245.cancelMultipointZeroComm cancelMultipointZeroComm
No value
h245.NULL
h245.cancelSeenByAll cancelSeenByAll
No value
h245.NULL
h245.cancelSeenByAtLeastOneOther cancelSeenByAtLeastOneOther
No value
h245.NULL
h245.cancelSendThisSource cancelSendThisSource
No value
h245.NULL
h245.capabilities capabilities
Unsigned 32-bit integer
h245.SET_SIZE_1_256_OF_AlternativeCapabilitySet
h245.capabilities_item Item
Unsigned 32-bit integer
h245.AlternativeCapabilitySet
h245.capability capability
Unsigned 32-bit integer
h245.Capability
h245.capabilityDescriptorNumber capabilityDescriptorNumber
Unsigned 32-bit integer
h245.CapabilityDescriptorNumber
h245.capabilityDescriptorNumbers capabilityDescriptorNumbers
Unsigned 32-bit integer
h245.SET_SIZE_1_256_OF_CapabilityDescriptorNumber
h245.capabilityDescriptorNumbers_item Item
Unsigned 32-bit integer
h245.CapabilityDescriptorNumber
h245.capabilityDescriptors capabilityDescriptors
Unsigned 32-bit integer
h245.SET_SIZE_1_256_OF_CapabilityDescriptor
h245.capabilityDescriptors_item Item
No value
h245.CapabilityDescriptor
h245.capabilityIdentifier capabilityIdentifier
Unsigned 32-bit integer
h245.CapabilityIdentifier
h245.capabilityOnMuxStream capabilityOnMuxStream
Unsigned 32-bit integer
h245.SET_SIZE_1_256_OF_AlternativeCapabilitySet
h245.capabilityOnMuxStream_item Item
Unsigned 32-bit integer
h245.AlternativeCapabilitySet
h245.capabilityTable capabilityTable
Unsigned 32-bit integer
h245.SET_SIZE_1_256_OF_CapabilityTableEntry
h245.capabilityTableEntryNumber capabilityTableEntryNumber
Unsigned 32-bit integer
h245.CapabilityTableEntryNumber
h245.capabilityTableEntryNumbers capabilityTableEntryNumbers
Unsigned 32-bit integer
h245.SET_SIZE_1_65535_OF_CapabilityTableEntryNumber
h245.capabilityTableEntryNumbers_item Item
Unsigned 32-bit integer
h245.CapabilityTableEntryNumber
h245.capabilityTable_item Item
No value
h245.CapabilityTableEntry
h245.cause cause
Unsigned 32-bit integer
h245.MasterSlaveDeterminationRejectCause
h245.ccir601Prog ccir601Prog
Boolean
h245.BOOLEAN
h245.ccir601Seq ccir601Seq
Boolean
h245.BOOLEAN
h245.centralizedAudio centralizedAudio
Boolean
h245.BOOLEAN
h245.centralizedConferenceMC centralizedConferenceMC
Boolean
h245.BOOLEAN
h245.centralizedControl centralizedControl
Boolean
h245.BOOLEAN
h245.centralizedData centralizedData
Unsigned 32-bit integer
h245.SEQUENCE_OF_DataApplicationCapability
h245.centralizedData_item Item
No value
h245.DataApplicationCapability
h245.centralizedVideo centralizedVideo
Boolean
h245.BOOLEAN
h245.certProtectedKey certProtectedKey
Boolean
h245.BOOLEAN
h245.certSelectionCriteria certSelectionCriteria
Unsigned 32-bit integer
h245.CertSelectionCriteria
h245.certificateResponse certificateResponse
Byte array
h245.OCTET_STRING_SIZE_1_65535
h245.chairControlCapability chairControlCapability
Boolean
h245.BOOLEAN
h245.chairTokenOwnerResponse chairTokenOwnerResponse
No value
h245.T_chairTokenOwnerResponse
h245.channelTag channelTag
Unsigned 32-bit integer
h245.INTEGER_0_4294967295
h245.cif cif
Boolean
h245.BOOLEAN
h245.cif16 cif16
No value
h245.NULL
h245.cif16AdditionalPictureMemory cif16AdditionalPictureMemory
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.cif16MPI cif16MPI
Unsigned 32-bit integer
h245.INTEGER_1_32
h245.cif4 cif4
No value
h245.NULL
h245.cif4AdditionalPictureMemory cif4AdditionalPictureMemory
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.cif4MPI cif4MPI
Unsigned 32-bit integer
h245.INTEGER_1_32
h245.cifAdditionalPictureMemory cifAdditionalPictureMemory
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.cifMPI cifMPI
Unsigned 32-bit integer
h245.INTEGER_1_4
h245.class0 class0
No value
h245.NULL
h245.class1 class1
No value
h245.NULL
h245.class2 class2
No value
h245.NULL
h245.class3 class3
No value
h245.NULL
h245.class4 class4
No value
h245.NULL
h245.class5 class5
No value
h245.NULL
h245.clockConversionCode clockConversionCode
Unsigned 32-bit integer
h245.INTEGER_1000_1001
h245.clockDivisor clockDivisor
Unsigned 32-bit integer
h245.INTEGER_1_127
h245.clockRecovery clockRecovery
Unsigned 32-bit integer
h245.Cmd_clockRecovery
h245.closeLogicalChannel closeLogicalChannel
No value
h245.CloseLogicalChannel
h245.closeLogicalChannelAck closeLogicalChannelAck
No value
h245.CloseLogicalChannelAck
h245.collapsing collapsing
Unsigned 32-bit integer
h245.T_collapsing
h245.collapsing_item Item
No value
h245.T_collapsing_item
h245.comfortNoise comfortNoise
Boolean
h245.BOOLEAN
h245.command command
Unsigned 32-bit integer
h245.CommandMessage
h245.communicationModeCommand communicationModeCommand
No value
h245.CommunicationModeCommand
h245.communicationModeRequest communicationModeRequest
No value
h245.CommunicationModeRequest
h245.communicationModeResponse communicationModeResponse
Unsigned 32-bit integer
h245.CommunicationModeResponse
h245.communicationModeTable communicationModeTable
Unsigned 32-bit integer
h245.SET_SIZE_1_256_OF_CommunicationModeTableEntry
h245.communicationModeTable_item Item
No value
h245.CommunicationModeTableEntry
h245.compositionNumber compositionNumber
Unsigned 32-bit integer
h245.INTEGER_0_255
h245.conferenceCapability conferenceCapability
No value
h245.ConferenceCapability
h245.conferenceCommand conferenceCommand
Unsigned 32-bit integer
h245.ConferenceCommand
h245.conferenceID conferenceID
Byte array
h245.ConferenceID
h245.conferenceIDResponse conferenceIDResponse
No value
h245.T_conferenceIDResponse
h245.conferenceIdentifier conferenceIdentifier
Byte array
h245.OCTET_STRING_SIZE_16
h245.conferenceIndication conferenceIndication
Unsigned 32-bit integer
h245.ConferenceIndication
h245.conferenceRequest conferenceRequest
Unsigned 32-bit integer
h245.ConferenceRequest
h245.conferenceResponse conferenceResponse
Unsigned 32-bit integer
h245.ConferenceResponse
h245.connectionIdentifier connectionIdentifier
No value
h245.ConnectionIdentifier
h245.connectionsNotAvailable connectionsNotAvailable
No value
h245.NULL
h245.constrainedBitstream constrainedBitstream
Boolean
h245.BOOLEAN
h245.containedThreads containedThreads
Unsigned 32-bit integer
h245.T_containedThreads
h245.containedThreads_item Item
Unsigned 32-bit integer
h245.INTEGER_0_15
h245.controlFieldOctets controlFieldOctets
Unsigned 32-bit integer
h245.T_controlFieldOctets
h245.controlOnMuxStream controlOnMuxStream
Boolean
h245.BOOLEAN
h245.controlledLoad controlledLoad
No value
h245.NULL
h245.crc12bit crc12bit
No value
h245.NULL
h245.crc16bit crc16bit
No value
h245.NULL
h245.crc16bitCapability crc16bitCapability
Boolean
h245.BOOLEAN
h245.crc20bit crc20bit
No value
h245.NULL
h245.crc28bit crc28bit
No value
h245.NULL
h245.crc32bit crc32bit
No value
h245.NULL
h245.crc32bitCapability crc32bitCapability
Boolean
h245.BOOLEAN
h245.crc4bit crc4bit
No value
h245.NULL
h245.crc8bit crc8bit
No value
h245.NULL
h245.crc8bitCapability crc8bitCapability
Boolean
h245.BOOLEAN
h245.crcDesired crcDesired
No value
h245.T_crcDesired
h245.crcLength crcLength
Unsigned 32-bit integer
h245.AL1CrcLength
h245.crcNotUsed crcNotUsed
No value
h245.NULL
h245.currentInterval currentInterval
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.currentIntervalInformation currentIntervalInformation
No value
h245.NULL
h245.currentMaximumBitRate currentMaximumBitRate
Unsigned 32-bit integer
h245.MaximumBitRate
h245.currentPictureHeaderRepetition currentPictureHeaderRepetition
Boolean
h245.BOOLEAN
h245.custom custom
Unsigned 32-bit integer
h245.SEQUENCE_SIZE_1_256_OF_RTPH263VideoRedundancyFrameMapping
h245.customMPI customMPI
Unsigned 32-bit integer
h245.INTEGER_1_2048
h245.customPCF customPCF
Unsigned 32-bit integer
h245.T_customPCF
h245.customPCF_item Item
No value
h245.T_customPCF_item
h245.customPictureClockFrequency customPictureClockFrequency
Unsigned 32-bit integer
h245.SET_SIZE_1_16_OF_CustomPictureClockFrequency
h245.customPictureClockFrequency_item Item
No value
h245.CustomPictureClockFrequency
h245.customPictureFormat customPictureFormat
Unsigned 32-bit integer
h245.SET_SIZE_1_16_OF_CustomPictureFormat
h245.customPictureFormat_item Item
No value
h245.CustomPictureFormat
h245.custom_item Item
No value
h245.RTPH263VideoRedundancyFrameMapping
h245.data data
Byte array
h245.T_nsd_data
h245.dataMode dataMode
No value
h245.DataMode
h245.dataPartitionedSlices dataPartitionedSlices
Boolean
h245.BOOLEAN
h245.dataType dataType
Unsigned 32-bit integer
h245.DataType
h245.dataTypeALCombinationNotSupported dataTypeALCombinationNotSupported
No value
h245.NULL
h245.dataTypeNotAvailable dataTypeNotAvailable
No value
h245.NULL
h245.dataTypeNotSupported dataTypeNotSupported
No value
h245.NULL
h245.dataWithAL1 dataWithAL1
Boolean
h245.BOOLEAN
h245.dataWithAL1M dataWithAL1M
Boolean
h245.BOOLEAN
h245.dataWithAL2 dataWithAL2
Boolean
h245.BOOLEAN
h245.dataWithAL2M dataWithAL2M
Boolean
h245.BOOLEAN
h245.dataWithAL3 dataWithAL3
Boolean
h245.BOOLEAN
h245.dataWithAL3M dataWithAL3M
Boolean
h245.BOOLEAN
h245.deActivate deActivate
No value
h245.NULL
h245.deblockingFilterMode deblockingFilterMode
Boolean
h245.BOOLEAN
h245.decentralizedConferenceMC decentralizedConferenceMC
Boolean
h245.BOOLEAN
h245.decision decision
Unsigned 32-bit integer
h245.T_decision
h245.deniedBroadcastMyLogicalChannel deniedBroadcastMyLogicalChannel
No value
h245.NULL
h245.deniedChairToken deniedChairToken
No value
h245.NULL
h245.deniedMakeTerminalBroadcaster deniedMakeTerminalBroadcaster
No value
h245.NULL
h245.deniedSendThisSource deniedSendThisSource
No value
h245.NULL
h245.depFec depFec
Unsigned 32-bit integer
h245.DepFECData
h245.depFecCapability depFecCapability
Unsigned 32-bit integer
h245.DepFECCapability
h245.depFecMode depFecMode
Unsigned 32-bit integer
h245.DepFECMode
h245.descriptorCapacityExceeded descriptorCapacityExceeded
No value
h245.NULL
h245.descriptorTooComplex descriptorTooComplex
No value
h245.NULL
h245.desired desired
No value
h245.NULL
h245.destination destination
No value
h245.TerminalLabel
h245.dialingInformation dialingInformation
Unsigned 32-bit integer
h245.DialingInformation
h245.differentPort differentPort
No value
h245.T_differentPort
h245.differential differential
Unsigned 32-bit integer
h245.SET_SIZE_1_65535_OF_DialingInformationNumber
h245.differential_item Item
No value
h245.DialingInformationNumber
h245.digPhotoHighProg digPhotoHighProg
Boolean
h245.BOOLEAN
h245.digPhotoHighSeq digPhotoHighSeq
Boolean
h245.BOOLEAN
h245.digPhotoLow digPhotoLow
Boolean
h245.BOOLEAN
h245.digPhotoMedProg digPhotoMedProg
Boolean
h245.BOOLEAN
h245.digPhotoMedSeq digPhotoMedSeq
Boolean
h245.BOOLEAN
h245.direction direction
Unsigned 32-bit integer
h245.EncryptionUpdateDirection
h245.disconnect disconnect
No value
h245.NULL
h245.distributedAudio distributedAudio
Boolean
h245.BOOLEAN
h245.distributedControl distributedControl
Boolean
h245.BOOLEAN
h245.distributedData distributedData
Unsigned 32-bit integer
h245.SEQUENCE_OF_DataApplicationCapability
h245.distributedData_item Item
No value
h245.DataApplicationCapability
h245.distributedVideo distributedVideo
Boolean
h245.BOOLEAN
h245.distribution distribution
Unsigned 32-bit integer
h245.T_distribution
h245.doContinuousIndependentProgressions doContinuousIndependentProgressions
No value
h245.NULL
h245.doContinuousProgressions doContinuousProgressions
No value
h245.NULL
h245.doOneIndependentProgression doOneIndependentProgression
No value
h245.NULL
h245.doOneProgression doOneProgression
No value
h245.NULL
h245.domainBased domainBased
String
h245.IA5String_SIZE_1_64
h245.dropConference dropConference
No value
h245.NULL
h245.dropTerminal dropTerminal
No value
h245.TerminalLabel
h245.dscpValue dscpValue
Unsigned 32-bit integer
h245.INTEGER_0_63
h245.dsm_cc dsm-cc
Unsigned 32-bit integer
h245.DataProtocolCapability
h245.dsvdControl dsvdControl
No value
h245.NULL
h245.dtmf dtmf
No value
h245.NULL
h245.duration duration
Unsigned 32-bit integer
h245.INTEGER_1_65535
h245.dynamicPictureResizingByFour dynamicPictureResizingByFour
Boolean
h245.BOOLEAN
h245.dynamicPictureResizingSixteenthPel dynamicPictureResizingSixteenthPel
Boolean
h245.BOOLEAN
h245.dynamicRTPPayloadType dynamicRTPPayloadType
Unsigned 32-bit integer
h245.INTEGER_96_127
h245.dynamicWarpingHalfPel dynamicWarpingHalfPel
Boolean
h245.BOOLEAN
h245.dynamicWarpingSixteenthPel dynamicWarpingSixteenthPel
Boolean
h245.BOOLEAN
h245.e164Address e164Address
String
h245.T_e164Address
h245.eRM eRM
No value
h245.T_eRM
h245.elementList elementList
Unsigned 32-bit integer
h245.T_elementList
h245.elementList_item Item
No value
h245.MultiplexElement
h245.elements elements
Unsigned 32-bit integer
h245.SEQUENCE_OF_MultiplePayloadStreamElement
h245.elements_item Item
No value
h245.MultiplePayloadStreamElement
h245.encrypted encrypted
Byte array
h245.OCTET_STRING
h245.encryptedAlphanumeric encryptedAlphanumeric
No value
h245.EncryptedAlphanumeric
h245.encryptedBasicString encryptedBasicString
No value
h245.NULL
h245.encryptedGeneralString encryptedGeneralString
No value
h245.NULL
h245.encryptedIA5String encryptedIA5String
No value
h245.NULL
h245.encryptedSignalType encryptedSignalType
Byte array
h245.OCTET_STRING_SIZE_1
h245.encryptionAlgorithmID encryptionAlgorithmID
No value
h245.T_encryptionAlgorithmID
h245.encryptionAuthenticationAndIntegrity encryptionAuthenticationAndIntegrity
No value
h245.EncryptionAuthenticationAndIntegrity
h245.encryptionCapability encryptionCapability
Unsigned 32-bit integer
h245.EncryptionCapability
h245.encryptionCommand encryptionCommand
Unsigned 32-bit integer
h245.EncryptionCommand
h245.encryptionData encryptionData
Unsigned 32-bit integer
h245.EncryptionMode
h245.encryptionIVRequest encryptionIVRequest
No value
h245.NULL
h245.encryptionMode encryptionMode
Unsigned 32-bit integer
h245.EncryptionMode
h245.encryptionSE encryptionSE
Byte array
h245.OCTET_STRING
h245.encryptionSync encryptionSync
No value
h245.EncryptionSync
h245.encryptionUpdate encryptionUpdate
No value
h245.EncryptionSync
h245.encryptionUpdateAck encryptionUpdateAck
No value
h245.T_encryptionUpdateAck
h245.encryptionUpdateCommand encryptionUpdateCommand
No value
h245.T_encryptionUpdateCommand
h245.encryptionUpdateRequest encryptionUpdateRequest
No value
h245.EncryptionUpdateRequest
h245.endSessionCommand endSessionCommand
Unsigned 32-bit integer
h245.EndSessionCommand
h245.enhanced enhanced
No value
h245.T_enhanced
h245.enhancedReferencePicSelect enhancedReferencePicSelect
No value
h245.T_enhancedReferencePicSelect
h245.enhancementLayerInfo enhancementLayerInfo
No value
h245.EnhancementLayerInfo
h245.enhancementOptions enhancementOptions
No value
h245.EnhancementOptions
h245.enterExtensionAddress enterExtensionAddress
No value
h245.NULL
h245.enterH243ConferenceID enterH243ConferenceID
No value
h245.NULL
h245.enterH243Password enterH243Password
No value
h245.NULL
h245.enterH243TerminalID enterH243TerminalID
No value
h245.NULL
h245.entryNumbers entryNumbers
Unsigned 32-bit integer
h245.SET_SIZE_1_15_OF_MultiplexTableEntryNumber
h245.entryNumbers_item Item
Unsigned 32-bit integer
h245.MultiplexTableEntryNumber
h245.equaliseDelay equaliseDelay
No value
h245.NULL
h245.errorCompensation errorCompensation
Boolean
h245.BOOLEAN
h245.errorCorrection errorCorrection
Unsigned 32-bit integer
h245.Cmd_errorCorrection
h245.errorCorrectionOnly errorCorrectionOnly
Boolean
h245.BOOLEAN
h245.escrowID escrowID
h245.OBJECT_IDENTIFIER
h245.escrowValue escrowValue
Byte array
h245.BIT_STRING_SIZE_1_65535
h245.escrowentry escrowentry
Unsigned 32-bit integer
h245.SEQUENCE_SIZE_1_256_OF_EscrowData
h245.escrowentry_item Item
No value
h245.EscrowData
h245.estimatedReceivedJitterExponent estimatedReceivedJitterExponent
Unsigned 32-bit integer
h245.INTEGER_0_7
h245.estimatedReceivedJitterMantissa estimatedReceivedJitterMantissa
Unsigned 32-bit integer
h245.INTEGER_0_3
h245.excessiveError excessiveError
No value
h245.T_excessiveError
h245.expirationTime expirationTime
Unsigned 32-bit integer
h245.INTEGER_0_4294967295
h245.extendedAlphanumeric extendedAlphanumeric
No value
h245.NULL
h245.extendedPAR extendedPAR
Unsigned 32-bit integer
h245.T_extendedPAR
h245.extendedPAR_item Item
No value
h245.T_extendedPAR_item
h245.extendedVideoCapability extendedVideoCapability
No value
h245.ExtendedVideoCapability
h245.extensionAddress extensionAddress
Byte array
h245.TerminalID
h245.extensionAddressResponse extensionAddressResponse
No value
h245.T_extensionAddressResponse
h245.externalReference externalReference
Byte array
h245.OCTET_STRING_SIZE_1_255
h245.fec fec
Unsigned 32-bit integer
h245.FECData
h245.fecCapability fecCapability
No value
h245.FECCapability
h245.fecMode fecMode
No value
h245.FECMode
h245.fecScheme fecScheme
h245.OBJECT_IDENTIFIER
h245.field field
h245.OBJECT_IDENTIFIER
h245.fillBitRemoval fillBitRemoval
Boolean
h245.BOOLEAN
h245.finite finite
Unsigned 32-bit integer
h245.INTEGER_0_16
h245.firstGOB firstGOB
Unsigned 32-bit integer
h245.INTEGER_0_17
h245.firstMB firstMB
Unsigned 32-bit integer
h245.INTEGER_1_8192
h245.fiveChannels3_0_2_0 fiveChannels3-0-2-0
Boolean
h245.BOOLEAN
h245.fiveChannels3_2 fiveChannels3-2
Boolean
h245.BOOLEAN
h245.fixedPointIDCT0 fixedPointIDCT0
Boolean
h245.BOOLEAN
h245.floorRequested floorRequested
No value
h245.TerminalLabel
h245.flowControlCommand flowControlCommand
No value
h245.FlowControlCommand
h245.flowControlIndication flowControlIndication
No value
h245.FlowControlIndication
h245.flowControlToZero flowControlToZero
Boolean
h245.BOOLEAN
h245.forwardLogicalChannelDependency forwardLogicalChannelDependency
Unsigned 32-bit integer
h245.LogicalChannelNumber
h245.forwardLogicalChannelNumber forwardLogicalChannelNumber
Unsigned 32-bit integer
h245.OLC_fw_lcn
h245.forwardLogicalChannelParameters forwardLogicalChannelParameters
No value
h245.T_forwardLogicalChannelParameters
h245.forwardMaximumSDUSize forwardMaximumSDUSize
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.forwardMultiplexAckParameters forwardMultiplexAckParameters
Unsigned 32-bit integer
h245.T_forwardMultiplexAckParameters
h245.fourChannels2_0_2_0 fourChannels2-0-2-0
Boolean
h245.BOOLEAN
h245.fourChannels2_2 fourChannels2-2
Boolean
h245.BOOLEAN
h245.fourChannels3_1 fourChannels3-1
Boolean
h245.BOOLEAN
h245.frameSequence frameSequence
Unsigned 32-bit integer
h245.T_frameSequence
h245.frameSequence_item Item
Unsigned 32-bit integer
h245.INTEGER_0_255
h245.frameToThreadMapping frameToThreadMapping
Unsigned 32-bit integer
h245.T_frameToThreadMapping
h245.framed framed
No value
h245.NULL
h245.framesBetweenSyncPoints framesBetweenSyncPoints
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.framesPerSecond framesPerSecond
Unsigned 32-bit integer
h245.INTEGER_0_15
h245.fullPictureFreeze fullPictureFreeze
Boolean
h245.BOOLEAN
h245.fullPictureSnapshot fullPictureSnapshot
Boolean
h245.BOOLEAN
h245.functionNotSupported functionNotSupported
No value
h245.FunctionNotSupported
h245.functionNotUnderstood functionNotUnderstood
Unsigned 32-bit integer
h245.FunctionNotUnderstood
h245.g3FacsMH200x100 g3FacsMH200x100
Boolean
h245.BOOLEAN
h245.g3FacsMH200x200 g3FacsMH200x200
Boolean
h245.BOOLEAN
h245.g4FacsMMR200x100 g4FacsMMR200x100
Boolean
h245.BOOLEAN
h245.g4FacsMMR200x200 g4FacsMMR200x200
Boolean
h245.BOOLEAN
h245.g711Alaw56k g711Alaw56k
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.g711Alaw64k g711Alaw64k
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.g711Ulaw56k g711Ulaw56k
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.g711Ulaw64k g711Ulaw64k
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.g722_48k g722-48k
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.g722_56k g722-56k
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.g722_64k g722-64k
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.g7231 g7231
No value
h245.T_g7231
h245.g7231AnnexCCapability g7231AnnexCCapability
No value
h245.G7231AnnexCCapability
h245.g7231AnnexCMode g7231AnnexCMode
No value
h245.G7231AnnexCMode
h245.g723AnnexCAudioMode g723AnnexCAudioMode
No value
h245.G723AnnexCAudioMode
h245.g728 g728
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.g729 g729
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.g729AnnexA g729AnnexA
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.g729AnnexAwAnnexB g729AnnexAwAnnexB
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.g729Extensions g729Extensions
No value
h245.G729Extensions
h245.g729wAnnexB g729wAnnexB
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.gatewayAddress gatewayAddress
Unsigned 32-bit integer
h245.SET_SIZE_1_256_OF_Q2931Address
h245.gatewayAddress_item Item
No value
h245.Q2931Address
h245.generalString generalString
No value
h245.NULL
h245.genericAudioCapability genericAudioCapability
No value
h245.GenericCapability
h245.genericAudioMode genericAudioMode
No value
h245.GenericCapability
h245.genericCommand genericCommand
No value
h245.GenericMessage
h245.genericControlCapability genericControlCapability
No value
h245.GenericCapability
h245.genericDataCapability genericDataCapability
No value
h245.GenericCapability
h245.genericDataMode genericDataMode
No value
h245.GenericCapability
h245.genericH235SecurityCapability genericH235SecurityCapability
No value
h245.GenericCapability
h245.genericIndication genericIndication
No value
h245.GenericMessage
h245.genericInformation genericInformation
Unsigned 32-bit integer
h245.SEQUENCE_OF_GenericInformation
h245.genericInformation_item Item
No value
h245.GenericInformation
h245.genericModeParameters genericModeParameters
No value
h245.GenericCapability
h245.genericMultiplexCapability genericMultiplexCapability
No value
h245.GenericCapability
h245.genericParameter genericParameter
Unsigned 32-bit integer
h245.SEQUENCE_OF_GenericParameter
h245.genericParameter_item Item
No value
h245.GenericParameter
h245.genericRequest genericRequest
No value
h245.GenericMessage
h245.genericResponse genericResponse
No value
h245.GenericMessage
h245.genericTransportParameters genericTransportParameters
No value
h245.GenericTransportParameters
h245.genericUserInputCapability genericUserInputCapability
No value
h245.GenericCapability
h245.genericVideoCapability genericVideoCapability
No value
h245.GenericCapability
h245.genericVideoMode genericVideoMode
No value
h245.GenericCapability
h245.golay24_12 golay24-12
No value
h245.NULL
h245.grantedBroadcastMyLogicalChannel grantedBroadcastMyLogicalChannel
No value
h245.NULL
h245.grantedChairToken grantedChairToken
No value
h245.NULL
h245.grantedMakeTerminalBroadcaster grantedMakeTerminalBroadcaster
No value
h245.NULL
h245.grantedSendThisSource grantedSendThisSource
No value
h245.NULL
h245.gsmEnhancedFullRate gsmEnhancedFullRate
No value
h245.GSMAudioCapability
h245.gsmFullRate gsmFullRate
No value
h245.GSMAudioCapability
h245.gsmHalfRate gsmHalfRate
No value
h245.GSMAudioCapability
h245.gstn gstn
No value
h245.NULL
h245.gstnOptions gstnOptions
Unsigned 32-bit integer
h245.T_gstnOptions
h245.guaranteedQOS guaranteedQOS
No value
h245.NULL
h245.h221NonStandard h221NonStandard
No value
h245.H221NonStandardID
h245.h222Capability h222Capability
No value
h245.H222Capability
h245.h222DataPartitioning h222DataPartitioning
Unsigned 32-bit integer
h245.DataProtocolCapability
h245.h222LogicalChannelParameters h222LogicalChannelParameters
No value
h245.H222LogicalChannelParameters
h245.h223AnnexA h223AnnexA
Boolean
h245.BOOLEAN
h245.h223AnnexADoubleFlag h223AnnexADoubleFlag
Boolean
h245.BOOLEAN
h245.h223AnnexB h223AnnexB
Boolean
h245.BOOLEAN
h245.h223AnnexBwithHeader h223AnnexBwithHeader
Boolean
h245.BOOLEAN
h245.h223AnnexCCapability h223AnnexCCapability
No value
h245.H223AnnexCCapability
h245.h223Capability h223Capability
No value
h245.H223Capability
h245.h223LogicalChannelParameters h223LogicalChannelParameters
No value
h245.OLC_fw_h223_params
h245.h223ModeChange h223ModeChange
Unsigned 32-bit integer
h245.T_h223ModeChange
h245.h223ModeParameters h223ModeParameters
No value
h245.H223ModeParameters
h245.h223MultiplexReconfiguration h223MultiplexReconfiguration
Unsigned 32-bit integer
h245.H223MultiplexReconfiguration
h245.h223MultiplexTableCapability h223MultiplexTableCapability
Unsigned 32-bit integer
h245.T_h223MultiplexTableCapability
h245.h223SkewIndication h223SkewIndication
No value
h245.H223SkewIndication
h245.h224 h224
Unsigned 32-bit integer
h245.DataProtocolCapability
h245.h2250Capability h2250Capability
No value
h245.H2250Capability
h245.h2250LogicalChannelAckParameters h2250LogicalChannelAckParameters
No value
h245.H2250LogicalChannelAckParameters
h245.h2250LogicalChannelParameters h2250LogicalChannelParameters
No value
h245.H2250LogicalChannelParameters
h245.h2250MaximumSkewIndication h2250MaximumSkewIndication
No value
h245.H2250MaximumSkewIndication
h245.h2250ModeParameters h2250ModeParameters
No value
h245.H2250ModeParameters
h245.h233AlgorithmIdentifier h233AlgorithmIdentifier
Unsigned 32-bit integer
h245.SequenceNumber
h245.h233Encryption h233Encryption
No value
h245.NULL
h245.h233EncryptionReceiveCapability h233EncryptionReceiveCapability
No value
h245.T_h233EncryptionReceiveCapability
h245.h233EncryptionTransmitCapability h233EncryptionTransmitCapability
Boolean
h245.BOOLEAN
h245.h233IVResponseTime h233IVResponseTime
Unsigned 32-bit integer
h245.INTEGER_0_255
h245.h235Control h235Control
No value
h245.NonStandardParameter
h245.h235Key h235Key
Byte array
h245.OCTET_STRING_SIZE_1_65535
h245.h235Media h235Media
No value
h245.H235Media
h245.h235Mode h235Mode
No value
h245.H235Mode
h245.h235SecurityCapability h235SecurityCapability
No value
h245.H235SecurityCapability
h245.h261VideoCapability h261VideoCapability
No value
h245.H261VideoCapability
h245.h261VideoMode h261VideoMode
No value
h245.H261VideoMode
h245.h261aVideoPacketization h261aVideoPacketization
Boolean
h245.BOOLEAN
h245.h262VideoCapability h262VideoCapability
No value
h245.H262VideoCapability
h245.h262VideoMode h262VideoMode
No value
h245.H262VideoMode
h245.h263Options h263Options
No value
h245.H263Options
h245.h263Version3Options h263Version3Options
No value
h245.H263Version3Options
h245.h263VideoCapability h263VideoCapability
No value
h245.H263VideoCapability
h245.h263VideoCoupledModes h263VideoCoupledModes
Unsigned 32-bit integer
h245.SET_SIZE_1_16_OF_H263ModeComboFlags
h245.h263VideoCoupledModes_item Item
No value
h245.H263ModeComboFlags
h245.h263VideoMode h263VideoMode
No value
h245.H263VideoMode
h245.h263VideoUncoupledModes h263VideoUncoupledModes
No value
h245.H263ModeComboFlags
h245.h310SeparateVCStack h310SeparateVCStack
No value
h245.NULL
h245.h310SingleVCStack h310SingleVCStack
No value
h245.NULL
h245.hdlcFrameTunnelingwSAR hdlcFrameTunnelingwSAR
No value
h245.NULL
h245.hdlcFrameTunnelling hdlcFrameTunnelling
No value
h245.NULL
h245.hdlcParameters hdlcParameters
No value
h245.V76HDLCParameters
h245.hdtvProg hdtvProg
Boolean
h245.BOOLEAN
h245.hdtvSeq hdtvSeq
Boolean
h245.BOOLEAN
h245.headerFEC headerFEC
Unsigned 32-bit integer
h245.AL1HeaderFEC
h245.headerFormat headerFormat
Unsigned 32-bit integer
h245.T_headerFormat
h245.height height
Unsigned 32-bit integer
h245.INTEGER_1_255
h245.highRateMode0 highRateMode0
Unsigned 32-bit integer
h245.INTEGER_27_78
h245.highRateMode1 highRateMode1
Unsigned 32-bit integer
h245.INTEGER_27_78
h245.higherBitRate higherBitRate
Unsigned 32-bit integer
h245.INTEGER_1_65535
h245.highestEntryNumberProcessed highestEntryNumberProcessed
Unsigned 32-bit integer
h245.CapabilityTableEntryNumber
h245.hookflash hookflash
No value
h245.NULL
h245.hrd_B hrd-B
Unsigned 32-bit integer
h245.INTEGER_0_524287
h245.iA5String iA5String
No value
h245.NULL
h245.iP6Address iP6Address
No value
h245.T_iP6Address
h245.iPAddress iPAddress
No value
h245.T_iPAddress
h245.iPSourceRouteAddress iPSourceRouteAddress
No value
h245.T_iPSourceRouteAddress
h245.iPXAddress iPXAddress
No value
h245.T_iPXAddress
h245.identicalNumbers identicalNumbers
No value
h245.NULL
h245.improvedPBFramesMode improvedPBFramesMode
Boolean
h245.BOOLEAN
h245.independentSegmentDecoding independentSegmentDecoding
Boolean
h245.BOOLEAN
h245.indication indication
Unsigned 32-bit integer
h245.IndicationMessage
h245.infinite infinite
No value
h245.NULL
h245.infoNotAvailable infoNotAvailable
Unsigned 32-bit integer
h245.INTEGER_1_65535
h245.insufficientBandwidth insufficientBandwidth
No value
h245.NULL
h245.insufficientResources insufficientResources
No value
h245.NULL
h245.integrityCapability integrityCapability
No value
h245.IntegrityCapability
h245.interlacedFields interlacedFields
Boolean
h245.BOOLEAN
h245.internationalNumber internationalNumber
String
h245.NumericString_SIZE_1_16
h245.invalidDependentChannel invalidDependentChannel
No value
h245.NULL
h245.invalidSessionID invalidSessionID
No value
h245.NULL
h245.ip_TCP ip-TCP
No value
h245.NULL
h245.ip_UDP ip-UDP
No value
h245.NULL
h245.is11172AudioCapability is11172AudioCapability
No value
h245.IS11172AudioCapability
h245.is11172AudioMode is11172AudioMode
No value
h245.IS11172AudioMode
h245.is11172VideoCapability is11172VideoCapability
No value
h245.IS11172VideoCapability
h245.is11172VideoMode is11172VideoMode
No value
h245.IS11172VideoMode
h245.is13818AudioCapability is13818AudioCapability
No value
h245.IS13818AudioCapability
h245.is13818AudioMode is13818AudioMode
No value
h245.IS13818AudioMode
h245.isdnOptions isdnOptions
Unsigned 32-bit integer
h245.T_isdnOptions
h245.issueQuery issueQuery
No value
h245.NULL
h245.iv iv
Byte array
h245.OCTET_STRING
h245.iv16 iv16
Byte array
h245.IV16
h245.iv8 iv8
Byte array
h245.IV8
h245.jbig200x200Prog jbig200x200Prog
Boolean
h245.BOOLEAN
h245.jbig200x200Seq jbig200x200Seq
Boolean
h245.BOOLEAN
h245.jbig300x300Prog jbig300x300Prog
Boolean
h245.BOOLEAN
h245.jbig300x300Seq jbig300x300Seq
Boolean
h245.BOOLEAN
h245.jitterIndication jitterIndication
No value
h245.JitterIndication
h245.keyProtectionMethod keyProtectionMethod
No value
h245.KeyProtectionMethod
h245.lcse lcse
No value
h245.NULL
h245.linesPerFrame linesPerFrame
Unsigned 32-bit integer
h245.INTEGER_0_16383
h245.localAreaAddress localAreaAddress
Unsigned 32-bit integer
h245.TransportAddress
h245.localQoS localQoS
Boolean
h245.BOOLEAN
h245.localTCF localTCF
No value
h245.NULL
h245.logical logical
No value
h245.NULL
h245.logicalChannelActive logicalChannelActive
No value
h245.NULL
h245.logicalChannelInactive logicalChannelInactive
No value
h245.NULL
h245.logicalChannelLoop logicalChannelLoop
Unsigned 32-bit integer
h245.LogicalChannelNumber
h245.logicalChannelNumber logicalChannelNumber
Unsigned 32-bit integer
h245.T_logicalChannelNum
h245.logicalChannelNumber1 logicalChannelNumber1
Unsigned 32-bit integer
h245.LogicalChannelNumber
h245.logicalChannelNumber2 logicalChannelNumber2
Unsigned 32-bit integer
h245.LogicalChannelNumber
h245.logicalChannelRateAcknowledge logicalChannelRateAcknowledge
No value
h245.LogicalChannelRateAcknowledge
h245.logicalChannelRateReject logicalChannelRateReject
No value
h245.LogicalChannelRateReject
h245.logicalChannelRateRelease logicalChannelRateRelease
No value
h245.LogicalChannelRateRelease
h245.logicalChannelRateRequest logicalChannelRateRequest
No value
h245.LogicalChannelRateRequest
h245.logicalChannelSwitchingCapability logicalChannelSwitchingCapability
Boolean
h245.BOOLEAN
h245.longInterleaver longInterleaver
Boolean
h245.BOOLEAN
h245.longTermPictureIndex longTermPictureIndex
Unsigned 32-bit integer
h245.INTEGER_0_255
h245.loopBackTestCapability loopBackTestCapability
Boolean
h245.BOOLEAN
h245.loopbackTestProcedure loopbackTestProcedure
Boolean
h245.BOOLEAN
h245.loose loose
No value
h245.NULL
h245.lostPartialPicture lostPartialPicture
No value
h245.T_lostPartialPicture
h245.lostPicture lostPicture
Unsigned 32-bit integer
h245.SEQUENCE_OF_PictureReference
h245.lostPicture_item Item
Unsigned 32-bit integer
h245.PictureReference
h245.lowFrequencyEnhancement lowFrequencyEnhancement
Boolean
h245.BOOLEAN
h245.lowRateMode0 lowRateMode0
Unsigned 32-bit integer
h245.INTEGER_23_66
h245.lowRateMode1 lowRateMode1
Unsigned 32-bit integer
h245.INTEGER_23_66
h245.lowerBitRate lowerBitRate
Unsigned 32-bit integer
h245.INTEGER_1_65535
h245.luminanceSampleRate luminanceSampleRate
Unsigned 32-bit integer
h245.INTEGER_0_4294967295
h245.mCTerminalIDResponse mCTerminalIDResponse
No value
h245.T_mCTerminalIDResponse
h245.mPI mPI
No value
h245.T_mPI
h245.mREJCapability mREJCapability
Boolean
h245.BOOLEAN
h245.mSREJ mSREJ
No value
h245.NULL
h245.maintenanceLoopAck maintenanceLoopAck
No value
h245.MaintenanceLoopAck
h245.maintenanceLoopOffCommand maintenanceLoopOffCommand
No value
h245.MaintenanceLoopOffCommand
h245.maintenanceLoopReject maintenanceLoopReject
No value
h245.MaintenanceLoopReject
h245.maintenanceLoopRequest maintenanceLoopRequest
No value
h245.MaintenanceLoopRequest
h245.makeMeChair makeMeChair
No value
h245.NULL
h245.makeMeChairResponse makeMeChairResponse
Unsigned 32-bit integer
h245.T_makeMeChairResponse
h245.makeTerminalBroadcaster makeTerminalBroadcaster
No value
h245.TerminalLabel
h245.makeTerminalBroadcasterResponse makeTerminalBroadcasterResponse
Unsigned 32-bit integer
h245.T_makeTerminalBroadcasterResponse
h245.manufacturerCode manufacturerCode
Unsigned 32-bit integer
h245.T_manufacturerCode
h245.master master
No value
h245.NULL
h245.masterActivate masterActivate
No value
h245.NULL
h245.masterSlaveConflict masterSlaveConflict
No value
h245.NULL
h245.masterSlaveDetermination masterSlaveDetermination
No value
h245.MasterSlaveDetermination
h245.masterSlaveDeterminationAck masterSlaveDeterminationAck
No value
h245.MasterSlaveDeterminationAck
h245.masterSlaveDeterminationReject masterSlaveDeterminationReject
No value
h245.MasterSlaveDeterminationReject
h245.masterSlaveDeterminationRelease masterSlaveDeterminationRelease
No value
h245.MasterSlaveDeterminationRelease
h245.masterToSlave masterToSlave
No value
h245.NULL
h245.maxAl_sduAudioFrames maxAl-sduAudioFrames
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.maxBitRate maxBitRate
Unsigned 32-bit integer
h245.INTEGER_1_19200
h245.maxCustomPictureHeight maxCustomPictureHeight
Unsigned 32-bit integer
h245.INTEGER_1_2048
h245.maxCustomPictureWidth maxCustomPictureWidth
Unsigned 32-bit integer
h245.INTEGER_1_2048
h245.maxH223MUXPDUsize maxH223MUXPDUsize
Unsigned 32-bit integer
h245.INTEGER_1_65535
h245.maxMUXPDUSizeCapability maxMUXPDUSizeCapability
Boolean
h245.BOOLEAN
h245.maxNTUSize maxNTUSize
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.maxNumberOfAdditionalConnections maxNumberOfAdditionalConnections
Unsigned 32-bit integer
h245.INTEGER_1_65535
h245.maxPendingReplacementFor maxPendingReplacementFor
Unsigned 32-bit integer
h245.INTEGER_0_255
h245.maxPktSize maxPktSize
Unsigned 32-bit integer
h245.INTEGER_1_4294967295
h245.maxWindowSizeCapability maxWindowSizeCapability
Unsigned 32-bit integer
h245.INTEGER_1_127
h245.maximumAL1MPDUSize maximumAL1MPDUSize
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.maximumAL2MSDUSize maximumAL2MSDUSize
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.maximumAL3MSDUSize maximumAL3MSDUSize
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.maximumAl2SDUSize maximumAl2SDUSize
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.maximumAl3SDUSize maximumAl3SDUSize
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.maximumAudioDelayJitter maximumAudioDelayJitter
Unsigned 32-bit integer
h245.INTEGER_0_1023
h245.maximumBitRate maximumBitRate
Unsigned 32-bit integer
h245.MaximumBitRate
h245.maximumDelayJitter maximumDelayJitter
Unsigned 32-bit integer
h245.INTEGER_0_1023
h245.maximumElementListSize maximumElementListSize
Unsigned 32-bit integer
h245.INTEGER_2_255
h245.maximumHeaderInterval maximumHeaderInterval
No value
h245.MaximumHeaderIntervalReq
h245.maximumNestingDepth maximumNestingDepth
Unsigned 32-bit integer
h245.INTEGER_1_15
h245.maximumPayloadLength maximumPayloadLength
Unsigned 32-bit integer
h245.INTEGER_1_65025
h245.maximumSampleSize maximumSampleSize
Unsigned 32-bit integer
h245.INTEGER_1_255
h245.maximumSkew maximumSkew
Unsigned 32-bit integer
h245.INTEGER_0_4095
h245.maximumStringLength maximumStringLength
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.maximumSubElementListSize maximumSubElementListSize
Unsigned 32-bit integer
h245.INTEGER_2_255
h245.mcCapability mcCapability
No value
h245.T_mcCapability
h245.mcLocationIndication mcLocationIndication
No value
h245.MCLocationIndication
h245.mcuNumber mcuNumber
Unsigned 32-bit integer
h245.McuNumber
h245.mediaCapability mediaCapability
Unsigned 32-bit integer
h245.CapabilityTableEntryNumber
h245.mediaChannel mediaChannel
Unsigned 32-bit integer
h245.T_mediaChannel
h245.mediaChannelCapabilities mediaChannelCapabilities
Unsigned 32-bit integer
h245.SEQUENCE_SIZE_1_256_OF_MediaChannelCapability
h245.mediaChannelCapabilities_item Item
No value
h245.MediaChannelCapability
h245.mediaControlChannel mediaControlChannel
Unsigned 32-bit integer
h245.T_mediaControlChannel
h245.mediaControlGuaranteedDelivery mediaControlGuaranteedDelivery
Boolean
h245.BOOLEAN
h245.mediaDistributionCapability mediaDistributionCapability
Unsigned 32-bit integer
h245.SEQUENCE_OF_MediaDistributionCapability
h245.mediaDistributionCapability_item Item
No value
h245.MediaDistributionCapability
h245.mediaGuaranteedDelivery mediaGuaranteedDelivery
Boolean
h245.BOOLEAN
h245.mediaLoop mediaLoop
Unsigned 32-bit integer
h245.LogicalChannelNumber
h245.mediaMode mediaMode
Unsigned 32-bit integer
h245.T_mediaMode
h245.mediaPacketization mediaPacketization
Unsigned 32-bit integer
h245.T_mediaPacketization
h245.mediaPacketizationCapability mediaPacketizationCapability
No value
h245.MediaPacketizationCapability
h245.mediaTransport mediaTransport
Unsigned 32-bit integer
h245.MediaTransportType
h245.mediaType mediaType
Unsigned 32-bit integer
h245.T_mediaType
h245.messageContent messageContent
Unsigned 32-bit integer
h245.T_messageContent
h245.messageContent_item Item
No value
h245.T_messageContent_item
h245.messageIdentifier messageIdentifier
Unsigned 32-bit integer
h245.CapabilityIdentifier
h245.minCustomPictureHeight minCustomPictureHeight
Unsigned 32-bit integer
h245.INTEGER_1_2048
h245.minCustomPictureWidth minCustomPictureWidth
Unsigned 32-bit integer
h245.INTEGER_1_2048
h245.minPoliced minPoliced
Unsigned 32-bit integer
h245.INTEGER_1_4294967295
h245.miscellaneousCommand miscellaneousCommand
No value
h245.MiscellaneousCommand
h245.miscellaneousIndication miscellaneousIndication
No value
h245.MiscellaneousIndication
h245.mobile mobile
No value
h245.NULL
h245.mobileMultilinkFrameCapability mobileMultilinkFrameCapability
No value
h245.T_mobileMultilinkFrameCapability
h245.mobileMultilinkReconfigurationCommand mobileMultilinkReconfigurationCommand
No value
h245.MobileMultilinkReconfigurationCommand
h245.mobileMultilinkReconfigurationIndication mobileMultilinkReconfigurationIndication
No value
h245.MobileMultilinkReconfigurationIndication
h245.mobileOperationTransmitCapability mobileOperationTransmitCapability
No value
h245.T_mobileOperationTransmitCapability
h245.mode mode
Unsigned 32-bit integer
h245.V76LCP_mode
h245.modeChangeCapability modeChangeCapability
Boolean
h245.BOOLEAN
h245.modeCombos modeCombos
Unsigned 32-bit integer
h245.SET_SIZE_1_16_OF_H263VideoModeCombos
h245.modeCombos_item Item
No value
h245.H263VideoModeCombos
h245.modeUnavailable modeUnavailable
No value
h245.NULL
h245.modifiedQuantizationMode modifiedQuantizationMode
Boolean
h245.BOOLEAN
h245.mpuHorizMBs mpuHorizMBs
Unsigned 32-bit integer
h245.INTEGER_1_128
h245.mpuTotalNumber mpuTotalNumber
Unsigned 32-bit integer
h245.INTEGER_1_65536
h245.mpuVertMBs mpuVertMBs
Unsigned 32-bit integer
h245.INTEGER_1_72
h245.multiUniCastConference multiUniCastConference
Boolean
h245.BOOLEAN
h245.multicast multicast
No value
h245.NULL
h245.multicastAddress multicastAddress
Unsigned 32-bit integer
h245.MulticastAddress
h245.multicastCapability multicastCapability
Boolean
h245.BOOLEAN
h245.multicastChannelNotAllowed multicastChannelNotAllowed
No value
h245.NULL
h245.multichannelType multichannelType
Unsigned 32-bit integer
h245.IS11172_multichannelType
h245.multilingual multilingual
Boolean
h245.BOOLEAN
h245.multilinkIndication multilinkIndication
Unsigned 32-bit integer
h245.MultilinkIndication
h245.multilinkRequest multilinkRequest
Unsigned 32-bit integer
h245.MultilinkRequest
h245.multilinkResponse multilinkResponse
Unsigned 32-bit integer
h245.MultilinkResponse
h245.multiplePayloadStream multiplePayloadStream
No value
h245.MultiplePayloadStream
h245.multiplePayloadStreamCapability multiplePayloadStreamCapability
No value
h245.MultiplePayloadStreamCapability
h245.multiplePayloadStreamMode multiplePayloadStreamMode
No value
h245.MultiplePayloadStreamMode
h245.multiplex multiplex
Unsigned 32-bit integer
h245.Cmd_multiplex
h245.multiplexCapability multiplexCapability
Unsigned 32-bit integer
h245.MultiplexCapability
h245.multiplexEntryDescriptors multiplexEntryDescriptors
Unsigned 32-bit integer
h245.SET_SIZE_1_15_OF_MultiplexEntryDescriptor
h245.multiplexEntryDescriptors_item Item
No value
h245.MultiplexEntryDescriptor
h245.multiplexEntrySend multiplexEntrySend
No value
h245.MultiplexEntrySend
h245.multiplexEntrySendAck multiplexEntrySendAck
No value
h245.MultiplexEntrySendAck
h245.multiplexEntrySendReject multiplexEntrySendReject
No value
h245.MultiplexEntrySendReject
h245.multiplexEntrySendRelease multiplexEntrySendRelease
No value
h245.MultiplexEntrySendRelease
h245.multiplexFormat multiplexFormat
Unsigned 32-bit integer
h245.MultiplexFormat
h245.multiplexParameters multiplexParameters
Unsigned 32-bit integer
h245.OLC_forw_multiplexParameters
h245.multiplexTableEntryNumber multiplexTableEntryNumber
Unsigned 32-bit integer
h245.MultiplexTableEntryNumber
h245.multiplexTableEntryNumber_item Item
Unsigned 32-bit integer
h245.MultiplexTableEntryNumber
h245.multiplexedStream multiplexedStream
No value
h245.MultiplexedStreamParameter
h245.multiplexedStreamMode multiplexedStreamMode
No value
h245.MultiplexedStreamParameter
h245.multiplexedStreamModeParameters multiplexedStreamModeParameters
No value
h245.MultiplexedStreamModeParameters
h245.multipointConference multipointConference
No value
h245.NULL
h245.multipointConstraint multipointConstraint
No value
h245.NULL
h245.multipointModeCommand multipointModeCommand
No value
h245.NULL
h245.multipointSecondaryStatus multipointSecondaryStatus
No value
h245.NULL
h245.multipointVisualizationCapability multipointVisualizationCapability
Boolean
h245.BOOLEAN
h245.multipointZeroComm multipointZeroComm
No value
h245.NULL
h245.n401 n401
Unsigned 32-bit integer
h245.INTEGER_1_4095
h245.n401Capability n401Capability
Unsigned 32-bit integer
h245.INTEGER_1_4095
h245.n_isdn n-isdn
No value
h245.NULL
h245.nackMessageOnly nackMessageOnly
No value
h245.NULL
h245.netBios netBios
Byte array
h245.OCTET_STRING_SIZE_16
h245.netnum netnum
Byte array
h245.OCTET_STRING_SIZE_4
h245.network network
IPv4 address
h245.Ipv4_network
h245.networkAddress networkAddress
Unsigned 32-bit integer
h245.T_networkAddress
h245.networkType networkType
Unsigned 32-bit integer
h245.SET_SIZE_1_255_OF_DialingInformationNetworkType
h245.networkType_item Item
Unsigned 32-bit integer
h245.DialingInformationNetworkType
h245.newATMVCCommand newATMVCCommand
No value
h245.NewATMVCCommand
h245.newATMVCIndication newATMVCIndication
No value
h245.NewATMVCIndication
h245.nextPictureHeaderRepetition nextPictureHeaderRepetition
Boolean
h245.BOOLEAN
h245.nlpid nlpid
No value
h245.Nlpid
h245.nlpidData nlpidData
Byte array
h245.OCTET_STRING
h245.nlpidProtocol nlpidProtocol
Unsigned 32-bit integer
h245.DataProtocolCapability
h245.noArq noArq
No value
h245.NULL
h245.noMultiplex noMultiplex
No value
h245.NULL
h245.noRestriction noRestriction
No value
h245.NULL
h245.noSilenceSuppressionHighRate noSilenceSuppressionHighRate
No value
h245.NULL
h245.noSilenceSuppressionLowRate noSilenceSuppressionLowRate
No value
h245.NULL
h245.noSuspendResume noSuspendResume
No value
h245.NULL
h245.node node
Byte array
h245.OCTET_STRING_SIZE_6
h245.nonCollapsing nonCollapsing
Unsigned 32-bit integer
h245.T_nonCollapsing
h245.nonCollapsingRaw nonCollapsingRaw
Byte array
h245.T_nonCollapsingRaw
h245.nonCollapsing_item Item
No value
h245.T_nonCollapsing_item
h245.nonStandard nonStandard
No value
h245.NonStandardMessage
h245.nonStandardAddress nonStandardAddress
No value
h245.NonStandardParameter
h245.nonStandardData nonStandardData
No value
h245.NonStandardParameter
h245.nonStandardData_item Item
No value
h245.NonStandardParameter
h245.nonStandardIdentifier nonStandardIdentifier
Unsigned 32-bit integer
h245.NonStandardIdentifier
h245.nonStandardParameter nonStandardParameter
No value
h245.NonStandardParameter
h245.nonStandard_item Item
No value
h245.NonStandardParameter
h245.none none
No value
h245.NULL
h245.noneProcessed noneProcessed
No value
h245.NULL
h245.normal normal
No value
h245.NULL
h245.nsap nsap
Byte array
h245.OCTET_STRING_SIZE_1_20
h245.nsapAddress nsapAddress
Byte array
h245.OCTET_STRING_SIZE_1_20
h245.nsrpSupport nsrpSupport
Boolean
h245.BOOLEAN
h245.nullClockRecovery nullClockRecovery
Boolean
h245.BOOLEAN
h245.nullData nullData
No value
h245.NULL
h245.nullErrorCorrection nullErrorCorrection
Boolean
h245.BOOLEAN
h245.numOfDLCS numOfDLCS
Unsigned 32-bit integer
h245.INTEGER_2_8191
h245.numberOfBPictures numberOfBPictures
Unsigned 32-bit integer
h245.INTEGER_1_64
h245.numberOfCodewords numberOfCodewords
Unsigned 32-bit integer
h245.INTEGER_1_65536
h245.numberOfGOBs numberOfGOBs
Unsigned 32-bit integer
h245.INTEGER_1_18
h245.numberOfMBs numberOfMBs
Unsigned 32-bit integer
h245.INTEGER_1_8192
h245.numberOfRetransmissions numberOfRetransmissions
Unsigned 32-bit integer
h245.T_numberOfRetransmissions
h245.numberOfThreads numberOfThreads
Unsigned 32-bit integer
h245.INTEGER_1_16
h245.numberOfVCs numberOfVCs
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.object object
h245.T_object
h245.octetString octetString
Unsigned 32-bit integer
h245.T_octetString
h245.offset_x offset-x
Signed 32-bit integer
h245.INTEGER_M262144_262143
h245.offset_y offset-y
Signed 32-bit integer
h245.INTEGER_M262144_262143
h245.oid oid
h245.OBJECT_IDENTIFIER
h245.oneOfCapabilities oneOfCapabilities
Unsigned 32-bit integer
h245.AlternativeCapabilitySet
h245.openLogicalChannel openLogicalChannel
No value
h245.OpenLogicalChannel
h245.openLogicalChannelAck openLogicalChannelAck
No value
h245.OpenLogicalChannelAck
h245.openLogicalChannelConfirm openLogicalChannelConfirm
No value
h245.OpenLogicalChannelConfirm
h245.openLogicalChannelReject openLogicalChannelReject
No value
h245.OpenLogicalChannelReject
h245.originateCall originateCall
No value
h245.NULL
h245.paramS paramS
No value
h245.Params
h245.parameterIdentifier parameterIdentifier
Unsigned 32-bit integer
h245.ParameterIdentifier
h245.parameterValue parameterValue
Unsigned 32-bit integer
h245.ParameterValue
h245.partialPictureFreezeAndRelease partialPictureFreezeAndRelease
Boolean
h245.BOOLEAN
h245.partialPictureSnapshot partialPictureSnapshot
Boolean
h245.BOOLEAN
h245.partiallyFilledCells partiallyFilledCells
Boolean
h245.BOOLEAN
h245.password password
Byte array
h245.Password
h245.passwordResponse passwordResponse
No value
h245.T_passwordResponse
h245.payloadDescriptor payloadDescriptor
Unsigned 32-bit integer
h245.T_payloadDescriptor
h245.payloadType payloadType
Unsigned 32-bit integer
h245.T_payloadType
h245.pbFrames pbFrames
Boolean
h245.BOOLEAN
h245.pcr_pid pcr-pid
Unsigned 32-bit integer
h245.INTEGER_0_8191
h245.pdu_type PDU Type
Unsigned 32-bit integer
Type of H.245 PDU
h245.peakRate peakRate
Unsigned 32-bit integer
h245.INTEGER_1_4294967295
h245.pictureNumber pictureNumber
Boolean
h245.BOOLEAN
h245.pictureRate pictureRate
Unsigned 32-bit integer
h245.INTEGER_0_15
h245.pictureReference pictureReference
Unsigned 32-bit integer
h245.PictureReference
h245.pixelAspectCode pixelAspectCode
Unsigned 32-bit integer
h245.T_pixelAspectCode
h245.pixelAspectCode_item Item
Unsigned 32-bit integer
h245.INTEGER_1_14
h245.pixelAspectInformation pixelAspectInformation
Unsigned 32-bit integer
h245.T_pixelAspectInformation
h245.pktMode pktMode
Unsigned 32-bit integer
h245.T_pktMode
h245.portNumber portNumber
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.presentationOrder presentationOrder
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.previousPictureHeaderRepetition previousPictureHeaderRepetition
Boolean
h245.BOOLEAN
h245.primary primary
No value
h245.RedundancyEncodingElement
h245.primaryEncoding primaryEncoding
Unsigned 32-bit integer
h245.CapabilityTableEntryNumber
h245.productNumber productNumber
String
h245.OCTET_STRING_SIZE_1_256
h245.profileAndLevel profileAndLevel
Unsigned 32-bit integer
h245.T_profileAndLevel
h245.profileAndLevel_HPatHL profileAndLevel-HPatHL
Boolean
h245.BOOLEAN
h245.profileAndLevel_HPatH_14 profileAndLevel-HPatH-14
Boolean
h245.BOOLEAN
h245.profileAndLevel_HPatML profileAndLevel-HPatML
Boolean
h245.BOOLEAN
h245.profileAndLevel_MPatHL profileAndLevel-MPatHL
Boolean
h245.BOOLEAN
h245.profileAndLevel_MPatH_14 profileAndLevel-MPatH-14
Boolean
h245.BOOLEAN
h245.profileAndLevel_MPatLL profileAndLevel-MPatLL
Boolean
h245.BOOLEAN
h245.profileAndLevel_MPatML profileAndLevel-MPatML
Boolean
h245.BOOLEAN
h245.profileAndLevel_SNRatLL profileAndLevel-SNRatLL
Boolean
h245.BOOLEAN
h245.profileAndLevel_SNRatML profileAndLevel-SNRatML
Boolean
h245.BOOLEAN
h245.profileAndLevel_SPatML profileAndLevel-SPatML
Boolean
h245.BOOLEAN
h245.profileAndLevel_SpatialatH_14 profileAndLevel-SpatialatH-14
Boolean
h245.BOOLEAN
h245.programDescriptors programDescriptors
Byte array
h245.OCTET_STRING
h245.programStream programStream
Boolean
h245.BOOLEAN
h245.progressiveRefinement progressiveRefinement
Boolean
h245.BOOLEAN
h245.progressiveRefinementAbortContinuous progressiveRefinementAbortContinuous
No value
h245.NULL
h245.progressiveRefinementAbortOne progressiveRefinementAbortOne
No value
h245.NULL
h245.progressiveRefinementStart progressiveRefinementStart
No value
h245.T_progressiveRefinementStart
h245.protectedCapability protectedCapability
Unsigned 32-bit integer
h245.CapabilityTableEntryNumber
h245.protectedChannel protectedChannel
Unsigned 32-bit integer
h245.LogicalChannelNumber
h245.protectedElement protectedElement
Unsigned 32-bit integer
h245.ModeElementType
h245.protectedPayloadType protectedPayloadType
Unsigned 32-bit integer
h245.INTEGER_0_127
h245.protectedSessionID protectedSessionID
Unsigned 32-bit integer
h245.INTEGER_1_255
h245.protocolIdentifier protocolIdentifier
h245.OBJECT_IDENTIFIER
h245.q2931Address q2931Address
No value
h245.Q2931Address
h245.qOSCapabilities qOSCapabilities
Unsigned 32-bit integer
h245.SEQUENCE_SIZE_1_256_OF_QOSCapability
h245.qOSCapabilities_item Item
No value
h245.QOSCapability
h245.qcif qcif
Boolean
h245.BOOLEAN
h245.qcifAdditionalPictureMemory qcifAdditionalPictureMemory
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.qcifMPI qcifMPI
Unsigned 32-bit integer
h245.INTEGER_1_4
h245.qosCapability qosCapability
No value
h245.QOSCapability
h245.qosClass qosClass
Unsigned 32-bit integer
h245.QOSClass
h245.qosDescriptor qosDescriptor
No value
h245.QOSDescriptor
h245.qosMode qosMode
Unsigned 32-bit integer
h245.QOSMode
h245.qosType qosType
Unsigned 32-bit integer
h245.QOSType
h245.rangeOfBitRates rangeOfBitRates
No value
h245.T_rangeOfBitRates
h245.rcpcCodeRate rcpcCodeRate
Unsigned 32-bit integer
h245.INTEGER_8_32
h245.reason reason
Unsigned 32-bit integer
h245.Clc_reason
h245.receiveAndTransmitAudioCapability receiveAndTransmitAudioCapability
Unsigned 32-bit integer
h245.AudioCapability
h245.receiveAndTransmitDataApplicationCapability receiveAndTransmitDataApplicationCapability
No value
h245.DataApplicationCapability
h245.receiveAndTransmitMultiplexedStreamCapability receiveAndTransmitMultiplexedStreamCapability
No value
h245.MultiplexedStreamCapability
h245.receiveAndTransmitMultipointCapability receiveAndTransmitMultipointCapability
No value
h245.MultipointCapability
h245.receiveAndTransmitUserInputCapability receiveAndTransmitUserInputCapability
Unsigned 32-bit integer
h245.UserInputCapability
h245.receiveAndTransmitVideoCapability receiveAndTransmitVideoCapability
Unsigned 32-bit integer
h245.VideoCapability
h245.receiveAudioCapability receiveAudioCapability
Unsigned 32-bit integer
h245.AudioCapability
h245.receiveCompression receiveCompression
Unsigned 32-bit integer
h245.CompressionType
h245.receiveDataApplicationCapability receiveDataApplicationCapability
No value
h245.DataApplicationCapability
h245.receiveMultiplexedStreamCapability receiveMultiplexedStreamCapability
No value
h245.MultiplexedStreamCapability
h245.receiveMultipointCapability receiveMultipointCapability
No value
h245.MultipointCapability
h245.receiveRTPAudioTelephonyEventCapability receiveRTPAudioTelephonyEventCapability
No value
h245.AudioTelephonyEventCapability
h245.receiveRTPAudioToneCapability receiveRTPAudioToneCapability
No value
h245.AudioToneCapability
h245.receiveUserInputCapability receiveUserInputCapability
Unsigned 32-bit integer
h245.UserInputCapability
h245.receiveVideoCapability receiveVideoCapability
Unsigned 32-bit integer
h245.VideoCapability
h245.reconfiguration reconfiguration
No value
h245.NULL
h245.recovery recovery
Unsigned 32-bit integer
h245.T_recovery
h245.recoveryReferencePicture recoveryReferencePicture
Unsigned 32-bit integer
h245.SEQUENCE_OF_PictureReference
h245.recoveryReferencePicture_item Item
Unsigned 32-bit integer
h245.PictureReference
h245.reducedResolutionUpdate reducedResolutionUpdate
Boolean
h245.BOOLEAN
h245.redundancyEncoding redundancyEncoding
Boolean
h245.BOOLEAN
h245.redundancyEncodingCap redundancyEncodingCap
No value
h245.RedundancyEncodingCapability
h245.redundancyEncodingCapability redundancyEncodingCapability
Unsigned 32-bit integer
h245.SEQUENCE_SIZE_1_256_OF_RedundancyEncodingCapability
h245.redundancyEncodingCapability_item Item
No value
h245.RedundancyEncodingCapability
h245.redundancyEncodingDTMode redundancyEncodingDTMode
No value
h245.RedundancyEncodingDTMode
h245.redundancyEncodingMethod redundancyEncodingMethod
Unsigned 32-bit integer
h245.RedundancyEncodingMethod
h245.redundancyEncodingMode redundancyEncodingMode
No value
h245.RedundancyEncodingMode
h245.refPictureSelection refPictureSelection
No value
h245.RefPictureSelection
h245.referencePicSelect referencePicSelect
Boolean
h245.BOOLEAN
h245.rej rej
No value
h245.NULL
h245.rejCapability rejCapability
Boolean
h245.BOOLEAN
h245.reject reject
Unsigned 32-bit integer
h245.T_reject
h245.rejectReason rejectReason
Unsigned 32-bit integer
h245.LogicalChannelRateRejectReason
h245.rejected rejected
Unsigned 32-bit integer
h245.T_rejected
h245.rejectionDescriptions rejectionDescriptions
Unsigned 32-bit integer
h245.SET_SIZE_1_15_OF_MultiplexEntryRejectionDescriptions
h245.rejectionDescriptions_item Item
No value
h245.MultiplexEntryRejectionDescriptions
h245.remoteMCRequest remoteMCRequest
Unsigned 32-bit integer
h245.RemoteMCRequest
h245.remoteMCResponse remoteMCResponse
Unsigned 32-bit integer
h245.RemoteMCResponse
h245.removeConnection removeConnection
No value
h245.RemoveConnectionReq
h245.reopen reopen
No value
h245.NULL
h245.repeatCount repeatCount
Unsigned 32-bit integer
h245.ME_repeatCount
h245.replacementFor replacementFor
Unsigned 32-bit integer
h245.LogicalChannelNumber
h245.replacementForRejected replacementForRejected
No value
h245.NULL
h245.request request
Unsigned 32-bit integer
h245.RequestMessage
h245.requestAllTerminalIDs requestAllTerminalIDs
No value
h245.NULL
h245.requestAllTerminalIDsResponse requestAllTerminalIDsResponse
No value
h245.RequestAllTerminalIDsResponse
h245.requestChairTokenOwner requestChairTokenOwner
No value
h245.NULL
h245.requestChannelClose requestChannelClose
No value
h245.RequestChannelClose
h245.requestChannelCloseAck requestChannelCloseAck
No value
h245.RequestChannelCloseAck
h245.requestChannelCloseReject requestChannelCloseReject
No value
h245.RequestChannelCloseReject
h245.requestChannelCloseRelease requestChannelCloseRelease
No value
h245.RequestChannelCloseRelease
h245.requestDenied requestDenied
No value
h245.NULL
h245.requestForFloor requestForFloor
No value
h245.NULL
h245.requestMode requestMode
No value
h245.RequestMode
h245.requestModeAck requestModeAck
No value
h245.RequestModeAck
h245.requestModeReject requestModeReject
No value
h245.RequestModeReject
h245.requestModeRelease requestModeRelease
No value
h245.RequestModeRelease
h245.requestMultiplexEntry requestMultiplexEntry
No value
h245.RequestMultiplexEntry
h245.requestMultiplexEntryAck requestMultiplexEntryAck
No value
h245.RequestMultiplexEntryAck
h245.requestMultiplexEntryReject requestMultiplexEntryReject
No value
h245.RequestMultiplexEntryReject
h245.requestMultiplexEntryRelease requestMultiplexEntryRelease
No value
h245.RequestMultiplexEntryRelease
h245.requestTerminalCertificate requestTerminalCertificate
No value
h245.T_requestTerminalCertificate
h245.requestTerminalID requestTerminalID
No value
h245.TerminalLabel
h245.requestType requestType
Unsigned 32-bit integer
h245.T_requestType
h245.requestedInterval requestedInterval
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.requestedModes requestedModes
Unsigned 32-bit integer
h245.SEQUENCE_SIZE_1_256_OF_ModeDescription
h245.requestedModes_item Item
Unsigned 32-bit integer
h245.ModeDescription
h245.required required
No value
h245.NULL
h245.reservationFailure reservationFailure
No value
h245.NULL
h245.resizingPartPicFreezeAndRelease resizingPartPicFreezeAndRelease
Boolean
h245.BOOLEAN
h245.resolution resolution
Unsigned 32-bit integer
h245.H261Resolution
h245.resourceID resourceID
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.response response
Unsigned 32-bit integer
h245.ResponseMessage
h245.responseCode responseCode
Unsigned 32-bit integer
h245.T_responseCode
h245.restriction restriction
Unsigned 32-bit integer
h245.Restriction
h245.returnedFunction returnedFunction
Byte array
h245.T_returnedFunction
h245.reverseLogicalChannelDependency reverseLogicalChannelDependency
Unsigned 32-bit integer
h245.LogicalChannelNumber
h245.reverseLogicalChannelNumber reverseLogicalChannelNumber
Unsigned 32-bit integer
h245.T_reverseLogicalChannelNumber
h245.reverseLogicalChannelParameters reverseLogicalChannelParameters
No value
h245.OLC_reverseLogicalChannelParameters
h245.reverseParameters reverseParameters
No value
h245.Cmd_reverseParameters
h245.rfc2198coding rfc2198coding
No value
h245.NULL
h245.rfc2733 rfc2733
No value
h245.FECC_rfc2733
h245.rfc2733Format rfc2733Format
Unsigned 32-bit integer
h245.Rfc2733Format
h245.rfc2733Mode rfc2733Mode
No value
h245.T_rfc2733Mode
h245.rfc2733diffport rfc2733diffport
Unsigned 32-bit integer
h245.MaxRedundancy
h245.rfc2733rfc2198 rfc2733rfc2198
Unsigned 32-bit integer
h245.MaxRedundancy
h245.rfc2733sameport rfc2733sameport
Unsigned 32-bit integer
h245.MaxRedundancy
h245.rfc_number rfc-number
Unsigned 32-bit integer
h245.T_rfc_number
h245.roundTripDelayRequest roundTripDelayRequest
No value
h245.RoundTripDelayRequest
h245.roundTripDelayResponse roundTripDelayResponse
No value
h245.RoundTripDelayResponse
h245.roundrobin roundrobin
No value
h245.NULL
h245.route route
Unsigned 32-bit integer
h245.T_route
h245.route_item Item
Byte array
h245.OCTET_STRING_SIZE_4
h245.routing routing
Unsigned 32-bit integer
h245.T_routing
h245.rsCodeCapability rsCodeCapability
Boolean
h245.BOOLEAN
h245.rsCodeCorrection rsCodeCorrection
Unsigned 32-bit integer
h245.INTEGER_0_127
h245.rsvpParameters rsvpParameters
No value
h245.RSVPParameters
h245.rtcpVideoControlCapability rtcpVideoControlCapability
Boolean
h245.BOOLEAN
h245.rtp rtp
No value
h245.T_rtp
h245.rtpAudioRedundancyEncoding rtpAudioRedundancyEncoding
No value
h245.NULL
h245.rtpH263VideoRedundancyEncoding rtpH263VideoRedundancyEncoding
No value
h245.RTPH263VideoRedundancyEncoding
h245.rtpPayloadIndication rtpPayloadIndication
No value
h245.NULL
h245.rtpPayloadType rtpPayloadType
Unsigned 32-bit integer
h245.SEQUENCE_SIZE_1_256_OF_RTPPayloadType
h245.rtpPayloadType_item Item
No value
h245.RTPPayloadType
h245.rtpRedundancyEncoding rtpRedundancyEncoding
No value
h245.T_rtpRedundancyEncoding
h245.sREJ sREJ
No value
h245.NULL
h245.sREJCapability sREJCapability
Boolean
h245.BOOLEAN
h245.sRandom sRandom
Unsigned 32-bit integer
h245.INTEGER_1_4294967295
h245.samePort samePort
Boolean
h245.BOOLEAN
h245.sampleSize sampleSize
Unsigned 32-bit integer
h245.INTEGER_1_255
h245.samplesPerFrame samplesPerFrame
Unsigned 32-bit integer
h245.INTEGER_1_255
h245.samplesPerLine samplesPerLine
Unsigned 32-bit integer
h245.INTEGER_0_16383
h245.sbeNumber sbeNumber
Unsigned 32-bit integer
h245.INTEGER_0_9
h245.scale_x scale-x
Unsigned 32-bit integer
h245.INTEGER_1_255
h245.scale_y scale-y
Unsigned 32-bit integer
h245.INTEGER_1_255
h245.scope scope
Unsigned 32-bit integer
h245.Scope
h245.scrambled scrambled
Boolean
h245.BOOLEAN
h245.sebch16_5 sebch16-5
No value
h245.NULL
h245.sebch16_7 sebch16-7
No value
h245.NULL
h245.secondary secondary
Unsigned 32-bit integer
h245.SEQUENCE_OF_RedundancyEncodingElement
h245.secondaryEncoding secondaryEncoding
Unsigned 32-bit integer
h245.SEQUENCE_SIZE_1_256_OF_CapabilityTableEntryNumber
h245.secondaryEncoding_item Item
Unsigned 32-bit integer
h245.CapabilityTableEntryNumber
h245.secondary_item Item
No value
h245.RedundancyEncodingElement
h245.secureChannel secureChannel
Boolean
h245.BOOLEAN
h245.secureDTMF secureDTMF
No value
h245.NULL
h245.securityDenied securityDenied
No value
h245.NULL
h245.seenByAll seenByAll
No value
h245.NULL
h245.seenByAtLeastOneOther seenByAtLeastOneOther
No value
h245.NULL
h245.segmentableFlag segmentableFlag
Boolean
h245.T_h223_lc_segmentableFlag
h245.segmentationAndReassembly segmentationAndReassembly
No value
h245.NULL
h245.semanticError semanticError
No value
h245.NULL
h245.sendBufferSize sendBufferSize
Unsigned 32-bit integer
h245.T_al3_sendBufferSize
h245.sendTerminalCapabilitySet sendTerminalCapabilitySet
Unsigned 32-bit integer
h245.SendTerminalCapabilitySet
h245.sendThisSource sendThisSource
No value
h245.TerminalLabel
h245.sendThisSourceResponse sendThisSourceResponse
Unsigned 32-bit integer
h245.T_sendThisSourceResponse
h245.separateLANStack separateLANStack
No value
h245.NULL
h245.separatePort separatePort
Boolean
h245.BOOLEAN
h245.separateStack separateStack
No value
h245.NetworkAccessParameters
h245.separateStackEstablishmentFailed separateStackEstablishmentFailed
No value
h245.NULL
h245.separateStream separateStream
No value
h245.T_separateStreamBool
h245.separateVideoBackChannel separateVideoBackChannel
Boolean
h245.BOOLEAN
h245.sequenceNumber sequenceNumber
Unsigned 32-bit integer
h245.SequenceNumber
h245.servicePriority servicePriority
No value
h245.ServicePriority
h245.servicePrioritySignalled servicePrioritySignalled
Boolean
h245.BOOLEAN
h245.servicePriorityValue servicePriorityValue
No value
h245.ServicePriorityValue
h245.sessionDependency sessionDependency
Unsigned 32-bit integer
h245.INTEGER_1_255
h245.sessionDescription sessionDescription
String
h245.BMPString_SIZE_1_128
h245.sessionID sessionID
Unsigned 32-bit integer
h245.INTEGER_0_255
h245.sharedSecret sharedSecret
Boolean
h245.BOOLEAN
h245.shortInterleaver shortInterleaver
Boolean
h245.BOOLEAN
h245.sidMode0 sidMode0
Unsigned 32-bit integer
h245.INTEGER_6_17
h245.sidMode1 sidMode1
Unsigned 32-bit integer
h245.INTEGER_6_17
h245.signal signal
No value
h245.T_signal
h245.signalAddress signalAddress
Unsigned 32-bit integer
h245.TransportAddress
h245.signalType signalType
String
h245.T_signalType
h245.signalUpdate signalUpdate
No value
h245.T_signalUpdate
h245.silenceSuppression silenceSuppression
Boolean
h245.BOOLEAN
h245.silenceSuppressionHighRate silenceSuppressionHighRate
No value
h245.NULL
h245.silenceSuppressionLowRate silenceSuppressionLowRate
No value
h245.NULL
h245.simultaneousCapabilities simultaneousCapabilities
Unsigned 32-bit integer
h245.SET_SIZE_1_256_OF_AlternativeCapabilitySet
h245.simultaneousCapabilities_item Item
Unsigned 32-bit integer
h245.AlternativeCapabilitySet
h245.singleBitRate singleBitRate
Unsigned 32-bit integer
h245.INTEGER_1_65535
h245.singleChannel singleChannel
Boolean
h245.BOOLEAN
h245.skew skew
Unsigned 32-bit integer
h245.INTEGER_0_4095
h245.skippedFrameCount skippedFrameCount
Unsigned 32-bit integer
h245.INTEGER_0_15
h245.slave slave
No value
h245.NULL
h245.slaveActivate slaveActivate
No value
h245.NULL
h245.slaveToMaster slaveToMaster
No value
h245.NULL
h245.slicesInOrder_NonRect slicesInOrder-NonRect
Boolean
h245.BOOLEAN
h245.slicesInOrder_Rect slicesInOrder-Rect
Boolean
h245.BOOLEAN
h245.slicesNoOrder_NonRect slicesNoOrder-NonRect
Boolean
h245.BOOLEAN
h245.slicesNoOrder_Rect slicesNoOrder-Rect
Boolean
h245.BOOLEAN
h245.slowCif16MPI slowCif16MPI
Unsigned 32-bit integer
h245.INTEGER_1_3600
h245.slowCif4MPI slowCif4MPI
Unsigned 32-bit integer
h245.INTEGER_1_3600
h245.slowCifMPI slowCifMPI
Unsigned 32-bit integer
h245.INTEGER_1_3600
h245.slowQcifMPI slowQcifMPI
Unsigned 32-bit integer
h245.INTEGER_1_3600
h245.slowSqcifMPI slowSqcifMPI
Unsigned 32-bit integer
h245.INTEGER_1_3600
h245.snrEnhancement snrEnhancement
Unsigned 32-bit integer
h245.SET_SIZE_1_14_OF_EnhancementOptions
h245.snrEnhancement_item Item
No value
h245.EnhancementOptions
h245.source source
No value
h245.TerminalLabel
h245.spareReferencePictures spareReferencePictures
Boolean
h245.BOOLEAN
h245.spatialEnhancement spatialEnhancement
Unsigned 32-bit integer
h245.SET_SIZE_1_14_OF_EnhancementOptions
h245.spatialEnhancement_item Item
No value
h245.EnhancementOptions
h245.specificRequest specificRequest
No value
h245.T_specificRequest
h245.sqcif sqcif
No value
h245.NULL
h245.sqcifAdditionalPictureMemory sqcifAdditionalPictureMemory
Unsigned 32-bit integer
h245.INTEGER_1_256
h245.sqcifMPI sqcifMPI
Unsigned 32-bit integer
h245.INTEGER_1_32
h245.srtsClockRecovery srtsClockRecovery
Boolean
h245.BOOLEAN
h245.standard standard
h245.T_standardOid
h245.standardMPI standardMPI
Unsigned 32-bit integer
h245.INTEGER_1_31
h245.start start
No value
h245.NULL
h245.status status
Unsigned 32-bit integer
h245.T_status
h245.statusDeterminationNumber statusDeterminationNumber
Unsigned 32-bit integer
h245.INTEGER_0_16777215
h245.stillImageTransmission stillImageTransmission
Boolean
h245.BOOLEAN
h245.stop stop
No value
h245.NULL
h245.streamDescriptors streamDescriptors
Byte array
h245.OCTET_STRING
h245.strict strict
No value
h245.NULL
h245.structuredDataTransfer structuredDataTransfer
Boolean
h245.BOOLEAN
h245.subAddress subAddress
String
h245.IA5String_SIZE_1_40
h245.subChannelID subChannelID
Unsigned 32-bit integer
h245.INTEGER_0_8191
h245.subElementList subElementList
Unsigned 32-bit integer
h245.T_subElementList
h245.subElementList_item Item
No value
h245.MultiplexElement
h245.subMessageIdentifier subMessageIdentifier
Unsigned 32-bit integer
h245.T_subMessageIdentifier
h245.subPictureNumber subPictureNumber
Unsigned 32-bit integer
h245.INTEGER_0_255
h245.subPictureRemovalParameters subPictureRemovalParameters
No value
h245.T_subPictureRemovalParameters
h245.subaddress subaddress
Byte array
h245.OCTET_STRING_SIZE_1_20
h245.substituteConferenceIDCommand substituteConferenceIDCommand
No value
h245.SubstituteConferenceIDCommand
h245.supersedes supersedes
Unsigned 32-bit integer
h245.SEQUENCE_OF_ParameterIdentifier
h245.supersedes_item Item
Unsigned 32-bit integer
h245.ParameterIdentifier
h245.suspendResume suspendResume
Unsigned 32-bit integer
h245.T_suspendResume
h245.suspendResumeCapabilitywAddress suspendResumeCapabilitywAddress
Boolean
h245.BOOLEAN
h245.suspendResumeCapabilitywoAddress suspendResumeCapabilitywoAddress
Boolean
h245.BOOLEAN
h245.suspendResumewAddress suspendResumewAddress
No value
h245.NULL
h245.suspendResumewoAddress suspendResumewoAddress
No value
h245.NULL
h245.switchReceiveMediaOff switchReceiveMediaOff
No value
h245.NULL
h245.switchReceiveMediaOn switchReceiveMediaOn
No value
h245.NULL
h245.synchFlag synchFlag
Unsigned 32-bit integer
h245.INTEGER_0_255
h245.synchronized synchronized
No value
h245.NULL
h245.syntaxError syntaxError
No value
h245.NULL
h245.systemLoop systemLoop
No value
h245.NULL
h245.t120 t120
Unsigned 32-bit integer
h245.DataProtocolCapability
h245.t120DynamicPortCapability t120DynamicPortCapability
Boolean
h245.BOOLEAN
h245.t120SetupProcedure t120SetupProcedure
Unsigned 32-bit integer
h245.T_t120SetupProcedure
h245.t140 t140
Unsigned 32-bit integer
h245.DataProtocolCapability
h245.t30fax t30fax
Unsigned 32-bit integer
h245.DataProtocolCapability
h245.t35CountryCode t35CountryCode
Unsigned 32-bit integer
h245.T_t35CountryCode
h245.t35Extension t35Extension
Unsigned 32-bit integer
h245.T_t35Extension
h245.t38FaxMaxBuffer t38FaxMaxBuffer
Signed 32-bit integer
h245.INTEGER
h245.t38FaxMaxDatagram t38FaxMaxDatagram
Signed 32-bit integer
h245.INTEGER
h245.t38FaxProfile t38FaxProfile
No value
h245.T38FaxProfile
h245.t38FaxProtocol t38FaxProtocol
Unsigned 32-bit integer
h245.DataProtocolCapability
h245.t38FaxRateManagement t38FaxRateManagement
Unsigned 32-bit integer
h245.T38FaxRateManagement
h245.t38FaxTcpOptions t38FaxTcpOptions
No value
h245.T38FaxTcpOptions
h245.t38FaxUdpEC t38FaxUdpEC
Unsigned 32-bit integer
h245.T_t38FaxUdpEC
h245.t38FaxUdpOptions t38FaxUdpOptions
No value
h245.T38FaxUdpOptions
h245.t38TCPBidirectionalMode t38TCPBidirectionalMode
Boolean
h245.BOOLEAN
h245.t38UDPFEC t38UDPFEC
No value
h245.NULL
h245.t38UDPRedundancy t38UDPRedundancy
No value
h245.NULL
h245.t38fax t38fax
No value
h245.T_t38fax
h245.t434 t434
Unsigned 32-bit integer
h245.DataProtocolCapability
h245.t84 t84
No value
h245.T_t84
h245.t84Profile t84Profile
Unsigned 32-bit integer
h245.T84Profile
h245.t84Protocol t84Protocol
Unsigned 32-bit integer
h245.DataProtocolCapability
h245.t84Restricted t84Restricted
No value
h245.T_t84Restricted
h245.t84Unrestricted t84Unrestricted
No value
h245.NULL
h245.tableEntryCapacityExceeded tableEntryCapacityExceeded
Unsigned 32-bit integer
h245.T_tableEntryCapacityExceeded
h245.tcp tcp
No value
h245.NULL
h245.telephonyMode telephonyMode
No value
h245.NULL
h245.temporalReference temporalReference
Unsigned 32-bit integer
h245.INTEGER_0_1023
h245.temporalSpatialTradeOffCapability temporalSpatialTradeOffCapability
Boolean
h245.BOOLEAN
h245.terminalCapabilitySet terminalCapabilitySet
No value
h245.TerminalCapabilitySet
h245.terminalCapabilitySetAck terminalCapabilitySetAck
No value
h245.TerminalCapabilitySetAck
h245.terminalCapabilitySetReject terminalCapabilitySetReject
No value
h245.TerminalCapabilitySetReject
h245.terminalCapabilitySetRelease terminalCapabilitySetRelease
No value
h245.TerminalCapabilitySetRelease
h245.terminalCertificateResponse terminalCertificateResponse
No value
h245.T_terminalCertificateResponse
h245.terminalDropReject terminalDropReject
No value
h245.NULL
h245.terminalID terminalID
Byte array
h245.TerminalID
h245.terminalIDResponse terminalIDResponse
No value
h245.T_terminalIDResponse
h245.terminalInformation terminalInformation
Unsigned 32-bit integer
h245.SEQUENCE_OF_TerminalInformation
h245.terminalInformation_item Item
No value
h245.TerminalInformation
h245.terminalJoinedConference terminalJoinedConference
No value
h245.TerminalLabel
h245.terminalLabel terminalLabel
No value
h245.TerminalLabel
h245.terminalLeftConference terminalLeftConference
No value
h245.TerminalLabel
h245.terminalListRequest terminalListRequest
No value
h245.NULL
h245.terminalListResponse terminalListResponse
Unsigned 32-bit integer
h245.SET_SIZE_1_256_OF_TerminalLabel
h245.terminalListResponse_item Item
No value
h245.TerminalLabel
h245.terminalNumber terminalNumber
Unsigned 32-bit integer
h245.TerminalNumber
h245.terminalNumberAssign terminalNumberAssign
No value
h245.TerminalLabel
h245.terminalOnHold terminalOnHold
No value
h245.NULL
h245.terminalType terminalType
Unsigned 32-bit integer
h245.INTEGER_0_255
h245.terminalYouAreSeeing terminalYouAreSeeing
No value
h245.TerminalLabel
h245.terminalYouAreSeeingInSubPictureNumber terminalYouAreSeeingInSubPictureNumber
No value
h245.TerminalYouAreSeeingInSubPictureNumber
h245.threadNumber threadNumber
Unsigned 32-bit integer
h245.INTEGER_0_15
h245.threeChannels2_1 threeChannels2-1
Boolean
h245.BOOLEAN
h245.threeChannels3_0 threeChannels3-0
Boolean
h245.BOOLEAN
h245.timestamp timestamp
Unsigned 32-bit integer
h245.INTEGER_0_4294967295
h245.toLevel0 toLevel0
No value
h245.NULL
h245.toLevel1 toLevel1
No value
h245.NULL
h245.toLevel2 toLevel2
No value
h245.NULL
h245.toLevel2withOptionalHeader toLevel2withOptionalHeader
No value
h245.NULL
h245.tokenRate tokenRate
Unsigned 32-bit integer
h245.INTEGER_1_4294967295
h245.transcodingJBIG transcodingJBIG
Boolean
h245.BOOLEAN
h245.transcodingMMR transcodingMMR
Boolean
h245.BOOLEAN
h245.transferMode transferMode
Unsigned 32-bit integer
h245.T_transferMode
h245.transferredTCF transferredTCF
No value
h245.NULL
h245.transmitAndReceiveCompression transmitAndReceiveCompression
Unsigned 32-bit integer
h245.CompressionType
h245.transmitAudioCapability transmitAudioCapability
Unsigned 32-bit integer
h245.AudioCapability
h245.transmitCompression transmitCompression
Unsigned 32-bit integer
h245.CompressionType
h245.transmitDataApplicationCapability transmitDataApplicationCapability
No value
h245.DataApplicationCapability
h245.transmitMultiplexedStreamCapability transmitMultiplexedStreamCapability
No value
h245.MultiplexedStreamCapability
h245.transmitMultipointCapability transmitMultipointCapability
No value
h245.MultipointCapability
h245.transmitUserInputCapability transmitUserInputCapability
Unsigned 32-bit integer
h245.UserInputCapability
h245.transmitVideoCapability transmitVideoCapability
Unsigned 32-bit integer
h245.VideoCapability
h245.transparencyParameters transparencyParameters
No value
h245.TransparencyParameters
h245.transparent transparent
No value
h245.NULL
h245.transport transport
Unsigned 32-bit integer
h245.DataProtocolCapability
h245.transportCapability transportCapability
No value
h245.TransportCapability
h245.transportStream transportStream
Boolean
h245.BOOLEAN
h245.transportWithI_frames transportWithI-frames
Boolean
h245.BOOLEAN
h245.tsapIdentifier tsapIdentifier
Unsigned 32-bit integer
h245.TsapIdentifier
h245.twoChannelDual twoChannelDual
No value
h245.NULL
h245.twoChannelStereo twoChannelStereo
No value
h245.NULL
h245.twoChannels twoChannels
Boolean
h245.BOOLEAN
h245.twoOctetAddressFieldCapability twoOctetAddressFieldCapability
Boolean
h245.BOOLEAN
h245.type type
Unsigned 32-bit integer
h245.Avb_type
h245.typeIArq typeIArq
No value
h245.H223AnnexCArqParameters
h245.typeIIArq typeIIArq
No value
h245.H223AnnexCArqParameters
h245.uIH uIH
Boolean
h245.BOOLEAN
h245.uNERM uNERM
No value
h245.NULL
h245.udp udp
No value
h245.NULL
h245.uihCapability uihCapability
Boolean
h245.BOOLEAN
h245.undefinedReason undefinedReason
No value
h245.NULL
h245.undefinedTableEntryUsed undefinedTableEntryUsed
No value
h245.NULL
h245.unframed unframed
No value
h245.NULL
h245.unicast unicast
No value
h245.NULL
h245.unicastAddress unicastAddress
Unsigned 32-bit integer
h245.UnicastAddress
h245.unknown unknown
No value
h245.NULL
h245.unknownDataType unknownDataType
No value
h245.NULL
h245.unknownFunction unknownFunction
No value
h245.NULL
h245.unlimitedMotionVectors unlimitedMotionVectors
Boolean
h245.BOOLEAN
h245.unrestrictedVector unrestrictedVector
Boolean
h245.BOOLEAN
h245.unsigned32Max unsigned32Max
Unsigned 32-bit integer
h245.INTEGER_0_4294967295
h245.unsigned32Min unsigned32Min
Unsigned 32-bit integer
h245.INTEGER_0_4294967295
h245.unsignedMax unsignedMax
Unsigned 32-bit integer
h245.INTEGER_0_65535
h245.unsignedMin unsignedMin
Unsigned 32-bit integer
h245.T_unsignedMin
h245.unspecified unspecified
No value
h245.NULL
h245.unspecifiedCause unspecifiedCause
No value
h245.NULL
h245.unsuitableReverseParameters unsuitableReverseParameters
No value
h245.NULL
h245.untilClosingFlag untilClosingFlag
No value
h245.T_untilClosingFlag
h245.user user
No value
h245.NULL
h245.userData userData
Unsigned 32-bit integer
h245.DataProtocolCapability
h245.userInput userInput
Unsigned 32-bit integer
h245.UserInputIndication
h245.userInputSupportIndication userInputSupportIndication
Unsigned 32-bit integer
h245.T_userInputSupportIndication
h245.userRejected userRejected
No value
h245.NULL
h245.uuid uuid
Byte array
h245.OCTET_STRING_SIZE_16
h245.v120 v120
No value
h245.NULL
h245.v140 v140
No value
h245.NULL
h245.v14buffered v14buffered
No value
h245.NULL
h245.v34DSVD v34DSVD
No value
h245.NULL
h245.v34DuplexFAX v34DuplexFAX
No value
h245.NULL
h245.v34H324 v34H324
No value
h245.NULL
h245.v42bis v42bis
No value
h245.V42bis
h245.v42lapm v42lapm
No value
h245.NULL
h245.v75Capability v75Capability
No value
h245.V75Capability
h245.v75Parameters v75Parameters
No value
h245.V75Parameters
h245.v76Capability v76Capability
No value
h245.V76Capability
h245.v76LogicalChannelParameters v76LogicalChannelParameters
No value
h245.V76LogicalChannelParameters
h245.v76ModeParameters v76ModeParameters
Unsigned 32-bit integer
h245.V76ModeParameters
h245.v76wCompression v76wCompression
Unsigned 32-bit integer
h245.T_v76wCompression
h245.v8bis v8bis
No value
h245.NULL
h245.value value
Byte array
h245.OCTET_STRING_SIZE_1_65535
h245.variable_delta variable-delta
Boolean
h245.BOOLEAN
h245.vbd vbd
No value
h245.VBDCapability
h245.vbvBufferSize vbvBufferSize
Unsigned 32-bit integer
h245.INTEGER_0_262143
h245.vcCapability vcCapability
Unsigned 32-bit integer
h245.SET_OF_VCCapability
h245.vcCapability_item Item
No value
h245.VCCapability
h245.vendor vendor
Unsigned 32-bit integer
h245.NonStandardIdentifier
h245.vendorIdentification vendorIdentification
No value
h245.VendorIdentification
h245.version version
Unsigned 32-bit integer
h245.INTEGER_0_255
h245.versionNumber versionNumber
String
h245.OCTET_STRING_SIZE_1_256
h245.videoBackChannelSend videoBackChannelSend
Unsigned 32-bit integer
h245.T_videoBackChannelSend
h245.videoBadMBs videoBadMBs
No value
h245.T_videoBadMBs
h245.videoBadMBsCap videoBadMBsCap
Boolean
h245.BOOLEAN
h245.videoBitRate videoBitRate
Unsigned 32-bit integer
h245.INTEGER_0_1073741823
h245.videoCapability videoCapability
Unsigned 32-bit integer
h245.SEQUENCE_OF_VideoCapability
h245.videoCapabilityExtension videoCapabilityExtension
Unsigned 32-bit integer
h245.SEQUENCE_OF_GenericCapability
h245.videoCapabilityExtension_item Item
No value
h245.GenericCapability
h245.videoCapability_item Item
Unsigned 32-bit integer
h245.VideoCapability
h245.videoCommandReject videoCommandReject
No value
h245.NULL
h245.videoData videoData
Unsigned 32-bit integer
h245.VideoCapability
h245.videoFastUpdateGOB videoFastUpdateGOB
No value
h245.T_videoFastUpdateGOB
h245.videoFastUpdateMB videoFastUpdateMB
No value
h245.T_videoFastUpdateMB
h245.videoFastUpdatePicture videoFastUpdatePicture
No value
h245.NULL
h245.videoFreezePicture videoFreezePicture
No value
h245.NULL
h245.videoIndicateCompose videoIndicateCompose
No value
h245.VideoIndicateCompose
h245.videoIndicateMixingCapability videoIndicateMixingCapability
Boolean
h245.BOOLEAN
h245.videoIndicateReadyToActivate videoIndicateReadyToActivate
No value
h245.NULL
h245.videoMode videoMode
Unsigned 32-bit integer
h245.VideoMode
h245.videoMux videoMux
Boolean
h245.BOOLEAN
h245.videoNotDecodedMBs videoNotDecodedMBs
No value
h245.T_videoNotDecodedMBs
h245.videoSegmentTagging videoSegmentTagging
Boolean
h245.BOOLEAN
h245.videoSendSyncEveryGOB videoSendSyncEveryGOB
No value
h245.NULL
h245.videoSendSyncEveryGOBCancel videoSendSyncEveryGOBCancel
No value
h245.NULL
h245.videoTemporalSpatialTradeOff videoTemporalSpatialTradeOff
Unsigned 32-bit integer
h245.INTEGER_0_31
h245.videoWithAL1 videoWithAL1
Boolean
h245.BOOLEAN
h245.videoWithAL1M videoWithAL1M
Boolean
h245.BOOLEAN
h245.videoWithAL2 videoWithAL2
Boolean
h245.BOOLEAN
h245.videoWithAL2M videoWithAL2M
Boolean
h245.BOOLEAN
h245.videoWithAL3 videoWithAL3
Boolean
h245.BOOLEAN
h245.videoWithAL3M videoWithAL3M
Boolean
h245.BOOLEAN
h245.waitForCall waitForCall
No value
h245.NULL
h245.waitForCommunicationMode waitForCommunicationMode
No value
h245.NULL
h245.wholeMultiplex wholeMultiplex
No value
h245.NULL
h245.width width
Unsigned 32-bit integer
h245.INTEGER_1_255
h245.willTransmitLessPreferredMode willTransmitLessPreferredMode
No value
h245.NULL
h245.willTransmitMostPreferredMode willTransmitMostPreferredMode
No value
h245.NULL
h245.windowSize windowSize
Unsigned 32-bit integer
h245.INTEGER_1_127
h245.withdrawChairToken withdrawChairToken
No value
h245.NULL
h245.zeroDelay zeroDelay
No value
h245.NULL
t125.ConnectMCSPDU ConnectMCSPDU
Unsigned 32-bit integer
t125.ConnectMCSPDU
t125.DomainMCSPDU DomainMCSPDU
Unsigned 32-bit integer
t125.DomainMCSPDU
t125.admitted admitted
Unsigned 32-bit integer
t125.SET_OF_UserId
t125.admitted_item Item
Unsigned 32-bit integer
t125.UserId
t125.assigned assigned
No value
t125.T_assigned
t125.attachUserConfirm attachUserConfirm
No value
t125.AttachUserConfirm
t125.attachUserRequest attachUserRequest
No value
t125.AttachUserRequest
t125.begin begin
Boolean
t125.calledConnectId calledConnectId
Unsigned 32-bit integer
t125.INTEGER_0_MAX
t125.calledDomainSelector calledDomainSelector
Byte array
t125.OCTET_STRING
t125.callingDomainSelector callingDomainSelector
Byte array
t125.OCTET_STRING
t125.channelAdmitIndication channelAdmitIndication
No value
t125.ChannelAdmitIndication
t125.channelAdmitRequest channelAdmitRequest
No value
t125.ChannelAdmitRequest
t125.channelConveneConfirm channelConveneConfirm
No value
t125.ChannelConveneConfirm
t125.channelConveneRequest channelConveneRequest
No value
t125.ChannelConveneRequest
t125.channelDisbandIndication channelDisbandIndication
No value
t125.ChannelDisbandIndication
t125.channelDisbandRequest channelDisbandRequest
No value
t125.ChannelDisbandRequest
t125.channelExpelIndication channelExpelIndication
No value
t125.ChannelExpelIndication
t125.channelExpelRequest channelExpelRequest
No value
t125.ChannelExpelRequest
t125.channelId channelId
Unsigned 32-bit integer
t125.StaticChannelId
t125.channelIds channelIds
Unsigned 32-bit integer
t125.SET_OF_ChannelId
t125.channelIds_item Item
Unsigned 32-bit integer
t125.ChannelId
t125.channelJoinConfirm channelJoinConfirm
No value
t125.ChannelJoinConfirm
t125.channelJoinRequest channelJoinRequest
No value
t125.ChannelJoinRequest
t125.channelLeaveRequest channelLeaveRequest
No value
t125.ChannelLeaveRequest
t125.connect_additional connect-additional
No value
t125.Connect_Additional
t125.connect_initial connect-initial
No value
t125.Connect_Initial
t125.connect_response connect-response
No value
t125.Connect_Response
t125.connect_result connect-result
No value
t125.Connect_Result
t125.dataPriority dataPriority
Unsigned 32-bit integer
t125.DataPriority
t125.detachUserIds detachUserIds
Unsigned 32-bit integer
t125.SET_OF_UserId
t125.detachUserIds_item Item
Unsigned 32-bit integer
t125.UserId
t125.detachUserIndication detachUserIndication
No value
t125.DetachUserIndication
t125.detachUserRequest detachUserRequest
No value
t125.DetachUserRequest
t125.diagnostic diagnostic
Unsigned 32-bit integer
t125.Diagnostic
t125.disconnectProviderUltimatum disconnectProviderUltimatum
No value
t125.DisconnectProviderUltimatum
t125.domainParameters domainParameters
No value
t125.DomainParameters
t125.end end
Boolean
t125.erectDomainRequest erectDomainRequest
No value
t125.ErectDomainRequest
t125.given given
No value
t125.T_given
t125.giving giving
No value
t125.T_giving
t125.grabbed grabbed
No value
t125.T_grabbed
t125.grabber grabber
Unsigned 32-bit integer
t125.UserId
t125.heightLimit heightLimit
Unsigned 32-bit integer
t125.INTEGER_0_MAX
t125.inhibited inhibited
No value
t125.T_inhibited
t125.inhibitors inhibitors
Unsigned 32-bit integer
t125.SET_OF_UserId
t125.inhibitors_item Item
Unsigned 32-bit integer
t125.UserId
t125.initialOctets initialOctets
Byte array
t125.OCTET_STRING
t125.initiator initiator
Unsigned 32-bit integer
t125.UserId
t125.joined joined
Boolean
t125.BOOLEAN
t125.manager manager
Unsigned 32-bit integer
t125.UserId
t125.maxChannelIds maxChannelIds
Unsigned 32-bit integer
t125.INTEGER_0_MAX
t125.maxHeight maxHeight
Unsigned 32-bit integer
t125.INTEGER_0_MAX
t125.maxMCSPDUsize maxMCSPDUsize
Unsigned 32-bit integer
t125.INTEGER_0_MAX
t125.maxTokenIds maxTokenIds
Unsigned 32-bit integer
t125.INTEGER_0_MAX
t125.maxUserIds maxUserIds
Unsigned 32-bit integer
t125.INTEGER_0_MAX
t125.maximumParameters maximumParameters
No value
t125.DomainParameters
t125.mergeChannels mergeChannels
Unsigned 32-bit integer
t125.SET_OF_ChannelAttributes
t125.mergeChannelsConfirm mergeChannelsConfirm
No value
t125.MergeChannelsConfirm
t125.mergeChannelsRequest mergeChannelsRequest
No value
t125.MergeChannelsRequest
t125.mergeChannels_item Item
Unsigned 32-bit integer
t125.ChannelAttributes
t125.mergeTokens mergeTokens
Unsigned 32-bit integer
t125.SET_OF_TokenAttributes
t125.mergeTokensConfirm mergeTokensConfirm
No value
t125.MergeTokensConfirm
t125.mergeTokensRequest mergeTokensRequest
No value
t125.MergeTokensRequest
t125.mergeTokens_item Item
Unsigned 32-bit integer
t125.TokenAttributes
t125.minThroughput minThroughput
Unsigned 32-bit integer
t125.INTEGER_0_MAX
t125.minimumParameters minimumParameters
No value
t125.DomainParameters
t125.numPriorities numPriorities
Unsigned 32-bit integer
t125.INTEGER_0_MAX
t125.plumbDomainIndication plumbDomainIndication
No value
t125.PlumbDomainIndication
t125.private private
No value
t125.T_private
t125.protocolVersion protocolVersion
Unsigned 32-bit integer
t125.INTEGER_0_MAX
t125.purgeChannelIds purgeChannelIds
Unsigned 32-bit integer
t125.SET_OF_ChannelId
t125.purgeChannelIds_item Item
Unsigned 32-bit integer
t125.ChannelId
t125.purgeChannelsIndication purgeChannelsIndication
No value
t125.PurgeChannelsIndication
t125.purgeTokenIds purgeTokenIds
Unsigned 32-bit integer
t125.SET_OF_TokenId
t125.purgeTokenIds_item Item
Unsigned 32-bit integer
t125.TokenId
t125.purgeTokensIndication purgeTokensIndication
No value
t125.PurgeTokensIndication
t125.reason reason
Unsigned 32-bit integer
t125.Reason
t125.recipient recipient
Unsigned 32-bit integer
t125.UserId
t125.rejectMCSPDUUltimatum rejectMCSPDUUltimatum
No value
t125.RejectMCSPDUUltimatum
t125.requested requested
Unsigned 32-bit integer
t125.ChannelId
t125.result result
Unsigned 32-bit integer
t125.Result
t125.segmentation segmentation
Byte array
t125.Segmentation
t125.sendDataIndication sendDataIndication
No value
t125.SendDataIndication
t125.sendDataRequest sendDataRequest
No value
t125.SendDataRequest
t125.static static
No value
t125.T_static
t125.subHeight subHeight
Unsigned 32-bit integer
t125.INTEGER_0_MAX
t125.subInterval subInterval
Unsigned 32-bit integer
t125.INTEGER_0_MAX
t125.targetParameters targetParameters
No value
t125.DomainParameters
t125.tokenGiveConfirm tokenGiveConfirm
No value
t125.TokenGiveConfirm
t125.tokenGiveIndication tokenGiveIndication
No value
t125.TokenGiveIndication
t125.tokenGiveRequest tokenGiveRequest
No value
t125.TokenGiveRequest
t125.tokenGiveResponse tokenGiveResponse
No value
t125.TokenGiveResponse
t125.tokenGrabConfirm tokenGrabConfirm
No value
t125.TokenGrabConfirm
t125.tokenGrabRequest tokenGrabRequest
No value
t125.TokenGrabRequest
t125.tokenId tokenId
Unsigned 32-bit integer
t125.TokenId
t125.tokenInhibitConfirm tokenInhibitConfirm
No value
t125.TokenInhibitConfirm
t125.tokenInhibitRequest tokenInhibitRequest
No value
t125.TokenInhibitRequest
t125.tokenPleaseIndication tokenPleaseIndication
No value
t125.TokenPleaseIndication
t125.tokenPleaseRequest tokenPleaseRequest
No value
t125.TokenPleaseRequest
t125.tokenReleaseConfirm tokenReleaseConfirm
No value
t125.TokenReleaseConfirm
t125.tokenReleaseRequest tokenReleaseRequest
No value
t125.TokenReleaseRequest
t125.tokenStatus tokenStatus
Unsigned 32-bit integer
t125.TokenStatus
t125.tokenTestConfirm tokenTestConfirm
No value
t125.TokenTestConfirm
t125.tokenTestRequest tokenTestRequest
No value
t125.TokenTestRequest
t125.ungivable ungivable
No value
t125.T_ungivable
t125.uniformSendDataIndication uniformSendDataIndication
No value
t125.UniformSendDataIndication
t125.uniformSendDataRequest uniformSendDataRequest
No value
t125.UniformSendDataRequest
t125.upwardFlag upwardFlag
Boolean
t125.BOOLEAN
t125.userData userData
Byte array
t125.OCTET_STRING
t125.userId userId
No value
t125.T_userId
t125.userIds userIds
Unsigned 32-bit integer
t125.SET_OF_UserId
t125.userIds_item Item
Unsigned 32-bit integer
t125.UserId
mgcp.dup Duplicate Message
Unsigned 32-bit integer
Duplicate Message
mgcp.messagecount MGCP Message Count
Unsigned 32-bit integer
Number of MGCP message in a packet
mgcp.param.bearerinfo BearerInformation (B)
String
Bearer Information
mgcp.param.callid CallId (C)
String
Call Id
mgcp.param.capabilities Capabilities (A)
String
Capabilities
mgcp.param.connectionid ConnectionIdentifier (I)
String
Connection Identifier
mgcp.param.connectionmode ConnectionMode (M)
String
Connection Mode
mgcp.param.connectionparam ConnectionParameters (P)
String
Connection Parameters
mgcp.param.connectionparam.ji Jitter (JI)
Unsigned 32-bit integer
Average inter-packet arrival jitter in milliseconds (P:JI)
mgcp.param.connectionparam.la Latency (LA)
Unsigned 32-bit integer
Average latency in milliseconds (P:LA)
mgcp.param.connectionparam.or Octets received (OR)
Unsigned 32-bit integer
Octets received (P:OR)
mgcp.param.connectionparam.os Octets sent (OS)
Unsigned 32-bit integer
Octets sent (P:OS)
mgcp.param.connectionparam.pcrji Remote Jitter (PC/RJI)
Unsigned 32-bit integer
Remote Jitter (P:PC/RJI)
mgcp.param.connectionparam.pcros Remote Octets sent (PC/ROS)
Unsigned 32-bit integer
Remote Octets sent (P:PC/ROS)
mgcp.param.connectionparam.pcrpl Remote Packets lost (PC/RPL)
Unsigned 32-bit integer
Remote Packets lost (P:PC/RPL)
mgcp.param.connectionparam.pcrps Remote Packets sent (PC/RPS)
Unsigned 32-bit integer
Remote Packets sent (P:PC/RPS)
mgcp.param.connectionparam.pl Packets lost (PL)
Unsigned 32-bit integer
Packets lost (P:PL)
mgcp.param.connectionparam.pr Packets received (PR)
Unsigned 32-bit integer
Packets received (P:PR)
mgcp.param.connectionparam.ps Packets sent (PS)
Unsigned 32-bit integer
Packets sent (P:PS)
mgcp.param.connectionparam.x Vendor Extension
String
Vendor Extension (P:X-*)
mgcp.param.detectedevents DetectedEvents (T)
String
Detected Events
mgcp.param.digitmap DigitMap (D)
String
Digit Map
mgcp.param.eventstates EventStates (ES)
String
Event States
mgcp.param.extension Extension Parameter (non-critical)
String
Extension Parameter
mgcp.param.extensioncritical Extension Parameter (critical)
String
Critical Extension Parameter
mgcp.param.invalid Invalid Parameter
String
Invalid Parameter
mgcp.param.localconnectionoptions LocalConnectionOptions (L)
String
Local Connection Options
mgcp.param.localconnectionoptions.a Codecs (a)
String
Codecs
mgcp.param.localconnectionoptions.b Bandwidth (b)
String
Bandwidth
mgcp.param.localconnectionoptions.dqgi D-QoS GateID (dq-gi)
String
D-QoS GateID
mgcp.param.localconnectionoptions.dqrd D-QoS Reserve Destination (dq-rd)
String
D-QoS Reserve Destination
mgcp.param.localconnectionoptions.dqri D-QoS Resource ID (dq-ri)
String
D-QoS Resource ID
mgcp.param.localconnectionoptions.dqrr D-QoS Resource Reservation (dq-rr)
String
D-QoS Resource Reservation
mgcp.param.localconnectionoptions.e Echo Cancellation (e)
String
Echo Cancellation
mgcp.param.localconnectionoptions.esccd Content Destination (es-ccd)
String
Content Destination
mgcp.param.localconnectionoptions.escci Content Identifier (es-cci)
String
Content Identifier
mgcp.param.localconnectionoptions.fmtp Media Format (fmtp)
String
Media Format
mgcp.param.localconnectionoptions.gc Gain Control (gc)
Unsigned 32-bit integer
Gain Control
mgcp.param.localconnectionoptions.k Encryption Key (k)
String
Encryption Key
mgcp.param.localconnectionoptions.nt Network Type (nt)
String
Network Type
mgcp.param.localconnectionoptions.ofmtp Optional Media Format (o-fmtp)
String
Optional Media Format
mgcp.param.localconnectionoptions.p Packetization period (p)
Unsigned 32-bit integer
Packetization period
mgcp.param.localconnectionoptions.r Resource Reservation (r)
String
Resource Reservation
mgcp.param.localconnectionoptions.rcnf Reservation Confirmation (r-cnf)
String
Reservation Confirmation
mgcp.param.localconnectionoptions.rdir Reservation Direction (r-dir)
String
Reservation Direction
mgcp.param.localconnectionoptions.rsh Resource Sharing (r-sh)
String
Resource Sharing
mgcp.param.localconnectionoptions.s Silence Suppression (s)
String
Silence Suppression
mgcp.param.localconnectionoptions.scrtcp RTCP ciphersuite (sc-rtcp)
String
RTCP ciphersuite
mgcp.param.localconnectionoptions.scrtp RTP ciphersuite (sc-rtp)
String
RTP ciphersuite
mgcp.param.localconnectionoptions.t Type of Service (r)
String
Type of Service
mgcp.param.maxmgcpdatagram MaxMGCPDatagram (MD)
String
Maximum MGCP Datagram size
mgcp.param.notifiedentity NotifiedEntity (N)
String
Notified Entity
mgcp.param.observedevents ObservedEvents (O)
String
Observed Events
mgcp.param.packagelist PackageList (PL)
String
Package List
mgcp.param.quarantinehandling QuarantineHandling (Q)
String
Quarantine Handling
mgcp.param.reasoncode ReasonCode (E)
String
Reason Code
mgcp.param.reqevents RequestedEvents (R)
String
Requested Events
mgcp.param.reqinfo RequestedInfo (F)
String
Requested Info
mgcp.param.requestid RequestIdentifier (X)
String
Request Identifier
mgcp.param.restartdelay RestartDelay (RD)
String
Restart Delay
mgcp.param.restartmethod RestartMethod (RM)
String
Restart Method
mgcp.param.rspack ResponseAck (K)
String
Response Ack
mgcp.param.secondconnectionid SecondConnectionID (I2)
String
Second Connection Identifier
mgcp.param.secondendpointid SecondEndpointID (Z2)
String
Second Endpoing ID
mgcp.param.signalreq SignalRequests (S)
String
Signal Request
mgcp.param.specificendpointid SpecificEndpointID (Z)
String
Specific Endpoint ID
mgcp.params Parameters
No value
MGCP parameters
mgcp.req Request
Boolean
True if MGCP request
mgcp.req.dup Duplicate Request
Unsigned 32-bit integer
Duplicate Request
mgcp.req.dup.frame Original Request Frame
Frame number
Frame containing original request
mgcp.req.endpoint Endpoint
String
Endpoint referenced by the message
mgcp.req.verb Verb
String
Name of the verb
mgcp.reqframe Request Frame
Frame number
Request Frame
mgcp.rsp Response
Boolean
TRUE if MGCP response
mgcp.rsp.dup Duplicate Response
Unsigned 32-bit integer
Duplicate Response
mgcp.rsp.dup.frame Original Response Frame
Frame number
Frame containing original response
mgcp.rsp.rspcode Response Code
Unsigned 32-bit integer
Response Code
mgcp.rsp.rspstring Response String
String
Response String
mgcp.rspframe Response Frame
Frame number
Response Frame
mgcp.time Time from request
Time duration
Timedelta between Request and Response
mgcp.transid Transaction ID
String
Transaction ID of this message
mgcp.version Version
String
MGCP Version
mscml.activetalkers activetalkers
String
mscml.activetalkers.interval interval
String
mscml.activetalkers.report report
String
mscml.activetalkers.talker talker
String
mscml.activetalkers.talker.callid callid
String
mscml.audio audio
String
mscml.audio.encoding encoding
String
mscml.audio.gain gain
String
mscml.audio.gaindelta gaindelta
String
mscml.audio.rate rate
String
mscml.audio.ratedelta ratedelta
String
mscml.audio.url url
String
mscml.auto auto
String
mscml.auto.silencethreshold silencethreshold
String
mscml.auto.startlevel startlevel
String
mscml.auto.targetlevel targetlevel
String
mscml.conference conference
String
mscml.conference.activetalkers activetalkers
String
mscml.conference.activetalkers.interval interval
String
mscml.conference.activetalkers.report report
String
mscml.conference.activetalkers.talker talker
String
mscml.conference.activetalkers.talker.callid callid
String
mscml.conference.numtalkers numtalkers
String
mscml.conference.uniqueid uniqueid
String
mscml.configure_conference configure_conference
String
mscml.configure_conference.id id
String
mscml.configure_conference.reserveconfmedia reserveconfmedia
String
mscml.configure_conference.reservedtalkers reservedtalkers
String
mscml.configure_conference.subscribe subscribe
String
mscml.configure_conference.subscribe.events events
String
mscml.configure_conference.subscribe.events.activetalkers activetalkers
String
mscml.configure_conference.subscribe.events.activetalkers.interval interval
String
mscml.configure_conference.subscribe.events.activetalkers.report report
String
mscml.configure_conference.subscribe.events.activetalkers.talker talker
String
mscml.configure_conference.subscribe.events.activetalkers.talker.callid callid
String
mscml.configure_conference.subscribe.events.keypress keypress
String
mscml.configure_conference.subscribe.events.keypress.digit digit
String
mscml.configure_conference.subscribe.events.keypress.interdigittime interdigittime
String
mscml.configure_conference.subscribe.events.keypress.length length
String
mscml.configure_conference.subscribe.events.keypress.maskdigits maskdigits
String
mscml.configure_conference.subscribe.events.keypress.method method
String
mscml.configure_conference.subscribe.events.keypress.report report
String
mscml.configure_conference.subscribe.events.keypress.status status
String
mscml.configure_conference.subscribe.events.keypress.status.command command
String
mscml.configure_conference.subscribe.events.keypress.status.duration duration
String
mscml.configure_conference.subscribe.events.signal signal
String
mscml.configure_conference.subscribe.events.signal.report report
String
mscml.configure_conference.subscribe.events.signal.type type
String
mscml.configure_leg configure_leg
String
mscml.configure_leg.configure_team configure_team
String
mscml.configure_leg.configure_team.action action
String
mscml.configure_leg.configure_team.id id
String
mscml.configure_leg.configure_team.teammate teammate
String
mscml.configure_leg.configure_team.teammate.id id
String
mscml.configure_leg.dtmfclamp dtmfclamp
String
mscml.configure_leg.id id
String
mscml.configure_leg.inputgain inputgain
String
mscml.configure_leg.inputgain.auto auto
String
mscml.configure_leg.inputgain.auto.silencethreshold silencethreshold
String
mscml.configure_leg.inputgain.auto.startlevel startlevel
String
mscml.configure_leg.inputgain.auto.targetlevel targetlevel
String
mscml.configure_leg.inputgain.fixed fixed
String
mscml.configure_leg.inputgain.fixed.level level
String
mscml.configure_leg.mixmode mixmode
String
mscml.configure_leg.outputgain outputgain
String
mscml.configure_leg.outputgain.auto auto
String
mscml.configure_leg.outputgain.auto.silencethreshold silencethreshold
String
mscml.configure_leg.outputgain.auto.startlevel startlevel
String
mscml.configure_leg.outputgain.auto.targetlevel targetlevel
String
mscml.configure_leg.outputgain.fixed fixed
String
mscml.configure_leg.outputgain.fixed.level level
String
mscml.configure_leg.subscribe subscribe
String
mscml.configure_leg.subscribe.events events
String
mscml.configure_leg.subscribe.events.activetalkers activetalkers
String
mscml.configure_leg.subscribe.events.activetalkers.interval interval
String
mscml.configure_leg.subscribe.events.activetalkers.report report
String
mscml.configure_leg.subscribe.events.activetalkers.talker talker
String
mscml.configure_leg.subscribe.events.activetalkers.talker.callid callid
String
mscml.configure_leg.subscribe.events.keypress keypress
String
mscml.configure_leg.subscribe.events.keypress.digit digit
String
mscml.configure_leg.subscribe.events.keypress.interdigittime interdigittime
String
mscml.configure_leg.subscribe.events.keypress.length length
String
mscml.configure_leg.subscribe.events.keypress.maskdigits maskdigits
String
mscml.configure_leg.subscribe.events.keypress.method method
String
mscml.configure_leg.subscribe.events.keypress.report report
String
mscml.configure_leg.subscribe.events.keypress.status status
String
mscml.configure_leg.subscribe.events.keypress.status.command command
String
mscml.configure_leg.subscribe.events.keypress.status.duration duration
String
mscml.configure_leg.subscribe.events.signal signal
String
mscml.configure_leg.subscribe.events.signal.report report
String
mscml.configure_leg.subscribe.events.signal.type type
String
mscml.configure_leg.toneclamp toneclamp
String
mscml.configure_leg.type type
String
mscml.configure_team configure_team
String
mscml.configure_team.action action
String
mscml.configure_team.id id
String
mscml.configure_team.teammate teammate
String
mscml.configure_team.teammate.id id
String
mscml.error_info error_info
String
mscml.error_info.code code
String
mscml.error_info.context context
String
mscml.error_info.text text
String
mscml.events events
String
mscml.events.activetalkers activetalkers
String
mscml.events.activetalkers.interval interval
String
mscml.events.activetalkers.report report
String
mscml.events.activetalkers.talker talker
String
mscml.events.activetalkers.talker.callid callid
String
mscml.events.keypress keypress
String
mscml.events.keypress.digit digit
String
mscml.events.keypress.interdigittime interdigittime
String
mscml.events.keypress.length length
String
mscml.events.keypress.maskdigits maskdigits
String
mscml.events.keypress.method method
String
mscml.events.keypress.report report
String
mscml.events.keypress.status status
String
mscml.events.keypress.status.command command
String
mscml.events.keypress.status.duration duration
String
mscml.events.signal signal
String
mscml.events.signal.report report
String
mscml.events.signal.type type
String
mscml.faxplay faxplay
String
mscml.faxplay.id id
String
mscml.faxplay.lclid lclid
String
mscml.faxplay.prompt prompt
String
mscml.faxplay.prompt.audio audio
String
mscml.faxplay.prompt.audio.encoding encoding
String
mscml.faxplay.prompt.audio.gain gain
String
mscml.faxplay.prompt.audio.gaindelta gaindelta
String
mscml.faxplay.prompt.audio.rate rate
String
mscml.faxplay.prompt.audio.ratedelta ratedelta
String
mscml.faxplay.prompt.audio.url url
String
mscml.faxplay.prompt.baseurl baseurl
String
mscml.faxplay.prompt.delay delay
String
mscml.faxplay.prompt.duration duration
String
mscml.faxplay.prompt.gain gain
String
mscml.faxplay.prompt.gaindelta gaindelta
String
mscml.faxplay.prompt.locale locale
String
mscml.faxplay.prompt.offset offset
String
mscml.faxplay.prompt.rate rate
String
mscml.faxplay.prompt.ratedelta ratedelta
String
mscml.faxplay.prompt.repeat repeat
String
mscml.faxplay.prompt.stoponerror stoponerror
String
mscml.faxplay.prompt.variable variable
String
mscml.faxplay.prompt.variable.subtype subtype
String
mscml.faxplay.prompt.variable.type type
String
mscml.faxplay.prompt.variable.value value
String
mscml.faxplay.prompturl prompturl
String
mscml.faxplay.recurl recurl
String
mscml.faxplay.rmtid rmtid
String
mscml.faxrecord faxrecord
String
mscml.faxrecord.id id
String
mscml.faxrecord.lclid lclid
String
mscml.faxrecord.prompt prompt
String
mscml.faxrecord.prompt.audio audio
String
mscml.faxrecord.prompt.audio.encoding encoding
String
mscml.faxrecord.prompt.audio.gain gain
String
mscml.faxrecord.prompt.audio.gaindelta gaindelta
String
mscml.faxrecord.prompt.audio.rate rate
String
mscml.faxrecord.prompt.audio.ratedelta ratedelta
String
mscml.faxrecord.prompt.audio.url url
String
mscml.faxrecord.prompt.baseurl baseurl
String
mscml.faxrecord.prompt.delay delay
String
mscml.faxrecord.prompt.duration duration
String
mscml.faxrecord.prompt.gain gain
String
mscml.faxrecord.prompt.gaindelta gaindelta
String
mscml.faxrecord.prompt.locale locale
String
mscml.faxrecord.prompt.offset offset
String
mscml.faxrecord.prompt.rate rate
String
mscml.faxrecord.prompt.ratedelta ratedelta
String
mscml.faxrecord.prompt.repeat repeat
String
mscml.faxrecord.prompt.stoponerror stoponerror
String
mscml.faxrecord.prompt.variable variable
String
mscml.faxrecord.prompt.variable.subtype subtype
String
mscml.faxrecord.prompt.variable.type type
String
mscml.faxrecord.prompt.variable.value value
String
mscml.faxrecord.prompturl prompturl
String
mscml.faxrecord.recurl recurl
String
mscml.faxrecord.rmtid rmtid
String
mscml.fixed fixed
String
mscml.fixed.level level
String
mscml.inputgain inputgain
String
mscml.inputgain.auto auto
String
mscml.inputgain.auto.silencethreshold silencethreshold
String
mscml.inputgain.auto.startlevel startlevel
String
mscml.inputgain.auto.targetlevel targetlevel
String
mscml.inputgain.fixed fixed
String
mscml.inputgain.fixed.level level
String
mscml.keypress keypress
String
mscml.keypress.digit digit
String
mscml.keypress.interdigittime interdigittime
String
mscml.keypress.length length
String
mscml.keypress.maskdigits maskdigits
String
mscml.keypress.method method
String
mscml.keypress.report report
String
mscml.keypress.status status
String
mscml.keypress.status.command command
String
mscml.keypress.status.duration duration
String
mscml.managecontent managecontent
String
mscml.managecontent.action action
String
mscml.managecontent.dest dest
String
mscml.managecontent.fetchtimeout fetchtimeout
String
mscml.managecontent.httpmethod httpmethod
String
mscml.managecontent.id id
String
mscml.managecontent.mimetype mimetype
String
mscml.managecontent.name name
String
mscml.managecontent.src src
String
mscml.megacodigitmap megacodigitmap
String
mscml.megacodigitmap.name name
String
mscml.megacodigitmap.value value
String
mscml.mgcpdigitmap mgcpdigitmap
String
mscml.mgcpdigitmap.name name
String
mscml.mgcpdigitmap.value value
String
mscml.notification notification
String
mscml.notification.conference conference
String
mscml.notification.conference.activetalkers activetalkers
String
mscml.notification.conference.activetalkers.interval interval
String
mscml.notification.conference.activetalkers.report report
String
mscml.notification.conference.activetalkers.talker talker
String
mscml.notification.conference.activetalkers.talker.callid callid
String
mscml.notification.conference.numtalkers numtalkers
String
mscml.notification.conference.uniqueid uniqueid
String
mscml.notification.keypress keypress
String
mscml.notification.keypress.digit digit
String
mscml.notification.keypress.interdigittime interdigittime
String
mscml.notification.keypress.length length
String
mscml.notification.keypress.maskdigits maskdigits
String
mscml.notification.keypress.method method
String
mscml.notification.keypress.report report
String
mscml.notification.keypress.status status
String
mscml.notification.keypress.status.command command
String
mscml.notification.keypress.status.duration duration
String
mscml.notification.signal signal
String
mscml.notification.signal.report report
String
mscml.notification.signal.type type
String
mscml.outputgain outputgain
String
mscml.outputgain.auto auto
String
mscml.outputgain.auto.silencethreshold silencethreshold
String
mscml.outputgain.auto.startlevel startlevel
String
mscml.outputgain.auto.targetlevel targetlevel
String
mscml.outputgain.fixed fixed
String
mscml.outputgain.fixed.level level
String
mscml.pattern pattern
String
mscml.pattern.megacodigitmap megacodigitmap
String
mscml.pattern.megacodigitmap.name name
String
mscml.pattern.megacodigitmap.value value
String
mscml.pattern.mgcpdigitmap mgcpdigitmap
String
mscml.pattern.mgcpdigitmap.name name
String
mscml.pattern.mgcpdigitmap.value value
String
mscml.pattern.regex regex
String
mscml.pattern.regex.name name
String
mscml.pattern.regex.value value
String
mscml.play play
String
mscml.play.id id
String
mscml.play.offset offset
String
mscml.play.prompt prompt
String
mscml.play.prompt.audio audio
String
mscml.play.prompt.audio.encoding encoding
String
mscml.play.prompt.audio.gain gain
String
mscml.play.prompt.audio.gaindelta gaindelta
String
mscml.play.prompt.audio.rate rate
String
mscml.play.prompt.audio.ratedelta ratedelta
String
mscml.play.prompt.audio.url url
String
mscml.play.prompt.baseurl baseurl
String
mscml.play.prompt.delay delay
String
mscml.play.prompt.duration duration
String
mscml.play.prompt.gain gain
String
mscml.play.prompt.gaindelta gaindelta
String
mscml.play.prompt.locale locale
String
mscml.play.prompt.offset offset
String
mscml.play.prompt.rate rate
String
mscml.play.prompt.ratedelta ratedelta
String
mscml.play.prompt.repeat repeat
String
mscml.play.prompt.stoponerror stoponerror
String
mscml.play.prompt.variable variable
String
mscml.play.prompt.variable.subtype subtype
String
mscml.play.prompt.variable.type type
String
mscml.play.prompt.variable.value value
String
mscml.play.promptencoding promptencoding
String
mscml.play.prompturl prompturl
String
mscml.playcollect playcollect
String
mscml.playcollect.barge barge
String
mscml.playcollect.cleardigits cleardigits
String
mscml.playcollect.escapekey escapekey
String
mscml.playcollect.extradigittimer extradigittimer
String
mscml.playcollect.ffkey ffkey
String
mscml.playcollect.firstdigittimer firstdigittimer
String
mscml.playcollect.id id
String
mscml.playcollect.interdigitcriticaltimer interdigitcriticaltimer
String
mscml.playcollect.interdigittimer interdigittimer
String
mscml.playcollect.maskdigits maskdigits
String
mscml.playcollect.maxdigits maxdigits
String
mscml.playcollect.offset offset
String
mscml.playcollect.pattern pattern
String
mscml.playcollect.pattern.megacodigitmap megacodigitmap
String
mscml.playcollect.pattern.megacodigitmap.name name
String
mscml.playcollect.pattern.megacodigitmap.value value
String
mscml.playcollect.pattern.mgcpdigitmap mgcpdigitmap
String
mscml.playcollect.pattern.mgcpdigitmap.name name
String
mscml.playcollect.pattern.mgcpdigitmap.value value
String
mscml.playcollect.pattern.regex regex
String
mscml.playcollect.pattern.regex.name name
String
mscml.playcollect.pattern.regex.value value
String
mscml.playcollect.prompt prompt
String
mscml.playcollect.prompt.audio audio
String
mscml.playcollect.prompt.audio.encoding encoding
String
mscml.playcollect.prompt.audio.gain gain
String
mscml.playcollect.prompt.audio.gaindelta gaindelta
String
mscml.playcollect.prompt.audio.rate rate
String
mscml.playcollect.prompt.audio.ratedelta ratedelta
String
mscml.playcollect.prompt.audio.url url
String
mscml.playcollect.prompt.baseurl baseurl
String
mscml.playcollect.prompt.delay delay
String
mscml.playcollect.prompt.duration duration
String
mscml.playcollect.prompt.gain gain
String
mscml.playcollect.prompt.gaindelta gaindelta
String
mscml.playcollect.prompt.locale locale
String
mscml.playcollect.prompt.offset offset
String
mscml.playcollect.prompt.rate rate
String
mscml.playcollect.prompt.ratedelta ratedelta
String
mscml.playcollect.prompt.repeat repeat
String
mscml.playcollect.prompt.stoponerror stoponerror
String
mscml.playcollect.prompt.variable variable
String
mscml.playcollect.prompt.variable.subtype subtype
String
mscml.playcollect.prompt.variable.type type
String
mscml.playcollect.prompt.variable.value value
String
mscml.playcollect.promptencoding promptencoding
String
mscml.playcollect.prompturl prompturl
String
mscml.playcollect.returnkey returnkey
String
mscml.playcollect.rwkey rwkey
String
mscml.playcollect.skipinterval skipinterval
String
mscml.playrecord playrecord
String
mscml.playrecord.barge barge
String
mscml.playrecord.beep beep
String
mscml.playrecord.cleardigits cleardigits
String
mscml.playrecord.duration duration
String
mscml.playrecord.endsilence endsilence
String
mscml.playrecord.escapekey escapekey
String
mscml.playrecord.id id
String
mscml.playrecord.initsilence initsilence
String
mscml.playrecord.mode mode
String
mscml.playrecord.offset offset
String
mscml.playrecord.prompt prompt
String
mscml.playrecord.prompt.audio audio
String
mscml.playrecord.prompt.audio.encoding encoding
String
mscml.playrecord.prompt.audio.gain gain
String
mscml.playrecord.prompt.audio.gaindelta gaindelta
String
mscml.playrecord.prompt.audio.rate rate
String
mscml.playrecord.prompt.audio.ratedelta ratedelta
String
mscml.playrecord.prompt.audio.url url
String
mscml.playrecord.prompt.baseurl baseurl
String
mscml.playrecord.prompt.delay delay
String
mscml.playrecord.prompt.duration duration
String
mscml.playrecord.prompt.gain gain
String
mscml.playrecord.prompt.gaindelta gaindelta
String
mscml.playrecord.prompt.locale locale
String
mscml.playrecord.prompt.offset offset
String
mscml.playrecord.prompt.rate rate
String
mscml.playrecord.prompt.ratedelta ratedelta
String
mscml.playrecord.prompt.repeat repeat
String
mscml.playrecord.prompt.stoponerror stoponerror
String
mscml.playrecord.prompt.variable variable
String
mscml.playrecord.prompt.variable.subtype subtype
String
mscml.playrecord.prompt.variable.type type
String
mscml.playrecord.prompt.variable.value value
String
mscml.playrecord.promptencoding promptencoding
String
mscml.playrecord.prompturl prompturl
String
mscml.playrecord.recencoding recencoding
String
mscml.playrecord.recstopmask recstopmask
String
mscml.playrecord.recurl recurl
String
mscml.prompt prompt
String
mscml.prompt.audio audio
String
mscml.prompt.audio.encoding encoding
String
mscml.prompt.audio.gain gain
String
mscml.prompt.audio.gaindelta gaindelta
String
mscml.prompt.audio.rate rate
String
mscml.prompt.audio.ratedelta ratedelta
String
mscml.prompt.audio.url url
String
mscml.prompt.baseurl baseurl
String
mscml.prompt.delay delay
String
mscml.prompt.duration duration
String
mscml.prompt.gain gain
String
mscml.prompt.gaindelta gaindelta
String
mscml.prompt.locale locale
String
mscml.prompt.offset offset
String
mscml.prompt.rate rate
String
mscml.prompt.ratedelta ratedelta
String
mscml.prompt.repeat repeat
String
mscml.prompt.stoponerror stoponerror
String
mscml.prompt.variable variable
String
mscml.prompt.variable.subtype subtype
String
mscml.prompt.variable.type type
String
mscml.prompt.variable.value value
String
mscml.regex regex
String
mscml.regex.name name
String
mscml.regex.value value
String
mscml.request request
String
mscml.request.configure_conference configure_conference
String
mscml.request.configure_conference.id id
String
mscml.request.configure_conference.reserveconfmedia reserveconfmedia
String
mscml.request.configure_conference.reservedtalkers reservedtalkers
String
mscml.request.configure_conference.subscribe subscribe
String
mscml.request.configure_conference.subscribe.events events
String
mscml.request.configure_conference.subscribe.events.activetalkers activetalkers
String
mscml.request.configure_conference.subscribe.events.activetalkers.interval interval
String
mscml.request.configure_conference.subscribe.events.activetalkers.report report
String
mscml.request.configure_conference.subscribe.events.activetalkers.talker talker
String
mscml.request.configure_conference.subscribe.events.activetalkers.talker.callid callid
String
mscml.request.configure_conference.subscribe.events.keypress keypress
String
mscml.request.configure_conference.subscribe.events.keypress.digit digit
String
mscml.request.configure_conference.subscribe.events.keypress.interdigittime interdigittime
String
mscml.request.configure_conference.subscribe.events.keypress.length length
String
mscml.request.configure_conference.subscribe.events.keypress.maskdigits maskdigits
String
mscml.request.configure_conference.subscribe.events.keypress.method method
String
mscml.request.configure_conference.subscribe.events.keypress.report report
String
mscml.request.configure_conference.subscribe.events.keypress.status status
String
mscml.request.configure_conference.subscribe.events.keypress.status.command command
String
mscml.request.configure_conference.subscribe.events.keypress.status.duration duration
String
mscml.request.configure_conference.subscribe.events.signal signal
String
mscml.request.configure_conference.subscribe.events.signal.report report
String
mscml.request.configure_conference.subscribe.events.signal.type type
String
mscml.request.configure_leg configure_leg
String
mscml.request.configure_leg.configure_team configure_team
String
mscml.request.configure_leg.configure_team.action action
String
mscml.request.configure_leg.configure_team.id id
String
mscml.request.configure_leg.configure_team.teammate teammate
String
mscml.request.configure_leg.configure_team.teammate.id id
String
mscml.request.configure_leg.dtmfclamp dtmfclamp
String
mscml.request.configure_leg.id id
String
mscml.request.configure_leg.inputgain inputgain
String
mscml.request.configure_leg.inputgain.auto auto
String
mscml.request.configure_leg.inputgain.auto.silencethreshold silencethreshold
String
mscml.request.configure_leg.inputgain.auto.startlevel startlevel
String
mscml.request.configure_leg.inputgain.auto.targetlevel targetlevel
String
mscml.request.configure_leg.inputgain.fixed fixed
String
mscml.request.configure_leg.inputgain.fixed.level level
String
mscml.request.configure_leg.mixmode mixmode
String
mscml.request.configure_leg.outputgain outputgain
String
mscml.request.configure_leg.outputgain.auto auto
String
mscml.request.configure_leg.outputgain.auto.silencethreshold silencethreshold
String
mscml.request.configure_leg.outputgain.auto.startlevel startlevel
String
mscml.request.configure_leg.outputgain.auto.targetlevel targetlevel
String
mscml.request.configure_leg.outputgain.fixed fixed
String
mscml.request.configure_leg.outputgain.fixed.level level
String
mscml.request.configure_leg.subscribe subscribe
String
mscml.request.configure_leg.subscribe.events events
String
mscml.request.configure_leg.subscribe.events.activetalkers activetalkers
String
mscml.request.configure_leg.subscribe.events.activetalkers.interval interval
String
mscml.request.configure_leg.subscribe.events.activetalkers.report report
String
mscml.request.configure_leg.subscribe.events.activetalkers.talker talker
String
mscml.request.configure_leg.subscribe.events.activetalkers.talker.callid callid
String
mscml.request.configure_leg.subscribe.events.keypress keypress
String
mscml.request.configure_leg.subscribe.events.keypress.digit digit
String
mscml.request.configure_leg.subscribe.events.keypress.interdigittime interdigittime
String
mscml.request.configure_leg.subscribe.events.keypress.length length
String
mscml.request.configure_leg.subscribe.events.keypress.maskdigits maskdigits
String
mscml.request.configure_leg.subscribe.events.keypress.method method
String
mscml.request.configure_leg.subscribe.events.keypress.report report
String
mscml.request.configure_leg.subscribe.events.keypress.status status
String
mscml.request.configure_leg.subscribe.events.keypress.status.command command
String
mscml.request.configure_leg.subscribe.events.keypress.status.duration duration
String
mscml.request.configure_leg.subscribe.events.signal signal
String
mscml.request.configure_leg.subscribe.events.signal.report report
String
mscml.request.configure_leg.subscribe.events.signal.type type
String
mscml.request.configure_leg.toneclamp toneclamp
String
mscml.request.configure_leg.type type
String
mscml.request.faxplay faxplay
String
mscml.request.faxplay.id id
String
mscml.request.faxplay.lclid lclid
String
mscml.request.faxplay.prompt prompt
String
mscml.request.faxplay.prompt.audio audio
String
mscml.request.faxplay.prompt.audio.encoding encoding
String
mscml.request.faxplay.prompt.audio.gain gain
String
mscml.request.faxplay.prompt.audio.gaindelta gaindelta
String
mscml.request.faxplay.prompt.audio.rate rate
String
mscml.request.faxplay.prompt.audio.ratedelta ratedelta
String
mscml.request.faxplay.prompt.audio.url url
String
mscml.request.faxplay.prompt.baseurl baseurl
String
mscml.request.faxplay.prompt.delay delay
String
mscml.request.faxplay.prompt.duration duration
String
mscml.request.faxplay.prompt.gain gain
String
mscml.request.faxplay.prompt.gaindelta gaindelta
String
mscml.request.faxplay.prompt.locale locale
String
mscml.request.faxplay.prompt.offset offset
String
mscml.request.faxplay.prompt.rate rate
String
mscml.request.faxplay.prompt.ratedelta ratedelta
String
mscml.request.faxplay.prompt.repeat repeat
String
mscml.request.faxplay.prompt.stoponerror stoponerror
String
mscml.request.faxplay.prompt.variable variable
String
mscml.request.faxplay.prompt.variable.subtype subtype
String
mscml.request.faxplay.prompt.variable.type type
String
mscml.request.faxplay.prompt.variable.value value
String
mscml.request.faxplay.prompturl prompturl
String
mscml.request.faxplay.recurl recurl
String
mscml.request.faxplay.rmtid rmtid
String
mscml.request.faxrecord faxrecord
String
mscml.request.faxrecord.id id
String
mscml.request.faxrecord.lclid lclid
String
mscml.request.faxrecord.prompt prompt
String
mscml.request.faxrecord.prompt.audio audio
String
mscml.request.faxrecord.prompt.audio.encoding encoding
String
mscml.request.faxrecord.prompt.audio.gain gain
String
mscml.request.faxrecord.prompt.audio.gaindelta gaindelta
String
mscml.request.faxrecord.prompt.audio.rate rate
String
mscml.request.faxrecord.prompt.audio.ratedelta ratedelta
String
mscml.request.faxrecord.prompt.audio.url url
String
mscml.request.faxrecord.prompt.baseurl baseurl
String
mscml.request.faxrecord.prompt.delay delay
String
mscml.request.faxrecord.prompt.duration duration
String
mscml.request.faxrecord.prompt.gain gain
String
mscml.request.faxrecord.prompt.gaindelta gaindelta
String
mscml.request.faxrecord.prompt.locale locale
String
mscml.request.faxrecord.prompt.offset offset
String
mscml.request.faxrecord.prompt.rate rate
String
mscml.request.faxrecord.prompt.ratedelta ratedelta
String
mscml.request.faxrecord.prompt.repeat repeat
String
mscml.request.faxrecord.prompt.stoponerror stoponerror
String
mscml.request.faxrecord.prompt.variable variable
String
mscml.request.faxrecord.prompt.variable.subtype subtype
String
mscml.request.faxrecord.prompt.variable.type type
String
mscml.request.faxrecord.prompt.variable.value value
String
mscml.request.faxrecord.prompturl prompturl
String
mscml.request.faxrecord.recurl recurl
String
mscml.request.faxrecord.rmtid rmtid
String
mscml.request.managecontent managecontent
String
mscml.request.managecontent.action action
String
mscml.request.managecontent.dest dest
String
mscml.request.managecontent.fetchtimeout fetchtimeout
String
mscml.request.managecontent.httpmethod httpmethod
String
mscml.request.managecontent.id id
String
mscml.request.managecontent.mimetype mimetype
String
mscml.request.managecontent.name name
String
mscml.request.managecontent.src src
String
mscml.request.play play
String
mscml.request.play.id id
String
mscml.request.play.offset offset
String
mscml.request.play.prompt prompt
String
mscml.request.play.prompt.audio audio
String
mscml.request.play.prompt.audio.encoding encoding
String
mscml.request.play.prompt.audio.gain gain
String
mscml.request.play.prompt.audio.gaindelta gaindelta
String
mscml.request.play.prompt.audio.rate rate
String
mscml.request.play.prompt.audio.ratedelta ratedelta
String
mscml.request.play.prompt.audio.url url
String
mscml.request.play.prompt.baseurl baseurl
String
mscml.request.play.prompt.delay delay
String
mscml.request.play.prompt.duration duration
String
mscml.request.play.prompt.gain gain
String
mscml.request.play.prompt.gaindelta gaindelta
String
mscml.request.play.prompt.locale locale
String
mscml.request.play.prompt.offset offset
String
mscml.request.play.prompt.rate rate
String
mscml.request.play.prompt.ratedelta ratedelta
String
mscml.request.play.prompt.repeat repeat
String
mscml.request.play.prompt.stoponerror stoponerror
String
mscml.request.play.prompt.variable variable
String
mscml.request.play.prompt.variable.subtype subtype
String
mscml.request.play.prompt.variable.type type
String
mscml.request.play.prompt.variable.value value
String
mscml.request.play.promptencoding promptencoding
String
mscml.request.play.prompturl prompturl
String
mscml.request.playcollect playcollect
String
mscml.request.playcollect.barge barge
String
mscml.request.playcollect.cleardigits cleardigits
String
mscml.request.playcollect.escapekey escapekey
String
mscml.request.playcollect.extradigittimer extradigittimer
String
mscml.request.playcollect.ffkey ffkey
String
mscml.request.playcollect.firstdigittimer firstdigittimer
String
mscml.request.playcollect.id id
String
mscml.request.playcollect.interdigitcriticaltimer interdigitcriticaltimer
String
mscml.request.playcollect.interdigittimer interdigittimer
String
mscml.request.playcollect.maskdigits maskdigits
String
mscml.request.playcollect.maxdigits maxdigits
String
mscml.request.playcollect.offset offset
String
mscml.request.playcollect.pattern pattern
String
mscml.request.playcollect.pattern.megacodigitmap megacodigitmap
String
mscml.request.playcollect.pattern.megacodigitmap.name name
String
mscml.request.playcollect.pattern.megacodigitmap.value value
String
mscml.request.playcollect.pattern.mgcpdigitmap mgcpdigitmap
String
mscml.request.playcollect.pattern.mgcpdigitmap.name name
String
mscml.request.playcollect.pattern.mgcpdigitmap.value value
String
mscml.request.playcollect.pattern.regex regex
String
mscml.request.playcollect.pattern.regex.name name
String
mscml.request.playcollect.pattern.regex.value value
String
mscml.request.playcollect.prompt prompt
String
mscml.request.playcollect.prompt.audio audio
String
mscml.request.playcollect.prompt.audio.encoding encoding
String
mscml.request.playcollect.prompt.audio.gain gain
String
mscml.request.playcollect.prompt.audio.gaindelta gaindelta
String
mscml.request.playcollect.prompt.audio.rate rate
String
mscml.request.playcollect.prompt.audio.ratedelta ratedelta
String
mscml.request.playcollect.prompt.audio.url url
String
mscml.request.playcollect.prompt.baseurl baseurl
String
mscml.request.playcollect.prompt.delay delay
String
mscml.request.playcollect.prompt.duration duration
String
mscml.request.playcollect.prompt.gain gain
String
mscml.request.playcollect.prompt.gaindelta gaindelta
String
mscml.request.playcollect.prompt.locale locale
String
mscml.request.playcollect.prompt.offset offset
String
mscml.request.playcollect.prompt.rate rate
String
mscml.request.playcollect.prompt.ratedelta ratedelta
String
mscml.request.playcollect.prompt.repeat repeat
String
mscml.request.playcollect.prompt.stoponerror stoponerror
String
mscml.request.playcollect.prompt.variable variable
String
mscml.request.playcollect.prompt.variable.subtype subtype
String
mscml.request.playcollect.prompt.variable.type type
String
mscml.request.playcollect.prompt.variable.value value
String
mscml.request.playcollect.promptencoding promptencoding
String
mscml.request.playcollect.prompturl prompturl
String
mscml.request.playcollect.returnkey returnkey
String
mscml.request.playcollect.rwkey rwkey
String
mscml.request.playcollect.skipinterval skipinterval
String
mscml.request.playrecord playrecord
String
mscml.request.playrecord.barge barge
String
mscml.request.playrecord.beep beep
String
mscml.request.playrecord.cleardigits cleardigits
String
mscml.request.playrecord.duration duration
String
mscml.request.playrecord.endsilence endsilence
String
mscml.request.playrecord.escapekey escapekey
String
mscml.request.playrecord.id id
String
mscml.request.playrecord.initsilence initsilence
String
mscml.request.playrecord.mode mode
String
mscml.request.playrecord.offset offset
String
mscml.request.playrecord.prompt prompt
String
mscml.request.playrecord.prompt.audio audio
String
mscml.request.playrecord.prompt.audio.encoding encoding
String
mscml.request.playrecord.prompt.audio.gain gain
String
mscml.request.playrecord.prompt.audio.gaindelta gaindelta
String
mscml.request.playrecord.prompt.audio.rate rate
String
mscml.request.playrecord.prompt.audio.ratedelta ratedelta
String
mscml.request.playrecord.prompt.audio.url url
String
mscml.request.playrecord.prompt.baseurl baseurl
String
mscml.request.playrecord.prompt.delay delay
String
mscml.request.playrecord.prompt.duration duration
String
mscml.request.playrecord.prompt.gain gain
String
mscml.request.playrecord.prompt.gaindelta gaindelta
String
mscml.request.playrecord.prompt.locale locale
String
mscml.request.playrecord.prompt.offset offset
String
mscml.request.playrecord.prompt.rate rate
String
mscml.request.playrecord.prompt.ratedelta ratedelta
String
mscml.request.playrecord.prompt.repeat repeat
String
mscml.request.playrecord.prompt.stoponerror stoponerror
String
mscml.request.playrecord.prompt.variable variable
String
mscml.request.playrecord.prompt.variable.subtype subtype
String
mscml.request.playrecord.prompt.variable.type type
String
mscml.request.playrecord.prompt.variable.value value
String
mscml.request.playrecord.promptencoding promptencoding
String
mscml.request.playrecord.prompturl prompturl
String
mscml.request.playrecord.recencoding recencoding
String
mscml.request.playrecord.recstopmask recstopmask
String
mscml.request.playrecord.recurl recurl
String
mscml.request.stop stop
String
mscml.request.stop.id id
String
mscml.response response
String
mscml.response.code code
String
mscml.response.digits digits
String
mscml.response.error_info error_info
String
mscml.response.error_info.code code
String
mscml.response.error_info.context context
String
mscml.response.error_info.text text
String
mscml.response.faxcode faxcode
String
mscml.response.id id
String
mscml.response.name name
String
mscml.response.pages_recv pages_recv
String
mscml.response.pages_sent pages_sent
String
mscml.response.playduration playduration
String
mscml.response.playoffset playoffset
String
mscml.response.reason reason
String
mscml.response.recduration recduration
String
mscml.response.reclength reclength
String
mscml.response.request request
String
mscml.response.team team
String
mscml.response.team.id id
String
mscml.response.team.numteam numteam
String
mscml.response.team.teammate teammate
String
mscml.response.team.teammate.id id
String
mscml.response.text text
String
mscml.signal signal
String
mscml.signal.report report
String
mscml.signal.type type
String
mscml.status status
String
mscml.status.command command
String
mscml.status.duration duration
String
mscml.stop stop
String
mscml.stop.id id
String
mscml.subscribe subscribe
String
mscml.subscribe.events events
String
mscml.subscribe.events.activetalkers activetalkers
String
mscml.subscribe.events.activetalkers.interval interval
String
mscml.subscribe.events.activetalkers.report report
String
mscml.subscribe.events.activetalkers.talker talker
String
mscml.subscribe.events.activetalkers.talker.callid callid
String
mscml.subscribe.events.keypress keypress
String
mscml.subscribe.events.keypress.digit digit
String
mscml.subscribe.events.keypress.interdigittime interdigittime
String
mscml.subscribe.events.keypress.length length
String
mscml.subscribe.events.keypress.maskdigits maskdigits
String
mscml.subscribe.events.keypress.method method
String
mscml.subscribe.events.keypress.report report
String
mscml.subscribe.events.keypress.status status
String
mscml.subscribe.events.keypress.status.command command
String
mscml.subscribe.events.keypress.status.duration duration
String
mscml.subscribe.events.signal signal
String
mscml.subscribe.events.signal.report report
String
mscml.subscribe.events.signal.type type
String
mscml.talker talker
String
mscml.talker.callid callid
String
mscml.team team
String
mscml.team.id id
String
mscml.team.numteam numteam
String
mscml.team.teammate teammate
String
mscml.team.teammate.id id
String
mscml.teammate teammate
String
mscml.teammate.id id
String
mscml.variable variable
String
mscml.variable.subtype subtype
String
mscml.variable.type type
String
mscml.variable.value value
String
mscml.version version
String
msrp.authentication.info Authentication-Info
String
Authentication-Info
msrp.authorization Authorization
String
Authorization
msrp.byte.range Byte Range
String
Byte Range
msrp.cnt.flg Continuation-flag
String
Continuation-flag
msrp.content.description Content-Description
String
Content-Description
msrp.content.disposition Content-Disposition
String
Content-Disposition
msrp.content.id Content-ID
String
Content-ID
msrp.content.type Content-Type
String
Content-Type
msrp.data Data
String
Data
msrp.end.line End Line
String
End Line
msrp.failure.report Failure Report
String
Failure Report
msrp.from.path From Path
String
From Path
msrp.messageid Message ID
String
Message ID
msrp.method Method
String
Method
msrp.msg.hdr Message Header
No value
Message Header
msrp.request.line Request Line
String
Request Line
msrp.response.line Response Line
String
Response Line
msrp.setup Stream setup
String
Stream setup, method and frame number
msrp.setup-frame Setup frame
Frame number
Frame that set up this stream
msrp.setup-method Setup Method
String
Method used to set up this stream
msrp.status Status
String
Status
msrp.status.code Status code
Unsigned 16-bit integer
Status code
msrp.success.report Success Report
String
Success Report
msrp.to.path To Path
String
To Path
msrp.transaction.id Transaction Id
String
Transaction Id
msrp.use.path Use-Path
String
Use-Path
msrp.www.authenticate WWW-Authenticate
String
WWW-Authenticate
mtp2.bib Backward indicator bit
Unsigned 8-bit integer
mtp2.bsn Backward sequence number
Unsigned 8-bit integer
mtp2.fib Forward indicator bit
Unsigned 8-bit integer
mtp2.fsn Forward sequence number
Unsigned 8-bit integer
mtp2.li Length Indicator
Unsigned 8-bit integer
mtp2.res Reserved
Unsigned 16-bit integer
mtp2.sf Status field
Unsigned 8-bit integer
mtp2.spare Spare
Unsigned 8-bit integer
mtp3.ansi_dpc DPC
String
mtp3.ansi_opc OPC
String
mtp3.chinese_dpc DPC
String
mtp3.chinese_opc OPC
String
mtp3.dpc.cluster DPC Cluster
Unsigned 24-bit integer
mtp3.dpc.member DPC Member
Unsigned 24-bit integer
mtp3.dpc.network DPC Network
Unsigned 24-bit integer
mtp3.network_indicator Network indicator
Unsigned 8-bit integer
mtp3.opc.cluster OPC Cluster
Unsigned 24-bit integer
mtp3.opc.member OPC Member
Unsigned 24-bit integer
mtp3.opc.network OPC Network
Unsigned 24-bit integer
mtp3.priority ITU priority
Unsigned 8-bit integer
mtp3.service_indicator Service indicator
Unsigned 8-bit integer
mtp3.sls Signalling Link Selector
Unsigned 32-bit integer
mtp3.sls_spare SLS Spare
Unsigned 8-bit integer
mtp3.spare Spare
Unsigned 8-bit integer
mtp3mg.ansi_apc Affected Point Code
String
mtp3mg.apc Affected Point Code (ITU)
Unsigned 16-bit integer
mtp3mg.apc.cluster Affected Point Code cluster
Unsigned 24-bit integer
mtp3mg.apc.member Affected Point Code member
Unsigned 24-bit integer
mtp3mg.apc.network Affected Point Code network
Unsigned 24-bit integer
mtp3mg.cause Cause
Unsigned 8-bit integer
Cause of user unavailability
mtp3mg.cbc Change Back Code
Unsigned 16-bit integer
mtp3mg.chinese_apc Affected Point Code
String
mtp3mg.fsn Forward Sequence Number
Unsigned 8-bit integer
Forward Sequence Number of last accepted message
mtp3mg.h0 H0 (Message Group)
Unsigned 8-bit integer
Message group identifier
mtp3mg.h1 H1 (Message)
Unsigned 8-bit integer
Message type
mtp3mg.japan_apc Affected Point Code
Unsigned 16-bit integer
mtp3mg.japan_count Count of Affected Point Codes (Japan)
Unsigned 8-bit integer
mtp3mg.japan_spare TFC spare (Japan)
Unsigned 8-bit integer
mtp3mg.japan_status Status
Unsigned 8-bit integer
mtp3mg.link Link
Unsigned 8-bit integer
CIC of BIC used to carry data
mtp3mg.slc Signalling Link Code
Unsigned 8-bit integer
SLC of affected link
mtp3mg.spare Japan management spare
Unsigned 8-bit integer
Japan management spare
mtp3mg.status Status
Unsigned 8-bit integer
Congestion status
mtp3mg.test Japan test message
Unsigned 8-bit integer
Japan test message type
mtp3mg.test.h0 H0 (Message Group)
Unsigned 8-bit integer
Message group identifier
mtp3mg.test.h1 H1 (Message)
Unsigned 8-bit integer
SLT message type
mtp3mg.test.length Test length
Unsigned 8-bit integer
Signalling link test pattern length
mtp3mg.test.pattern Japan test message pattern
Unsigned 16-bit integer
Japan test message pattern
mtp3mg.test.spare Japan test message spare
Unsigned 8-bit integer
Japan test message spare
mtp3mg.user User
Unsigned 8-bit integer
Unavailable user part
atcvs.job_info JobInfo
No value
JobInfo structure
atsvc.DaysOfMonth.Eight Eight
Boolean
atsvc.DaysOfMonth.Eighteenth Eighteenth
Boolean
atsvc.DaysOfMonth.Eleventh Eleventh
Boolean
atsvc.DaysOfMonth.Fifteenth Fifteenth
Boolean
atsvc.DaysOfMonth.Fifth Fifth
Boolean
atsvc.DaysOfMonth.First First
Boolean
atsvc.DaysOfMonth.Fourteenth Fourteenth
Boolean
atsvc.DaysOfMonth.Fourth Fourth
Boolean
atsvc.DaysOfMonth.Ninteenth Ninteenth
Boolean
atsvc.DaysOfMonth.Ninth Ninth
Boolean
atsvc.DaysOfMonth.Second Second
Boolean
atsvc.DaysOfMonth.Seventeenth Seventeenth
Boolean
atsvc.DaysOfMonth.Seventh Seventh
Boolean
atsvc.DaysOfMonth.Sixteenth Sixteenth
Boolean
atsvc.DaysOfMonth.Sixth Sixth
Boolean
atsvc.DaysOfMonth.Tenth Tenth
Boolean
atsvc.DaysOfMonth.Third Third
Boolean
atsvc.DaysOfMonth.Thirtieth Thirtieth
Boolean
atsvc.DaysOfMonth.Thirtyfirst Thirtyfirst
Boolean
atsvc.DaysOfMonth.Thitteenth Thitteenth
Boolean
atsvc.DaysOfMonth.Twelfth Twelfth
Boolean
atsvc.DaysOfMonth.Twentyeighth Twentyeighth
Boolean
atsvc.DaysOfMonth.Twentyfifth Twentyfifth
Boolean
atsvc.DaysOfMonth.Twentyfirst Twentyfirst
Boolean
atsvc.DaysOfMonth.Twentyfourth Twentyfourth
Boolean
atsvc.DaysOfMonth.Twentyninth Twentyninth
Boolean
atsvc.DaysOfMonth.Twentysecond Twentysecond
Boolean
atsvc.DaysOfMonth.Twentyseventh Twentyseventh
Boolean
atsvc.DaysOfMonth.Twentysixth Twentysixth
Boolean
atsvc.DaysOfMonth.Twentyth Twentyth
Boolean
atsvc.DaysOfMonth.Twentythird Twentythird
Boolean
atsvc.DaysOfWeek.DAYSOFWEEK_FRIDAY Daysofweek Friday
Boolean
atsvc.DaysOfWeek.DAYSOFWEEK_MONDAY Daysofweek Monday
Boolean
atsvc.DaysOfWeek.DAYSOFWEEK_SATURDAY Daysofweek Saturday
Boolean
atsvc.DaysOfWeek.DAYSOFWEEK_SUNDAY Daysofweek Sunday
Boolean
atsvc.DaysOfWeek.DAYSOFWEEK_THURSDAY Daysofweek Thursday
Boolean
atsvc.DaysOfWeek.DAYSOFWEEK_TUESDAY Daysofweek Tuesday
Boolean
atsvc.DaysOfWeek.DAYSOFWEEK_WEDNESDAY Daysofweek Wednesday
Boolean
atsvc.Flags.JOB_ADD_CURRENT_DATE Job Add Current Date
Boolean
atsvc.Flags.JOB_EXEC_ERROR Job Exec Error
Boolean
atsvc.Flags.JOB_NONINTERACTIVE Job Noninteractive
Boolean
atsvc.Flags.JOB_RUNS_TODAY Job Runs Today
Boolean
atsvc.Flags.JOB_RUN_PERIODICALLY Job Run Periodically
Boolean
atsvc.JobDel.max_job_id Max Job Id
Unsigned 32-bit integer
atsvc.JobDel.min_job_id Min Job Id
Unsigned 32-bit integer
atsvc.JobEnum.ctr Ctr
No value
atsvc.JobEnum.preferred_max_len Preferred Max Len
Unsigned 32-bit integer
atsvc.JobEnum.resume_handle Resume Handle
Unsigned 32-bit integer
atsvc.JobEnum.total_entries Total Entries
Unsigned 32-bit integer
atsvc.JobEnumInfo.command Command
String
atsvc.JobEnumInfo.days_of_month Days Of Month
Unsigned 32-bit integer
atsvc.JobEnumInfo.days_of_week Days Of Week
Unsigned 8-bit integer
atsvc.JobEnumInfo.flags Flags
Unsigned 8-bit integer
atsvc.JobEnumInfo.job_time Job Time
Unsigned 32-bit integer
atsvc.JobInfo.command Command
String
atsvc.JobInfo.days_of_month Days Of Month
Unsigned 32-bit integer
atsvc.JobInfo.days_of_week Days Of Week
Unsigned 8-bit integer
atsvc.JobInfo.flags Flags
Unsigned 8-bit integer
atsvc.JobInfo.job_time Job Time
Unsigned 32-bit integer
atsvc.enum_ctr.entries_read Entries Read
Unsigned 32-bit integer
atsvc.enum_ctr.first_entry First Entry
No value
atsvc.job_id Job Id
Unsigned 32-bit integer
Identifier of the scheduled job
atsvc.opnum Operation
Unsigned 16-bit integer
atsvc.server Server
String
Name of the server
atsvc.status NT Error
Unsigned 32-bit integer
trksvr.opnum Operation
Unsigned 16-bit integer
trksvr.rc Return code
Unsigned 32-bit integer
TRKSVR return code
mapi.decrypted.data Decrypted data
Byte array
Decrypted data
mapi.decrypted.data.len Length
Unsigned 32-bit integer
Used size of buffer for decrypted data
mapi.decrypted.data.maxlen Max Length
Unsigned 32-bit integer
Maximum size of buffer for decrypted data
mapi.decrypted.data.offset Offset
Unsigned 32-bit integer
Offset into buffer for decrypted data
mapi.encap_len Length
Unsigned 16-bit integer
Length of encapsulated/encrypted data
mapi.encrypted_data Encrypted data
Byte array
Encrypted data
mapi.hnd Context Handle
Byte array
mapi.notification_payload Notification payload
Byte array
Payload to be sent in newmail protocol notification packets
mapi.notification_port Notification port
Unsigned 16-bit integer
UDP port which newmail protocol notifications are sent to on the client
mapi.opnum Operation
Unsigned 16-bit integer
mapi.pdu.len Length
Unsigned 16-bit integer
Size of the command PDU
mapi.rc Return code
Unsigned 32-bit integer
mapi.unknown_long Unknown long
Unsigned 32-bit integer
Unknown long. If you know what this is, contact wireshark developers.
mapi.unknown_short Unknown short
Unsigned 16-bit integer
Unknown short. If you know what this is, contact wireshark developers.
mapi.unknown_string Unknown string
String
Unknown string. If you know what this is, contact wireshark developers.
newmail.notification_payload Notification payload
Byte array
Payload requested by client in the MAPI register push notification packet
frsrpc.dsrv DSRV
String
frsrpc.dsrv.guid DSRV GUID
frsrpc.guid.size Guid Size
Unsigned 32-bit integer
frsrpc.opnum Operation
Unsigned 16-bit integer
Operation
frsrpc.ssrv SSRV
String
frsrpc.ssrv.guid SSRV GUID
frsrpc.str.size String Size
Unsigned 32-bit integer
frsrpc.timestamp Timestamp
Date/Time stamp
frsrpc.tlv TLV
No value
A tlv blob
frsrpc.tlv.data TLV Data
Byte array
frsrpc.tlv.size TLV Size
Unsigned 32-bit integer
frsrpc.tlv.tag TLV Tag
Unsigned 16-bit integer
frsrpc.tlv_item TLV
No value
A tlv item
frsrpc.tlv_size TLV Size
Unsigned 32-bit integer
Size of tlv blob in bytes
frsrpc.unknown32 unknown32
Unsigned 32-bit integer
unknown int32
frsrpc.unknownbytes unknown
Byte array
unknown bytes
frsapi.opnum Operation
Unsigned 16-bit integer
Operation
lsa.access_mask Access Mask
Unsigned 32-bit integer
LSA Access Mask
lsa.access_mask.audit_log_admin Administer audit log attributes
Boolean
Administer audit log attributes
lsa.access_mask.create_account Create special accounts (for assignment of user rights)
Boolean
Create special accounts (for assignment of user rights)
lsa.access_mask.create_priv Create a privilege
Boolean
Create a privilege
lsa.access_mask.create_secret Create a secret object
Boolean
Create a secret object
lsa.access_mask.get_privateinfo Get sensitive policy information
Boolean
Get sensitive policy information
lsa.access_mask.lookup_names Lookup Names/SIDs
Boolean
Lookup Names/SIDs
lsa.access_mask.server_admin Enable/Disable LSA
Boolean
Enable/Disable LSA
lsa.access_mask.set_audit_requirements Change system audit requirements
Boolean
Change system audit requirements
lsa.access_mask.set_default_quota_limits Set default quota limits
Boolean
Set default quota limits
lsa.access_mask.trust_admin Modify domain trust relationships
Boolean
Modify domain trust relationships
lsa.access_mask.view_audit_info View system audit requirements
Boolean
View system audit requirements
lsa.access_mask.view_local_info View non-sensitive policy information
Boolean
View non-sensitive policy information
lsa.acct Account
String
Account
lsa.attr Attr
Unsigned 64-bit integer
LSA Attributes
lsa.auth.blob Auth blob
Byte array
lsa.auth.len Auth Len
Unsigned 32-bit integer
Auth Info len
lsa.auth.type Auth Type
Unsigned 32-bit integer
Auth Info type
lsa.auth.update Update
Unsigned 64-bit integer
LSA Auth Info update
lsa.controller Controller
String
Name of Domain Controller
lsa.count Count
Unsigned 32-bit integer
Count of objects
lsa.cur.mtime Current MTime
Date/Time stamp
Current MTime to set
lsa.domain Domain
String
Domain
lsa.flat_name Flat Name
String
lsa.forest Forest
String
lsa.fqdn_domain FQDN
String
Fully Qualified Domain Name
lsa.hnd Context Handle
Byte array
LSA policy handle
lsa.index Index
Unsigned 32-bit integer
lsa.info.level Level
Unsigned 16-bit integer
Information level of requested data
lsa.info_type Info Type
Unsigned 32-bit integer
lsa.key Key
String
lsa.max_count Max Count
Unsigned 32-bit integer
lsa.mod.mtime MTime
Date/Time stamp
Time when this modification occured
lsa.mod.seq_no Seq No
Unsigned 64-bit integer
Sequence number for this modification
lsa.name Name
String
lsa.new_pwd New Password
Byte array
New password
lsa.num_mapped Num Mapped
Unsigned 32-bit integer
lsa.obj_attr Attributes
Unsigned 32-bit integer
LSA Attributes
lsa.obj_attr.len Length
Unsigned 32-bit integer
Length of object attribute structure
lsa.obj_attr.name Name
String
Name of object attribute
lsa.old.mtime Old MTime
Date/Time stamp
Old MTime for this object
lsa.old_pwd Old Password
Byte array
Old password
lsa.opnum Operation
Unsigned 16-bit integer
Operation
lsa.paei.enabled Auditing enabled
Unsigned 8-bit integer
If Security auditing is enabled or not
lsa.paei.settings Settings
Unsigned 32-bit integer
Audit Events Information settings
lsa.pali.log_size Log Size
Unsigned 32-bit integer
Size of audit log
lsa.pali.next_audit_record Next Audit Record
Unsigned 32-bit integer
Next audit record
lsa.pali.percent_full Percent Full
Unsigned 32-bit integer
How full audit log is in percentage
lsa.pali.retention_period Retention Period
Time duration
lsa.pali.shutdown_in_progress Shutdown in progress
Unsigned 8-bit integer
Flag whether shutdown is in progress or not
lsa.pali.time_to_shutdown Time to shutdown
Time duration
Time to shutdown
lsa.policy.info Info Class
Unsigned 16-bit integer
Policy information class
lsa.policy_information POLICY INFO
No value
Policy Information union
lsa.privilege.display__name.size Size Needed
Unsigned 32-bit integer
Number of characters in the privilege display name
lsa.privilege.display_name Display Name
String
LSA Privilege Display Name
lsa.privilege.name Name
String
LSA Privilege Name
lsa.qos.effective_only Effective only
Unsigned 8-bit integer
QOS Flag whether this is Effective Only or not
lsa.qos.imp_lev Impersonation level
Unsigned 16-bit integer
QOS Impersonation Level
lsa.qos.len Length
Unsigned 32-bit integer
Length of quality of service structure
lsa.qos.track_ctx Context Tracking
Unsigned 8-bit integer
QOS Context Tracking Mode
lsa.quota.max_wss Max WSS
Unsigned 32-bit integer
Size of Quota Max WSS
lsa.quota.min_wss Min WSS
Unsigned 32-bit integer
Size of Quota Min WSS
lsa.quota.non_paged_pool Non Paged Pool
Unsigned 32-bit integer
Size of Quota non-Paged Pool
lsa.quota.paged_pool Paged Pool
Unsigned 32-bit integer
Size of Quota Paged Pool
lsa.quota.pagefile Pagefile
Unsigned 32-bit integer
Size of quota pagefile usage
lsa.rc Return code
Unsigned 32-bit integer
LSA return status code
lsa.remove_all Remove All
Unsigned 8-bit integer
Flag whether all rights should be removed or only the specified ones
lsa.resume_handle Resume Handle
Unsigned 32-bit integer
Resume Handle
lsa.rid RID
Unsigned 32-bit integer
RID
lsa.rid.offset RID Offset
Unsigned 32-bit integer
RID Offset
lsa.rights Rights
String
Account Rights
lsa.sd_size Size
Unsigned 32-bit integer
Size of lsa security descriptor
lsa.secret LSA Secret
Byte array
lsa.server Server
String
Name of Server
lsa.server_role Role
Unsigned 16-bit integer
LSA Server Role
lsa.sid_type SID Type
Unsigned 16-bit integer
Type of SID
lsa.size Size
Unsigned 32-bit integer
lsa.source Source
String
Replica Source
lsa.trust.attr Trust Attr
Unsigned 32-bit integer
Trust attributes
lsa.trust.attr.non_trans Non Transitive
Boolean
Non Transitive trust
lsa.trust.attr.tree_parent Tree Parent
Boolean
Tree Parent trust
lsa.trust.attr.tree_root Tree Root
Boolean
Tree Root trust
lsa.trust.attr.uplevel_only Upleve only
Boolean
Uplevel only trust
lsa.trust.direction Trust Direction
Unsigned 32-bit integer
Trust direction
lsa.trust.type Trust Type
Unsigned 32-bit integer
Trust type
lsa.trusted.info_level Info Level
Unsigned 16-bit integer
Information level of requested Trusted Domain Information
lsa.unknown.char Unknown char
Unsigned 8-bit integer
Unknown char. If you know what this is, contact wireshark developers.
lsa.unknown.hyper Unknown hyper
Unsigned 64-bit integer
Unknown hyper. If you know what this is, contact wireshark developers.
lsa.unknown.long Unknown long
Unsigned 32-bit integer
Unknown long. If you know what this is, contact wireshark developers.
lsa.unknown.short Unknown short
Unsigned 16-bit integer
Unknown short. If you know what this is, contact wireshark developers.
lsa.unknown_string Unknown string
String
Unknown string. If you know what this is, contact wireshark developers.
nt.luid.high High
Unsigned 32-bit integer
LUID High component
nt.luid.low Low
Unsigned 32-bit integer
LUID Low component
msmms.command Command
String
MSMMS command hidden filter
msmms.command.broadcast-indexing Broadcast indexing
Unsigned 8-bit integer
msmms.command.broadcast-liveness Broadcast liveness
Unsigned 8-bit integer
msmms.command.client-transport-info Client transport info
String
msmms.command.common-header Command common header
String
MSMMS command common header
msmms.command.direction Command direction
Unsigned 16-bit integer
msmms.command.download-update-player-url Download update player URL
String
msmms.command.download-update-player-url-length Download update URL length
Unsigned 32-bit integer
msmms.command.length Command length
Unsigned 32-bit integer
msmms.command.length-remaining Length until end (8-byte blocks)
Unsigned 32-bit integer
msmms.command.length-remaining2 Length until end (8-byte blocks)
Unsigned 32-bit integer
msmms.command.password-encryption-type Password encryption type
String
msmms.command.password-encryption-type-length Password encryption type length
Unsigned 32-bit integer
msmms.command.player-info Player info
String
msmms.command.prefix1 Prefix 1
Unsigned 32-bit integer
msmms.command.prefix1-command-level Prefix 1 Command Level
Unsigned 32-bit integer
msmms.command.prefix1-error-code Prefix 1 ErrorCode
Unsigned 32-bit integer
msmms.command.prefix2 Prefix 2
Unsigned 32-bit integer
msmms.command.protocol-type Protocol type
String
msmms.command.result-flags Result flags
Unsigned 32-bit integer
msmms.command.sequence-number Sequence number
Unsigned 32-bit integer
msmms.command.server-file Server file
String
msmms.command.server-version Server version
String
msmms.command.server-version-length Server Version Length
Unsigned 32-bit integer
msmms.command.signature Command signature
Unsigned 32-bit integer
msmms.command.strange-string Strange string
String
msmms.command.timestamp Time stamp (s)
Double-precision floating point
msmms.command.to-client-id Command
Unsigned 16-bit integer
msmms.command.to-server-id Command
Unsigned 16-bit integer
msmms.command.tool-version Tool version
String
msmms.command.tool-version-length Tool Version Length
Unsigned 32-bit integer
msmms.command.version Version
Unsigned 32-bit integer
msmms.data Data
No value
msmms.data.client-id Client ID
Unsigned 32-bit integer
msmms.data.command-id Command ID
Unsigned 16-bit integer
msmms.data.header-id Header ID
Unsigned 32-bit integer
msmms.data.header-packet-id-type Header packet ID type
Unsigned 32-bit integer
msmms.data.media-packet-length Media packet length (bytes)
Unsigned 32-bit integer
msmms.data.packet-id-type Packet ID type
Unsigned 8-bit integer
msmms.data.packet-length Packet length
Unsigned 16-bit integer
msmms.data.packet-to-resend Packet to resend
Unsigned 32-bit integer
msmms.data.prerecorded-media-length Pre-recorded media length (seconds)
Unsigned 32-bit integer
msmms.data.selection-stream-action Action
Unsigned 16-bit integer
msmms.data.selection-stream-id Stream id
Unsigned 16-bit integer
msmms.data.sequence Sequence number
Unsigned 32-bit integer
msmms.data.stream-selection-flags Stream selection flags
Unsigned 16-bit integer
msmms.data.stream-structure-count Stream structure count
Unsigned 32-bit integer
msmms.data.tcp-flags TCP flags
Unsigned 8-bit integer
msmms.data.timing-pair Data timing pair
No value
msmms.data.timing-pair.flag Flag
Unsigned 8-bit integer
msmms.data.timing-pair.flags Flags
Unsigned 24-bit integer
msmms.data.timing-pair.id ID
Unsigned 8-bit integer
msmms.data.timing-pair.packet-length Packet length
Unsigned 16-bit integer
msmms.data.timing-pair.sequence-number Sequence number
Unsigned 8-bit integer
msmms.data.udp-sequence UDP Sequence
Unsigned 8-bit integer
msmms.data.unparsed Unparsed data
No value
msmms.data.words-in-structure Number of 4 byte fields in structure
Unsigned 32-bit integer
messenger.client Client
String
Client that sent the message
messenger.message Message
String
The message being sent
messenger.opnum Operation
Unsigned 16-bit integer
Operation
messenger.rc Return code
Unsigned 32-bit integer
messenger.server Server
String
Server to send the message to
netlogon.acct.expiry_time Acct Expiry Time
Date/Time stamp
When this account will expire
netlogon.acct_desc Acct Desc
String
Account Description
netlogon.acct_name Acct Name
String
Account Name
netlogon.alias_name Alias Name
String
Alias Name
netlogon.alias_rid Alias RID
Unsigned 32-bit integer
netlogon.attrs Attributes
Unsigned 32-bit integer
Attributes
netlogon.audit_retention_period Audit Retention Period
Time duration
Audit retention period
netlogon.auditing_mode Auditing Mode
Unsigned 8-bit integer
Auditing Mode
netlogon.auth.data Auth Data
Byte array
Auth Data
netlogon.auth.size Auth Size
Unsigned 32-bit integer
Size of AuthData in bytes
netlogon.auth_flags Auth Flags
Unsigned 32-bit integer
netlogon.authoritative Authoritative
Unsigned 8-bit integer
netlogon.bad_pw_count Bad PW Count
Unsigned 32-bit integer
Number of failed logins
netlogon.bad_pw_count16 Bad PW Count
Unsigned 16-bit integer
Number of failed logins
netlogon.blob BLOB
Byte array
BLOB
netlogon.blob.size Size
Unsigned 32-bit integer
Size in bytes of BLOB
netlogon.challenge Challenge
Byte array
Netlogon challenge
netlogon.cipher_current_data Cipher Current Data
Byte array
netlogon.cipher_current_set_time Cipher Current Set Time
Date/Time stamp
Time when current cipher was initiated
netlogon.cipher_len Cipher Len
Unsigned 32-bit integer
netlogon.cipher_maxlen Cipher Max Len
Unsigned 32-bit integer
netlogon.cipher_old_data Cipher Old Data
Byte array
netlogon.cipher_old_set_time Cipher Old Set Time
Date/Time stamp
Time when previous cipher was initiated
netlogon.client.site_name Client Site Name
String
Client Site Name
netlogon.code Code
Unsigned 32-bit integer
Code
netlogon.codepage Codepage
Unsigned 16-bit integer
Codepage setting for this account
netlogon.comment Comment
String
Comment
netlogon.computer_name Computer Name
String
Computer Name
netlogon.count Count
Unsigned 32-bit integer
netlogon.country Country
Unsigned 16-bit integer
Country setting for this account
netlogon.credential Credential
Byte array
Netlogon Credential
netlogon.database_id Database Id
Unsigned 32-bit integer
Database Id
netlogon.db_create_time DB Create Time
Date/Time stamp
Time when created
netlogon.db_modify_time DB Modify Time
Date/Time stamp
Time when last modified
netlogon.dc.address DC Address
String
DC Address
netlogon.dc.address_type DC Address Type
Unsigned 32-bit integer
DC Address Type
netlogon.dc.flags Domain Controller Flags
Unsigned 32-bit integer
Domain Controller Flags
netlogon.dc.flags.closest Closest
Boolean
If this is the closest server
netlogon.dc.flags.dns_controller DNS Controller
Boolean
If this server is a DNS Controller
netlogon.dc.flags.dns_domain DNS Domain
Boolean
netlogon.dc.flags.dns_forest DNS Forest
Boolean
netlogon.dc.flags.ds DS
Boolean
If this server is a DS
netlogon.dc.flags.gc GC
Boolean
If this server is a GC
netlogon.dc.flags.good_timeserv Good Timeserv
Boolean
If this is a Good TimeServer
netlogon.dc.flags.kdc KDC
Boolean
If this is a KDC
netlogon.dc.flags.ldap LDAP
Boolean
If this is an LDAP server
netlogon.dc.flags.ndnc NDNC
Boolean
If this is an NDNC server
netlogon.dc.flags.pdc PDC
Boolean
If this server is a PDC
netlogon.dc.flags.timeserv Timeserv
Boolean
If this server is a TimeServer
netlogon.dc.flags.writable Writable
Boolean
If this server can do updates to the database
netlogon.dc.name DC Name
String
DC Name
netlogon.dc.site_name DC Site Name
String
DC Site Name
netlogon.delta_type Delta Type
Unsigned 16-bit integer
Delta Type
netlogon.dir_drive Dir Drive
String
Drive letter for home directory
netlogon.dns.forest_name DNS Forest Name
String
DNS Forest Name
netlogon.dns_domain DNS Domain
String
DNS Domain Name
netlogon.dns_host DNS Host
String
DNS Host
netlogon.domain Domain
String
Domain
netlogon.domain_create_time Domain Create Time
Date/Time stamp
Time when this domain was created
netlogon.domain_modify_time Domain Modify Time
Date/Time stamp
Time when this domain was last modified
netlogon.dos.rc DOS error code
Unsigned 32-bit integer
DOS Error Code
netlogon.downlevel_domain Downlevel Domain
String
Downlevel Domain Name
netlogon.dummy Dummy
String
Dummy string
netlogon.entries Entries
Unsigned 32-bit integer
netlogon.event_audit_option Event Audit Option
Unsigned 32-bit integer
Event audit option
netlogon.flags Flags
Unsigned 32-bit integer
netlogon.full_name Full Name
String
Full Name
netlogon.get_dcname.request.flags Flags
Unsigned 32-bit integer
Flags for DSGetDCName request
netlogon.get_dcname.request.flags.avoid_self Avoid Self
Boolean
Return another DC than the one we ask
netlogon.get_dcname.request.flags.background_only Background Only
Boolean
If we want cached data, even if it may have expired
netlogon.get_dcname.request.flags.ds_preferred DS Preferred
Boolean
Whether we prefer the call to return a w2k server (if available)
netlogon.get_dcname.request.flags.ds_required DS Required
Boolean
Whether we require that the returned DC supports w2k or not
netlogon.get_dcname.request.flags.force_rediscovery Force Rediscovery
Boolean
Whether to allow the server to returned cached information or not
netlogon.get_dcname.request.flags.gc_server_required GC Required
Boolean
Whether we require that the returned DC is a Global Catalog server
netlogon.get_dcname.request.flags.good_timeserv_preferred Timeserv Preferred
Boolean
If we prefer Windows Time Servers
netlogon.get_dcname.request.flags.ip_required IP Required
Boolean
If we requre the IP of the DC in the reply
netlogon.get_dcname.request.flags.is_dns_name Is DNS Name
Boolean
If the specified domain name is a DNS name
netlogon.get_dcname.request.flags.is_flat_name Is Flat Name
Boolean
If the specified domain name is a NetBIOS name
netlogon.get_dcname.request.flags.kdc_required KDC Required
Boolean
If we require that the returned server is a KDC
netlogon.get_dcname.request.flags.only_ldap_needed Only LDAP Needed
Boolean
We just want an LDAP server, it does not have to be a DC
netlogon.get_dcname.request.flags.pdc_required PDC Required
Boolean
Whether we require the returned DC to be the PDC
netlogon.get_dcname.request.flags.return_dns_name Return DNS Name
Boolean
Only return a DNS name (or an error)
netlogon.get_dcname.request.flags.return_flat_name Return Flat Name
Boolean
Only return a NetBIOS name (or an error)
netlogon.get_dcname.request.flags.timeserv_required Timeserv Required
Boolean
If we require the returned server to be a WindowsTimeServ server
netlogon.get_dcname.request.flags.writable_required Writable Required
Boolean
If we require that the returned server is writable
netlogon.group_desc Group Desc
String
Group Description
netlogon.group_name Group Name
String
Group Name
netlogon.group_rid Group RID
Unsigned 32-bit integer
netlogon.groups.attrs.enabled Enabled
Boolean
The group attributes ENABLED flag
netlogon.groups.attrs.enabled_by_default Enabled By Default
Boolean
The group attributes ENABLED_BY_DEFAULT flag
netlogon.groups.attrs.mandatory Mandatory
Boolean
The group attributes MANDATORY flag
netlogon.handle Handle
String
Logon Srv Handle
netlogon.home_dir Home Dir
String
Home Directory
netlogon.kickoff_time Kickoff Time
Date/Time stamp
Time when this user will be kicked off
netlogon.last_logoff_time Last Logoff Time
Date/Time stamp
Time for last time this user logged off
netlogon.len Len
Unsigned 32-bit integer
Length
netlogon.level Level
Unsigned 32-bit integer
Which option of the union is represented here
netlogon.level16 Level
Unsigned 16-bit integer
Which option of the union is represented here
netlogon.lm_chal_resp LM Chal resp
Byte array
Challenge response for LM authentication
netlogon.lm_owf_pwd LM Pwd
Byte array
LanManager OWF Password
netlogon.lm_owf_pwd.encrypted Encrypted LM Pwd
Byte array
Encrypted LanManager OWF Password
netlogon.lm_pwd_present LM PWD Present
Unsigned 8-bit integer
Is LanManager password present for this account?
netlogon.logoff_time Logoff Time
Date/Time stamp
Time for last time this user logged off
netlogon.logon_attempts Logon Attempts
Unsigned 32-bit integer
Number of logon attempts
netlogon.logon_count Logon Count
Unsigned 32-bit integer
Number of successful logins
netlogon.logon_count16 Logon Count
Unsigned 16-bit integer
Number of successful logins
netlogon.logon_id Logon ID
Unsigned 64-bit integer
Logon ID
netlogon.logon_script Logon Script
String
Logon Script
netlogon.logon_time Logon Time
Date/Time stamp
Time for last time this user logged on
netlogon.max_audit_event_count Max Audit Event Count
Unsigned 32-bit integer
Max audit event count
netlogon.max_log_size Max Log Size
Unsigned 32-bit integer
Max Size of log
netlogon.max_size Max Size
Unsigned 32-bit integer
Max Size of database
netlogon.max_working_set_size Max Working Set Size
Unsigned 32-bit integer
netlogon.min_passwd_len Min Password Len
Unsigned 16-bit integer
Minimum length of password
netlogon.min_working_set_size Min Working Set Size
Unsigned 32-bit integer
netlogon.modify_count Modify Count
Unsigned 64-bit integer
How many times the object has been modified
netlogon.neg_flags Neg Flags
Unsigned 32-bit integer
Negotiation Flags
netlogon.next_reference Next Reference
Unsigned 32-bit integer
netlogon.nonpaged_pool_limit Non-Paged Pool Limit
Unsigned 32-bit integer
netlogon.nt_chal_resp NT Chal resp
Byte array
Challenge response for NT authentication
netlogon.nt_owf_pwd NT Pwd
Byte array
NT OWF Password
netlogon.nt_pwd_present NT PWD Present
Unsigned 8-bit integer
Is NT password present for this account?
netlogon.num_dc Num DCs
Unsigned 32-bit integer
Number of domain controllers
netlogon.num_deltas Num Deltas
Unsigned 32-bit integer
Number of SAM Deltas in array
netlogon.num_other_groups Num Other Groups
Unsigned 32-bit integer
netlogon.num_rids Num RIDs
Unsigned 32-bit integer
Number of RIDs
netlogon.num_trusts Num Trusts
Unsigned 32-bit integer
netlogon.oem_info OEM Info
String
OEM Info
netlogon.opnum Operation
Unsigned 16-bit integer
Operation
netlogon.pac.data Pac Data
Byte array
Pac Data
netlogon.pac.size Pac Size
Unsigned 32-bit integer
Size of PacData in bytes
netlogon.page_file_limit Page File Limit
Unsigned 32-bit integer
netlogon.paged_pool_limit Paged Pool Limit
Unsigned 32-bit integer
netlogon.param_ctrl Param Ctrl
Unsigned 32-bit integer
Param ctrl
netlogon.parameters Parameters
String
Parameters
netlogon.parent_index Parent Index
Unsigned 32-bit integer
Parent Index
netlogon.passwd_history_len Passwd History Len
Unsigned 16-bit integer
Length of password history
netlogon.pdc_connection_status PDC Connection Status
Unsigned 32-bit integer
PDC Connection Status
netlogon.principal Principal
String
Principal
netlogon.priv Priv
Unsigned 32-bit integer
netlogon.privilege_control Privilege Control
Unsigned 32-bit integer
netlogon.privilege_entries Privilege Entries
Unsigned 32-bit integer
netlogon.privilege_name Privilege Name
String
netlogon.profile_path Profile Path
String
Profile Path
netlogon.pwd_age PWD Age
Time duration
Time since this users password was changed
netlogon.pwd_can_change_time PWD Can Change
Date/Time stamp
When this users password may be changed
netlogon.pwd_expired PWD Expired
Unsigned 8-bit integer
Whether this password has expired or not
netlogon.pwd_last_set_time PWD Last Set
Date/Time stamp
Last time this users password was changed
netlogon.pwd_must_change_time PWD Must Change
Date/Time stamp
When this users password must be changed
netlogon.rc Return code
Unsigned 32-bit integer
Netlogon return code
netlogon.reference Reference
Unsigned 32-bit integer
netlogon.reserved Reserved
Unsigned 32-bit integer
Reserved
netlogon.resourcegroupcount ResourceGroup count
Unsigned 32-bit integer
Number of Resource Groups
netlogon.restart_state Restart State
Unsigned 16-bit integer
Restart State
netlogon.rid User RID
Unsigned 32-bit integer
netlogon.sec_chan_type Sec Chan Type
Unsigned 16-bit integer
Secure Channel Type
netlogon.secchan.bind.unknown1 Unknown1
Unsigned 32-bit integer
netlogon.secchan.bind.unknown2 Unknown2
Unsigned 32-bit integer
netlogon.secchan.bind_ack.unknown1 Unknown1
Unsigned 32-bit integer
netlogon.secchan.bind_ack.unknown2 Unknown2
Unsigned 32-bit integer
netlogon.secchan.bind_ack.unknown3 Unknown3
Unsigned 32-bit integer
netlogon.secchan.digest Packet Digest
Byte array
Packet Digest
netlogon.secchan.domain Domain
String
netlogon.secchan.host Host
String
netlogon.secchan.nonce Nonce
Byte array
Nonce
netlogon.secchan.seq Sequence No
Byte array
Sequence No
netlogon.secchan.sig Signature
Byte array
Signature
netlogon.secchan.verifier Secure Channel Verifier
No value
Verifier
netlogon.security_information Security Information
Unsigned 32-bit integer
Security Information
netlogon.sensitive_data Data
Byte array
Sensitive Data
netlogon.sensitive_data_flag Sensitive Data
Unsigned 8-bit integer
Sensitive data flag
netlogon.sensitive_data_len Length
Unsigned 32-bit integer
Length of sensitive data
netlogon.serial_number Serial Number
Unsigned 32-bit integer
netlogon.server Server
String
Server
netlogon.site_name Site Name
String
Site Name
netlogon.sync_context Sync Context
Unsigned 32-bit integer
Sync Context
netlogon.system_flags System Flags
Unsigned 32-bit integer
netlogon.tc_connection_status TC Connection Status
Unsigned 32-bit integer
TC Connection Status
netlogon.time_limit Time Limit
Time duration
netlogon.timestamp Timestamp
Date/Time stamp
netlogon.trust.attribs.cross_organization Cross Organization
Boolean
netlogon.trust.attribs.forest_transitive Forest Transitive
Boolean
netlogon.trust.attribs.non_transitive Non Transitive
Boolean
netlogon.trust.attribs.quarantined_domain Quarantined Domain
Boolean
netlogon.trust.attribs.treat_as_external Treat As External
Boolean
netlogon.trust.attribs.uplevel_only Uplevel Only
Boolean
netlogon.trust.attribs.within_forest Within Forest
Boolean
netlogon.trust.flags.in_forest In Forest
Boolean
Whether this domain is a member of the same forest as the servers domain
netlogon.trust.flags.inbound Inbound Trust
Boolean
Inbound trust. Whether the domain directly trusts the queried servers domain
netlogon.trust.flags.native_mode Native Mode
Boolean
Whether the domain is a w2k native mode domain or not
netlogon.trust.flags.outbound Outbound Trust
Boolean
Outbound Trust. Whether the domain is directly trusted by the servers domain
netlogon.trust.flags.primary Primary
Boolean
Whether the domain is the primary domain for the queried server or not
netlogon.trust.flags.tree_root Tree Root
Boolean
Whether the domain is the root of the tree for the queried server
netlogon.trust_attribs Trust Attributes
Unsigned 32-bit integer
Trust Attributes
netlogon.trust_flags Trust Flags
Unsigned 32-bit integer
Trust Flags
netlogon.trust_type Trust Type
Unsigned 32-bit integer
Trust Type
netlogon.trusted_dc Trusted DC
String
Trusted DC
netlogon.unknown.char Unknown char
Unsigned 8-bit integer
Unknown char. If you know what this is, contact wireshark developers.
netlogon.unknown.long Unknown long
Unsigned 32-bit integer
Unknown long. If you know what this is, contact wireshark developers.
netlogon.unknown.short Unknown short
Unsigned 16-bit integer
Unknown short. If you know what this is, contact wireshark developers.
netlogon.unknown_string Unknown string
String
Unknown string. If you know what this is, contact wireshark developers.
netlogon.user.account_control.account_auto_locked Account Auto Locked
Boolean
The user account control account_auto_locked flag
netlogon.user.account_control.account_disabled Account Disabled
Boolean
The user account control account_disabled flag
netlogon.user.account_control.dont_expire_password Dont Expire Password
Boolean
The user account control dont_expire_password flag
netlogon.user.account_control.dont_require_preauth Dont Require PreAuth
Boolean
The user account control DONT_REQUIRE_PREAUTH flag
netlogon.user.account_control.encrypted_text_password_allowed Encrypted Text Password Allowed
Boolean
The user account control encrypted_text_password_allowed flag
netlogon.user.account_control.home_directory_required Home Directory Required
Boolean
The user account control home_directory_required flag
netlogon.user.account_control.interdomain_trust_account Interdomain trust Account
Boolean
The user account control interdomain_trust_account flag
netlogon.user.account_control.mns_logon_account MNS Logon Account
Boolean
The user account control mns_logon_account flag
netlogon.user.account_control.normal_account Normal Account
Boolean
The user account control normal_account flag
netlogon.user.account_control.not_delegated Not Delegated
Boolean
The user account control not_delegated flag
netlogon.user.account_control.password_not_required Password Not Required
Boolean
The user account control password_not_required flag
netlogon.user.account_control.server_trust_account Server Trust Account
Boolean
The user account control server_trust_account flag
netlogon.user.account_control.smartcard_required SmartCard Required
Boolean
The user account control smartcard_required flag
netlogon.user.account_control.temp_duplicate_account Temp Duplicate Account
Boolean
The user account control temp_duplicate_account flag
netlogon.user.account_control.trusted_for_delegation Trusted For Delegation
Boolean
The user account control trusted_for_delegation flag
netlogon.user.account_control.use_des_key_only Use DES Key Only
Boolean
The user account control use_des_key_only flag
netlogon.user.account_control.workstation_trust_account Workstation Trust Account
Boolean
The user account control workstation_trust_account flag
netlogon.user.flags.extra_sids Extra SIDs
Boolean
The user flags EXTRA_SIDS
netlogon.user.flags.resource_groups Resource Groups
Boolean
The user flags RESOURCE_GROUPS
netlogon.user_account_control User Account Control
Unsigned 32-bit integer
User Account control
netlogon.user_flags User Flags
Unsigned 32-bit integer
User flags
netlogon.user_session_key User Session Key
Byte array
User Session Key
netlogon.validation_level Validation Level
Unsigned 16-bit integer
Requested level of validation
netlogon.werr.rc WERR error code
Unsigned 32-bit integer
WERR Error Code
netlogon.wkst.fqdn Wkst FQDN
String
Workstation FQDN
netlogon.wkst.name Wkst Name
String
Workstation Name
netlogon.wkst.os Wkst OS
String
Workstation OS
netlogon.wkst.site_name Wkst Site Name
String
Workstation Site Name
netlogon.wksts Workstations
String
Workstations
pnp.opnum Operation
Unsigned 16-bit integer
Operation
rras.opnum Operation
Unsigned 16-bit integer
Operation
svcctl.access_mask Access Mask
Unsigned 32-bit integer
SVCCTL Access Mask
svcctl.database Database
String
Name of the database to open
svcctl.hnd Context Handle
Byte array
SVCCTL Context handle
svcctl.is_locked IsLocked
Unsigned 32-bit integer
SVCCTL whether the database is locked or not
svcctl.lock Lock
Byte array
SVCCTL Database Lock
svcctl.lock_duration Duration
Unsigned 32-bit integer
SVCCTL number of seconds the database has been locked
svcctl.lock_owner Owner
String
SVCCTL the user that holds the database lock
svcctl.machinename MachineName
String
Name of the host we want to open the database on
svcctl.opnum Operation
Unsigned 16-bit integer
Operation
svcctl.rc Return code
Unsigned 32-bit integer
SVCCTL return code
svcctl.required_size Required Size
Unsigned 32-bit integer
SVCCTL required size of buffer for data to fit
svcctl.resume Resume Handle
Unsigned 32-bit integer
SVCCTL resume handle
svcctl.scm_rights_connect Connect
Boolean
SVCCTL Rights to connect to SCM
svcctl.scm_rights_create_service Create Service
Boolean
SVCCTL Rights to create services
svcctl.scm_rights_enumerate_service Enumerate Service
Boolean
SVCCTL Rights to enumerate services
svcctl.scm_rights_lock Lock
Boolean
SVCCTL Rights to lock database
svcctl.scm_rights_modify_boot_config Modify Boot Config
Boolean
SVCCTL Rights to modify boot config
svcctl.scm_rights_query_lock_status Query Lock Status
Boolean
SVCCTL Rights to query database lock status
svcctl.service_state State
Unsigned 32-bit integer
SVCCTL service state
svcctl.service_type Type
Unsigned 32-bit integer
SVCCTL type of service
svcctl.size Size
Unsigned 32-bit integer
SVCCTL size of buffer
secdescbuf.len Length
Unsigned 32-bit integer
Length
secdescbuf.max_len Max len
Unsigned 32-bit integer
Max len
secdescbuf.undoc Undocumented
Unsigned 32-bit integer
Undocumented
setprinterdataex.data Data
Byte array
Data
setprinterdataex.max_len Max len
Unsigned 32-bit integer
Max len
setprinterdataex.real_len Real len
Unsigned 32-bit integer
Real len
spoolprinterinfo.devmode_ptr Devmode pointer
Unsigned 32-bit integer
Devmode pointer
spoolprinterinfo.secdesc_ptr Secdesc pointer
Unsigned 32-bit integer
Secdesc pointer
spoolss.Datatype Datatype
String
Datatype
spoolss.access_mask.job_admin Job admin
Boolean
Job admin
spoolss.access_mask.printer_admin Printer admin
Boolean
Printer admin
spoolss.access_mask.printer_use Printer use
Boolean
Printer use
spoolss.access_mask.server_admin Server admin
Boolean
Server admin
spoolss.access_mask.server_enum Server enum
Boolean
Server enum
spoolss.access_required Access required
Unsigned 32-bit integer
Access required
spoolss.architecture Architecture name
String
Architecture name
spoolss.buffer.data Buffer data
Byte array
Contents of buffer
spoolss.buffer.size Buffer size
Unsigned 32-bit integer
Size of buffer
spoolss.clientmajorversion Client major version
Unsigned 32-bit integer
Client printer driver major version
spoolss.clientminorversion Client minor version
Unsigned 32-bit integer
Client printer driver minor version
spoolss.configfile Config file
String
Printer name
spoolss.datafile Data file
String
Data file
spoolss.defaultdatatype Default data type
String
Default data type
spoolss.dependentfiles Dependent files
String
Dependent files
spoolss.devicemodectr.size Devicemode ctr size
Unsigned 32-bit integer
Devicemode ctr size
spoolss.devmode Devicemode
Unsigned 32-bit integer
Devicemode
spoolss.devmode.bits_per_pel Bits per pel
Unsigned 32-bit integer
Bits per pel
spoolss.devmode.collate Collate
Unsigned 16-bit integer
Collate
spoolss.devmode.color Color
Unsigned 16-bit integer
Color
spoolss.devmode.copies Copies
Unsigned 16-bit integer
Copies
spoolss.devmode.default_source Default source
Unsigned 16-bit integer
Default source
spoolss.devmode.display_flags Display flags
Unsigned 32-bit integer
Display flags
spoolss.devmode.display_freq Display frequency
Unsigned 32-bit integer
Display frequency
spoolss.devmode.dither_type Dither type
Unsigned 32-bit integer
Dither type
spoolss.devmode.driver_extra Driver extra
Byte array
Driver extra
spoolss.devmode.driver_extra_len Driver extra length
Unsigned 32-bit integer
Driver extra length
spoolss.devmode.driver_version Driver version
Unsigned 16-bit integer
Driver version
spoolss.devmode.duplex Duplex
Unsigned 16-bit integer
Duplex
spoolss.devmode.fields Fields
Unsigned 32-bit integer
Fields
spoolss.devmode.fields.bits_per_pel Bits per pel
Boolean
Bits per pel
spoolss.devmode.fields.collate Collate
Boolean
Collate
spoolss.devmode.fields.color Color
Boolean
Color
spoolss.devmode.fields.copies Copies
Boolean
Copies
spoolss.devmode.fields.default_source Default source
Boolean
Default source
spoolss.devmode.fields.display_flags Display flags
Boolean
Display flags
spoolss.devmode.fields.display_frequency Display frequency
Boolean
Display frequency
spoolss.devmode.fields.dither_type Dither type
Boolean
Dither type
spoolss.devmode.fields.duplex Duplex
Boolean
Duplex
spoolss.devmode.fields.form_name Form name
Boolean
Form name
spoolss.devmode.fields.icm_intent ICM intent
Boolean
ICM intent
spoolss.devmode.fields.icm_method ICM method
Boolean
ICM method
spoolss.devmode.fields.log_pixels Log pixels
Boolean
Log pixels
spoolss.devmode.fields.media_type Media type
Boolean
Media type
spoolss.devmode.fields.nup N-up
Boolean
N-up
spoolss.devmode.fields.orientation Orientation
Boolean
Orientation
spoolss.devmode.fields.panning_height Panning height
Boolean
Panning height
spoolss.devmode.fields.panning_width Panning width
Boolean
Panning width
spoolss.devmode.fields.paper_length Paper length
Boolean
Paper length
spoolss.devmode.fields.paper_size Paper size
Boolean
Paper size
spoolss.devmode.fields.paper_width Paper width
Boolean
Paper width
spoolss.devmode.fields.pels_height Pels height
Boolean
Pels height
spoolss.devmode.fields.pels_width Pels width
Boolean
Pels width
spoolss.devmode.fields.position Position
Boolean
Position
spoolss.devmode.fields.print_quality Print quality
Boolean
Print quality
spoolss.devmode.fields.scale Scale
Boolean
Scale
spoolss.devmode.fields.tt_option TT option
Boolean
TT option
spoolss.devmode.fields.y_resolution Y resolution
Boolean
Y resolution
spoolss.devmode.icm_intent ICM intent
Unsigned 32-bit integer
ICM intent
spoolss.devmode.icm_method ICM method
Unsigned 32-bit integer
ICM method
spoolss.devmode.log_pixels Log pixels
Unsigned 16-bit integer
Log pixels
spoolss.devmode.media_type Media type
Unsigned 32-bit integer
Media type
spoolss.devmode.orientation Orientation
Unsigned 16-bit integer
Orientation
spoolss.devmode.panning_height Panning height
Unsigned 32-bit integer
Panning height
spoolss.devmode.panning_width Panning width
Unsigned 32-bit integer
Panning width
spoolss.devmode.paper_length Paper length
Unsigned 16-bit integer
Paper length
spoolss.devmode.paper_size Paper size
Unsigned 16-bit integer
Paper size
spoolss.devmode.paper_width Paper width
Unsigned 16-bit integer
Paper width
spoolss.devmode.pels_height Pels height
Unsigned 32-bit integer
Pels height
spoolss.devmode.pels_width Pels width
Unsigned 32-bit integer
Pels width
spoolss.devmode.print_quality Print quality
Unsigned 16-bit integer
Print quality
spoolss.devmode.reserved1 Reserved1
Unsigned 32-bit integer
Reserved1
spoolss.devmode.reserved2 Reserved2
Unsigned 32-bit integer
Reserved2
spoolss.devmode.scale Scale
Unsigned 16-bit integer
Scale
spoolss.devmode.size Size
Unsigned 32-bit integer
Size
spoolss.devmode.size2 Size2
Unsigned 16-bit integer
Size2
spoolss.devmode.spec_version Spec version
Unsigned 16-bit integer
Spec version
spoolss.devmode.tt_option TT option
Unsigned 16-bit integer
TT option
spoolss.devmode.y_resolution Y resolution
Unsigned 16-bit integer
Y resolution
spoolss.document Document name
String
Document name
spoolss.driverdate Driver Date
Date/Time stamp
Date of driver creation
spoolss.drivername Driver name
String
Driver name
spoolss.driverpath Driver path
String
Driver path
spoolss.driverversion Driver version
Unsigned 32-bit integer
Printer name
spoolss.elapsed_time Elapsed time
Unsigned 32-bit integer
Elapsed time
spoolss.end_time End time
Unsigned 32-bit integer
End time
spoolss.enumforms.num Num
Unsigned 32-bit integer
Num
spoolss.enumjobs.firstjob First job
Unsigned 32-bit integer
Index of first job to return
spoolss.enumjobs.level Info level
Unsigned 32-bit integer
Info level
spoolss.enumjobs.numjobs Num jobs
Unsigned 32-bit integer
Number of jobs to return
spoolss.enumprinterdata.data_needed Data size needed
Unsigned 32-bit integer
Buffer size needed for printerdata data
spoolss.enumprinterdata.data_offered Data size offered
Unsigned 32-bit integer
Buffer size offered for printerdata data
spoolss.enumprinterdata.enumindex Enum index
Unsigned 32-bit integer
Index for start of enumeration
spoolss.enumprinterdata.value_len Value length
Unsigned 32-bit integer
Size of printerdata value
spoolss.enumprinterdata.value_needed Value size needed
Unsigned 32-bit integer
Buffer size needed for printerdata value
spoolss.enumprinterdata.value_offered Value size offered
Unsigned 32-bit integer
Buffer size offered for printerdata value
spoolss.enumprinterdataex.name Name
String
Name
spoolss.enumprinterdataex.name_len Name len
Unsigned 32-bit integer
Name len
spoolss.enumprinterdataex.name_offset Name offset
Unsigned 32-bit integer
Name offset
spoolss.enumprinterdataex.num_values Num values
Unsigned 32-bit integer
Number of values returned
spoolss.enumprinterdataex.val_dword.high DWORD value (high)
Unsigned 16-bit integer
DWORD value (high)
spoolss.enumprinterdataex.val_dword.low DWORD value (low)
Unsigned 16-bit integer
DWORD value (low)
spoolss.enumprinterdataex.value_len Value len
Unsigned 32-bit integer
Value len
spoolss.enumprinterdataex.value_offset Value offset
Unsigned 32-bit integer
Value offset
spoolss.enumprinterdataex.value_type Value type
Unsigned 32-bit integer
Value type
spoolss.enumprinters.flags Flags
Unsigned 32-bit integer
Flags
spoolss.enumprinters.flags.enum_connections Enum connections
Boolean
Enum connections
spoolss.enumprinters.flags.enum_default Enum default
Boolean
Enum default
spoolss.enumprinters.flags.enum_local Enum local
Boolean
Enum local
spoolss.enumprinters.flags.enum_name Enum name
Boolean
Enum name
spoolss.enumprinters.flags.enum_network Enum network
Boolean
Enum network
spoolss.enumprinters.flags.enum_remote Enum remote
Boolean
Enum remote
spoolss.enumprinters.flags.enum_shared Enum shared
Boolean
Enum shared
spoolss.form Data
Unsigned 32-bit integer
Data
spoolss.form.flags Flags
Unsigned 32-bit integer
Flags
spoolss.form.height Height
Unsigned 32-bit integer
Height
spoolss.form.horiz Horizontal
Unsigned 32-bit integer
Horizontal
spoolss.form.left Left margin
Unsigned 32-bit integer
Left
spoolss.form.level Level
Unsigned 32-bit integer
Level
spoolss.form.name Name
String
Name
spoolss.form.top Top
Unsigned 32-bit integer
Top
spoolss.form.unknown Unknown
Unsigned 32-bit integer
Unknown
spoolss.form.vert Vertical
Unsigned 32-bit integer
Vertical
spoolss.form.width Width
Unsigned 32-bit integer
Width
spoolss.hardwareid Hardware ID
String
Hardware Identification Information
spoolss.helpfile Help file
String
Help file
spoolss.hnd Context handle
Byte array
SPOOLSS policy handle
spoolss.job.bytesprinted Job bytes printed
Unsigned 32-bit integer
Job bytes printed
spoolss.job.id Job ID
Unsigned 32-bit integer
Job identification number
spoolss.job.pagesprinted Job pages printed
Unsigned 32-bit integer
Job pages printed
spoolss.job.position Job position
Unsigned 32-bit integer
Job position
spoolss.job.priority Job priority
Unsigned 32-bit integer
Job priority
spoolss.job.size Job size
Unsigned 32-bit integer
Job size
spoolss.job.status Job status
Unsigned 32-bit integer
Job status
spoolss.job.status.blocked Blocked
Boolean
Blocked
spoolss.job.status.deleted Deleted
Boolean
Deleted
spoolss.job.status.deleting Deleting
Boolean
Deleting
spoolss.job.status.error Error
Boolean
Error
spoolss.job.status.offline Offline
Boolean
Offline
spoolss.job.status.paperout Paperout
Boolean
Paperout
spoolss.job.status.paused Paused
Boolean
Paused
spoolss.job.status.printed Printed
Boolean
Printed
spoolss.job.status.printing Printing
Boolean
Printing
spoolss.job.status.spooling Spooling
Boolean
Spooling
spoolss.job.status.user_intervention User intervention
Boolean
User intervention
spoolss.job.totalbytes Job total bytes
Unsigned 32-bit integer
Job total bytes
spoolss.job.totalpages Job total pages
Unsigned 32-bit integer
Job total pages
spoolss.keybuffer.data Key Buffer data
Byte array
Contents of buffer
spoolss.keybuffer.size Key Buffer size
Unsigned 32-bit integer
Size of buffer
spoolss.machinename Machine name
String
Machine name
spoolss.majordriverversion Major Driver Version
Unsigned 32-bit integer
Driver Version High
spoolss.mfgname Mfgname
String
Manufacturer Name
spoolss.minordriverversion Minor Driver Version
Unsigned 32-bit integer
Driver Version Low
spoolss.monitorname Monitor name
String
Monitor name
spoolss.needed Needed
Unsigned 32-bit integer
Size of buffer required for request
spoolss.notify_field Field
Unsigned 16-bit integer
Field
spoolss.notify_info.count Count
Unsigned 32-bit integer
Count
spoolss.notify_info.flags Flags
Unsigned 32-bit integer
Flags
spoolss.notify_info.version Version
Unsigned 32-bit integer
Version
spoolss.notify_info_data.buffer Buffer
Unsigned 32-bit integer
Buffer
spoolss.notify_info_data.buffer.data Buffer data
Byte array
Buffer data
spoolss.notify_info_data.buffer.len Buffer length
Unsigned 32-bit integer
Buffer length
spoolss.notify_info_data.bufsize Buffer size
Unsigned 32-bit integer
Buffer size
spoolss.notify_info_data.count Count
Unsigned 32-bit integer
Count
spoolss.notify_info_data.jobid Job Id
Unsigned 32-bit integer
Job Id
spoolss.notify_info_data.type Type
Unsigned 16-bit integer
Type
spoolss.notify_info_data.value1 Value1
Unsigned 32-bit integer
Value1
spoolss.notify_info_data.value2 Value2
Unsigned 32-bit integer
Value2
spoolss.notify_option.count Count
Unsigned 32-bit integer
Count
spoolss.notify_option.reserved1 Reserved1
Unsigned 16-bit integer
Reserved1
spoolss.notify_option.reserved2 Reserved2
Unsigned 32-bit integer
Reserved2
spoolss.notify_option.reserved3 Reserved3
Unsigned 32-bit integer
Reserved3
spoolss.notify_option.type Type
Unsigned 16-bit integer
Type
spoolss.notify_option_data.count Count
Unsigned 32-bit integer
Count
spoolss.notify_options.count Count
Unsigned 32-bit integer
Count
spoolss.notify_options.flags Flags
Unsigned 32-bit integer
Flags
spoolss.notify_options.version Version
Unsigned 32-bit integer
Version
spoolss.notifyname Notify name
String
Notify name
spoolss.oemrul OEM URL
String
OEM URL - Website of Vendor
spoolss.offered Offered
Unsigned 32-bit integer
Size of buffer offered in this request
spoolss.offset Offset
Unsigned 32-bit integer
Offset of data
spoolss.opnum Operation
Unsigned 16-bit integer
Operation
spoolss.outputfile Output file
String
Output File
spoolss.padding Padding
Unsigned 32-bit integer
Some padding - conveys no semantic information
spoolss.parameters Parameters
String
Parameters
spoolss.portname Port name
String
Port name
spoolss.previousdrivernames Previous Driver Names
String
Previous Driver Names
spoolss.printer.action Action
Unsigned 32-bit integer
Action
spoolss.printer.averageppm Average PPM
Unsigned 32-bit integer
Average PPM
spoolss.printer.build_version Build version
Unsigned 16-bit integer
Build version
spoolss.printer.c_setprinter Csetprinter
Unsigned 32-bit integer
Csetprinter
spoolss.printer.changeid Change id
Unsigned 32-bit integer
Change id
spoolss.printer.cjobs CJobs
Unsigned 32-bit integer
CJobs
spoolss.printer.default_priority Default Priority
Unsigned 32-bit integer
Default Priority
spoolss.printer.flags Flags
Unsigned 32-bit integer
Flags
spoolss.printer.global_counter Global counter
Unsigned 32-bit integer
Global counter
spoolss.printer.guid GUID
String
GUID
spoolss.printer.jobs Jobs
Unsigned 32-bit integer
Jobs
spoolss.printer.major_version Major version
Unsigned 16-bit integer
Major version
spoolss.printer.printer_errors Printer errors
Unsigned 32-bit integer
Printer errors
spoolss.printer.priority Priority
Unsigned 32-bit integer
Priority
spoolss.printer.session_ctr Session counter
Unsigned 32-bit integer
Sessopm counter
spoolss.printer.total_bytes Total bytes
Unsigned 32-bit integer
Total bytes
spoolss.printer.total_jobs Total jobs
Unsigned 32-bit integer
Total jobs
spoolss.printer.total_pages Total pages
Unsigned 32-bit integer
Total pages
spoolss.printer.unknown11 Unknown 11
Unsigned 32-bit integer
Unknown 11
spoolss.printer.unknown13 Unknown 13
Unsigned 32-bit integer
Unknown 13
spoolss.printer.unknown14 Unknown 14
Unsigned 32-bit integer
Unknown 14
spoolss.printer.unknown15 Unknown 15
Unsigned 32-bit integer
Unknown 15
spoolss.printer.unknown16 Unknown 16
Unsigned 32-bit integer
Unknown 16
spoolss.printer.unknown18 Unknown 18
Unsigned 32-bit integer
Unknown 18
spoolss.printer.unknown20 Unknown 20
Unsigned 32-bit integer
Unknown 20
spoolss.printer.unknown22 Unknown 22
Unsigned 16-bit integer
Unknown 22
spoolss.printer.unknown23 Unknown 23
Unsigned 16-bit integer
Unknown 23
spoolss.printer.unknown24 Unknown 24
Unsigned 16-bit integer
Unknown 24
spoolss.printer.unknown25 Unknown 25
Unsigned 16-bit integer
Unknown 25
spoolss.printer.unknown26 Unknown 26
Unsigned 16-bit integer
Unknown 26
spoolss.printer.unknown27 Unknown 27
Unsigned 16-bit integer
Unknown 27
spoolss.printer.unknown28 Unknown 28
Unsigned 16-bit integer
Unknown 28
spoolss.printer.unknown29 Unknown 29
Unsigned 16-bit integer
Unknown 29
spoolss.printer.unknown7 Unknown 7
Unsigned 32-bit integer
Unknown 7
spoolss.printer.unknown8 Unknown 8
Unsigned 32-bit integer
Unknown 8
spoolss.printer.unknown9 Unknown 9
Unsigned 32-bit integer
Unknown 9
spoolss.printer_attributes Attributes
Unsigned 32-bit integer
Attributes
spoolss.printer_attributes.default Default (9x/ME only)
Boolean
Default
spoolss.printer_attributes.direct Direct
Boolean
Direct
spoolss.printer_attributes.do_complete_first Do complete first
Boolean
Do complete first
spoolss.printer_attributes.enable_bidi Enable bidi (9x/ME only)
Boolean
Enable bidi
spoolss.printer_attributes.enable_devq Enable devq
Boolean
Enable evq
spoolss.printer_attributes.hidden Hidden
Boolean
Hidden
spoolss.printer_attributes.keep_printed_jobs Keep printed jobs
Boolean
Keep printed jobs
spoolss.printer_attributes.local Local
Boolean
Local
spoolss.printer_attributes.network Network
Boolean
Network
spoolss.printer_attributes.published Published
Boolean
Published
spoolss.printer_attributes.queued Queued
Boolean
Queued
spoolss.printer_attributes.raw_only Raw only
Boolean
Raw only
spoolss.printer_attributes.shared Shared
Boolean
Shared
spoolss.printer_attributes.work_offline Work offline (9x/ME only)
Boolean
Work offline
spoolss.printer_local Printer local
Unsigned 32-bit integer
Printer local
spoolss.printer_status Status
Unsigned 32-bit integer
Status
spoolss.printercomment Printer comment
String
Printer comment
spoolss.printerdata Data
Unsigned 32-bit integer
Data
spoolss.printerdata.data Data
Byte array
Printer data
spoolss.printerdata.data.dword DWORD data
Unsigned 32-bit integer
DWORD data
spoolss.printerdata.data.sz String data
String
String data
spoolss.printerdata.key Key
String
Printer data key
spoolss.printerdata.size Size
Unsigned 32-bit integer
Printer data size
spoolss.printerdata.type Type
Unsigned 32-bit integer
Printer data type
spoolss.printerdata.val_sz SZ value
String
SZ value
spoolss.printerdata.value Value
String
Printer data value
spoolss.printerdesc Printer description
String
Printer description
spoolss.printerlocation Printer location
String
Printer location
spoolss.printername Printer name
String
Printer name
spoolss.printprocessor Print processor
String
Print processor
spoolss.provider Provider
String
Provider of Driver
spoolss.rc Return code
Unsigned 32-bit integer
SPOOLSS return code
spoolss.replyopenprinter.unk0 Unknown 0
Unsigned 32-bit integer
Unknown 0
spoolss.replyopenprinter.unk1 Unknown 1
Unsigned 32-bit integer
Unknown 1
spoolss.returned Returned
Unsigned 32-bit integer
Number of items returned
spoolss.rffpcnex.flags RFFPCNEX flags
Unsigned 32-bit integer
RFFPCNEX flags
spoolss.rffpcnex.flags.add_driver Add driver
Boolean
Add driver
spoolss.rffpcnex.flags.add_form Add form
Boolean
Add form
spoolss.rffpcnex.flags.add_job Add job
Boolean
Add job
spoolss.rffpcnex.flags.add_port Add port
Boolean
Add port
spoolss.rffpcnex.flags.add_printer Add printer
Boolean
Add printer
spoolss.rffpcnex.flags.add_processor Add processor
Boolean
Add processor
spoolss.rffpcnex.flags.configure_port Configure port
Boolean
Configure port
spoolss.rffpcnex.flags.delete_driver Delete driver
Boolean
Delete driver
spoolss.rffpcnex.flags.delete_form Delete form
Boolean
Delete form
spoolss.rffpcnex.flags.delete_job Delete job
Boolean
Delete job
spoolss.rffpcnex.flags.delete_port Delete port
Boolean
Delete port
spoolss.rffpcnex.flags.delete_printer Delete printer
Boolean
Delete printer
spoolss.rffpcnex.flags.delete_processor Delete processor
Boolean
Delete processor
spoolss.rffpcnex.flags.failed_connection_printer Failed printer connection
Boolean
Failed printer connection
spoolss.rffpcnex.flags.set_driver Set driver
Boolean
Set driver
spoolss.rffpcnex.flags.set_form Set form
Boolean
Set form
spoolss.rffpcnex.flags.set_job Set job
Boolean
Set job
spoolss.rffpcnex.flags.set_printer Set printer
Boolean
Set printer
spoolss.rffpcnex.flags.timeout Timeout
Boolean
Timeout
spoolss.rffpcnex.flags.write_job Write job
Boolean
Write job
spoolss.rffpcnex.options Options
Unsigned 32-bit integer
RFFPCNEX options
spoolss.routerreplyprinter.changeid Change id
Unsigned 32-bit integer
Change id
spoolss.routerreplyprinter.condition Condition
Unsigned 32-bit integer
Condition
spoolss.routerreplyprinter.unknown1 Unknown1
Unsigned 32-bit integer
Unknown1
spoolss.rrpcn.changehigh Change high
Unsigned 32-bit integer
Change high
spoolss.rrpcn.changelow Change low
Unsigned 32-bit integer
Change low
spoolss.rrpcn.unk0 Unknown 0
Unsigned 32-bit integer
Unknown 0
spoolss.rrpcn.unk1 Unknown 1
Unsigned 32-bit integer
Unknown 1
spoolss.servermajorversion Server major version
Unsigned 32-bit integer
Server printer driver major version
spoolss.serverminorversion Server minor version
Unsigned 32-bit integer
Server printer driver minor version
spoolss.servername Server name
String
Server name
spoolss.setjob.cmd Set job command
Unsigned 32-bit integer
Printer data name
spoolss.setpfile Separator file
String
Separator file
spoolss.setprinter_cmd Command
Unsigned 32-bit integer
Command
spoolss.sharename Share name
String
Share name
spoolss.start_time Start time
Unsigned 32-bit integer
Start time
spoolss.textstatus Text status
String
Text status
spoolss.time.day Day
Unsigned 32-bit integer
Day
spoolss.time.dow Day of week
Unsigned 32-bit integer
Day of week
spoolss.time.hour Hour
Unsigned 32-bit integer
Hour
spoolss.time.minute Minute
Unsigned 32-bit integer
Minute
spoolss.time.month Month
Unsigned 32-bit integer
Month
spoolss.time.msec Millisecond
Unsigned 32-bit integer
Millisecond
spoolss.time.second Second
Unsigned 32-bit integer
Second
spoolss.time.year Year
Unsigned 32-bit integer
Year
spoolss.userlevel.build Build
Unsigned 32-bit integer
Build
spoolss.userlevel.client Client
String
Client
spoolss.userlevel.major Major
Unsigned 32-bit integer
Major
spoolss.userlevel.minor Minor
Unsigned 32-bit integer
Minor
spoolss.userlevel.processor Processor
Unsigned 32-bit integer
Processor
spoolss.userlevel.size Size
Unsigned 32-bit integer
Size
spoolss.userlevel.user User
String
User
spoolss.username User name
String
User name
spoolss.writeprinter.numwritten Num written
Unsigned 32-bit integer
Number of bytes written
tapi.hnd Context Handle
Byte array
Context handle
tapi.opnum Operation
Unsigned 16-bit integer
tapi.rc Return code
Unsigned 32-bit integer
TAPI return code
tapi.unknown.bytes Unknown bytes
Byte array
Unknown bytes. If you know what this is, contact wireshark developers.
tapi.unknown.long Unknown long
Unsigned 32-bit integer
Unknown long. If you know what this is, contact wireshark developers.
tapi.unknown.string Unknown string
String
Unknown string. If you know what this is, contact wireshark developers.
browser.backup.count Backup List Requested Count
Unsigned 8-bit integer
Backup list requested count
browser.backup.server Backup Server
String
Backup Server Name
browser.backup.token Backup Request Token
Unsigned 32-bit integer
Backup requested/response token
browser.browser_to_promote Browser to Promote
String
Browser to Promote
browser.command Command
Unsigned 8-bit integer
Browse command opcode
browser.comment Host Comment
String
Server Comment
browser.election.criteria Election Criteria
Unsigned 32-bit integer
Election Criteria
browser.election.desire Election Desire
Unsigned 8-bit integer
Election Desire
browser.election.desire.backup Backup
Boolean
Is this a backup server
browser.election.desire.domain_master Domain Master
Boolean
Is this a domain master
browser.election.desire.master Master
Boolean
Is this a master server
browser.election.desire.nt NT
Boolean
Is this a NT server
browser.election.desire.standby Standby
Boolean
Is this a standby server?
browser.election.desire.wins WINS
Boolean
Is this a WINS server
browser.election.os Election OS
Unsigned 8-bit integer
Election OS
browser.election.os.nts NT Server
Boolean
Is this a NT Server?
browser.election.os.ntw NT Workstation
Boolean
Is this a NT Workstation?
browser.election.os.wfw WfW
Boolean
Is this a WfW host?
browser.election.revision Election Revision
Unsigned 16-bit integer
Election Revision
browser.election.version Election Version
Unsigned 8-bit integer
Election Version
browser.mb_server Master Browser Server Name
String
BROWSE Master Browser Server Name
browser.os_major OS Major Version
Unsigned 8-bit integer
Operating System Major Version
browser.os_minor OS Minor Version
Unsigned 8-bit integer
Operating System Minor Version
browser.period Update Periodicity
Unsigned 32-bit integer
Update Periodicity in ms
browser.proto_major Browser Protocol Major Version
Unsigned 8-bit integer
Browser Protocol Major Version
browser.proto_minor Browser Protocol Minor Version
Unsigned 8-bit integer
Browser Protocol Minor Version
browser.reset_cmd ResetBrowserState Command
Unsigned 8-bit integer
ResetBrowserState Command
browser.reset_cmd.demote Demote LMB
Boolean
Demote LMB
browser.reset_cmd.flush Flush Browse List
Boolean
Flush Browse List
browser.reset_cmd.stop_lmb Stop Being LMB
Boolean
Stop Being LMB
browser.response_computer_name Response Computer Name
String
Response Computer Name
browser.server Server Name
String
BROWSE Server Name
browser.server_type Server Type
Unsigned 32-bit integer
Server Type Flags
browser.server_type.apple Apple
Boolean
Is This An Apple Server ?
browser.server_type.backup_controller Backup Controller
Boolean
Is This A Backup Domain Controller?
browser.server_type.browser.backup Backup Browser
Boolean
Is This A Backup Browser?
browser.server_type.browser.domain_master Domain Master Browser
Boolean
Is This A Domain Master Browser?
browser.server_type.browser.master Master Browser
Boolean
Is This A Master Browser?
browser.server_type.browser.potential Potential Browser
Boolean
Is This A Potential Browser?
browser.server_type.dialin Dialin
Boolean
Is This A Dialin Server?
browser.server_type.domain_controller Domain Controller
Boolean
Is This A Domain Controller?
browser.server_type.domainenum Domain Enum
Boolean
Is This A Domain Enum request?
browser.server_type.local Local
Boolean
Is This A Local List Only request?
browser.server_type.member Member
Boolean
Is This A Domain Member Server?
browser.server_type.novell Novell
Boolean
Is This A Novell Server?
browser.server_type.nts NT Server
Boolean
Is This A NT Server?
browser.server_type.ntw NT Workstation
Boolean
Is This A NT Workstation?
browser.server_type.osf OSF
Boolean
Is This An OSF server ?
browser.server_type.print Print
Boolean
Is This A Print Server?
browser.server_type.server Server
Boolean
Is This A Server?
browser.server_type.sql SQL
Boolean
Is This A SQL Server?
browser.server_type.time Time Source
Boolean
Is This A Time Source?
browser.server_type.vms VMS
Boolean
Is This A VMS Server?
browser.server_type.w95 Windows 95+
Boolean
Is This A Windows 95 or above server?
browser.server_type.wfw WfW
Boolean
Is This A Windows For Workgroups Server?
browser.server_type.workstation Workstation
Boolean
Is This A Workstation?
browser.server_type.xenix Xenix
Boolean
Is This A Xenix Server?
browser.sig Signature
Unsigned 16-bit integer
Signature Constant
browser.unused Unused flags
Unsigned 8-bit integer
Unused/unknown flags
browser.update_count Update Count
Unsigned 8-bit integer
Browse Update Count
browser.uptime Uptime
Unsigned 32-bit integer
Server uptime in ms
lanman.aux_data_desc Auxiliary Data Descriptor
String
LANMAN Auxiliary Data Descriptor
lanman.available_bytes Available Bytes
Unsigned 16-bit integer
LANMAN Number of Available Bytes
lanman.available_count Available Entries
Unsigned 16-bit integer
LANMAN Number of Available Entries
lanman.bad_pw_count Bad Password Count
Unsigned 16-bit integer
LANMAN Number of incorrect passwords entered since last successful login
lanman.code_page Code Page
Unsigned 16-bit integer
LANMAN Code Page
lanman.comment Comment
String
LANMAN Comment
lanman.computer_name Computer Name
String
LANMAN Computer Name
lanman.continuation_from Continuation from message in frame
Unsigned 32-bit integer
This is a LANMAN continuation from the message in the frame in question
lanman.convert Convert
Unsigned 16-bit integer
LANMAN Convert
lanman.country_code Country Code
Unsigned 16-bit integer
LANMAN Country Code
lanman.current_time Current Date/Time
Date/Time stamp
LANMAN Current date and time, in seconds since 00:00:00, January 1, 1970
lanman.day Day
Unsigned 8-bit integer
LANMAN Current day
lanman.duration Duration of Session
Time duration
LANMAN Number of seconds the user was logged on
lanman.entry_count Entry Count
Unsigned 16-bit integer
LANMAN Number of Entries
lanman.enumeration_domain Enumeration Domain
String
LANMAN Domain in which to enumerate servers
lanman.full_name Full Name
String
LANMAN Full Name
lanman.function_code Function Code
Unsigned 16-bit integer
LANMAN Function Code/Command
lanman.group_name Group Name
String
LANMAN Group Name
lanman.homedir Home Directory
String
LANMAN Home Directory
lanman.hour Hour
Unsigned 8-bit integer
LANMAN Current hour
lanman.hundredths Hundredths of a second
Unsigned 8-bit integer
LANMAN Current hundredths of a second
lanman.kickoff_time Kickoff Date/Time
Date/Time stamp
LANMAN Date and time when user will be logged off
lanman.last_entry Last Entry
String
LANMAN last reported entry of the enumerated servers
lanman.last_logoff Last Logoff Date/Time
Date/Time stamp
LANMAN Date and time of last logoff
lanman.last_logon Last Logon Date/Time
Date/Time stamp
LANMAN Date and time of last logon
lanman.level Detail Level
Unsigned 16-bit integer
LANMAN Detail Level
lanman.logoff_code Logoff Code
Unsigned 16-bit integer
LANMAN Logoff Code
lanman.logoff_time Logoff Date/Time
Date/Time stamp
LANMAN Date and time when user should log off
lanman.logon_code Logon Code
Unsigned 16-bit integer
LANMAN Logon Code
lanman.logon_domain Logon Domain
String
LANMAN Logon Domain
lanman.logon_hours Logon Hours
Byte array
LANMAN Logon Hours
lanman.logon_server Logon Server
String
LANMAN Logon Server
lanman.max_storage Max Storage
Unsigned 32-bit integer
LANMAN Max Storage
lanman.minute Minute
Unsigned 8-bit integer
LANMAN Current minute
lanman.month Month
Unsigned 8-bit integer
LANMAN Current month
lanman.msecs Milliseconds
Unsigned 32-bit integer
LANMAN Milliseconds since arbitrary time in the past (typically boot time)
lanman.new_password New Password
Byte array
LANMAN New Password (encrypted)
lanman.num_logons Number of Logons
Unsigned 16-bit integer
LANMAN Number of Logons
lanman.old_password Old Password
Byte array
LANMAN Old Password (encrypted)
lanman.operator_privileges Operator Privileges
Unsigned 32-bit integer
LANMAN Operator Privileges
lanman.other_domains Other Domains
String
LANMAN Other Domains
lanman.param_desc Parameter Descriptor
String
LANMAN Parameter Descriptor
lanman.parameters Parameters
String
LANMAN Parameters
lanman.password Password
String
LANMAN Password
lanman.password_age Password Age
Time duration
LANMAN Time since user last changed his/her password
lanman.password_can_change Password Can Change
Date/Time stamp
LANMAN Date and time when user can change their password
lanman.password_must_change Password Must Change
Date/Time stamp
LANMAN Date and time when user must change their password
lanman.privilege_level Privilege Level
Unsigned 16-bit integer
LANMAN Privilege Level
lanman.recv_buf_len Receive Buffer Length
Unsigned 16-bit integer
LANMAN Receive Buffer Length
lanman.reserved Reserved
Unsigned 32-bit integer
LANMAN Reserved
lanman.ret_desc Return Descriptor
String
LANMAN Return Descriptor
lanman.script_path Script Path
String
LANMAN Pathname of user's logon script
lanman.second Second
Unsigned 8-bit integer
LANMAN Current second
lanman.send_buf_len Send Buffer Length
Unsigned 16-bit integer
LANMAN Send Buffer Length
lanman.server.comment Server Comment
String
LANMAN Server Comment
lanman.server.major Major Version
Unsigned 8-bit integer
LANMAN Server Major Version
lanman.server.minor Minor Version
Unsigned 8-bit integer
LANMAN Server Minor Version
lanman.server.name Server Name
String
LANMAN Name of Server
lanman.share.comment Share Comment
String
LANMAN Share Comment
lanman.share.current_uses Share Current Uses
Unsigned 16-bit integer
LANMAN Current connections to share
lanman.share.max_uses Share Max Uses
Unsigned 16-bit integer
LANMAN Max connections allowed to share
lanman.share.name Share Name
String
LANMAN Name of Share
lanman.share.password Share Password
String
LANMAN Share Password
lanman.share.path Share Path
String
LANMAN Share Path
lanman.share.permissions Share Permissions
Unsigned 16-bit integer
LANMAN Permissions on share
lanman.share.type Share Type
Unsigned 16-bit integer
LANMAN Type of Share
lanman.status Status
Unsigned 16-bit integer
LANMAN Return status
lanman.timeinterval Time Interval
Unsigned 16-bit integer
LANMAN .0001 second units per clock tick
lanman.tzoffset Time Zone Offset
Signed 16-bit integer
LANMAN Offset of time zone from GMT, in minutes
lanman.units_per_week Units Per Week
Unsigned 16-bit integer
LANMAN Units Per Week
lanman.user_comment User Comment
String
LANMAN User Comment
lanman.user_name User Name
String
LANMAN User Name
lanman.ustruct_size Length of UStruct
Unsigned 16-bit integer
LANMAN UStruct Length
lanman.weekday Weekday
Unsigned 8-bit integer
LANMAN Current day of the week
lanman.workstation_domain Workstation Domain
String
LANMAN Workstation Domain
lanman.workstation_major Workstation Major Version
Unsigned 8-bit integer
LANMAN Workstation Major Version
lanman.workstation_minor Workstation Minor Version
Unsigned 8-bit integer
LANMAN Workstation Minor Version
lanman.workstation_name Workstation Name
String
LANMAN Workstation Name
lanman.workstations Workstations
String
LANMAN Workstations
lanman.year Year
Unsigned 16-bit integer
LANMAN Current year
smb_netlogon.client_site_name Client Site Name
String
SMB NETLOGON Client Site Name
smb_netlogon.command Command
Unsigned 8-bit integer
SMB NETLOGON Command
smb_netlogon.computer_name Computer Name
String
SMB NETLOGON Computer Name
smb_netlogon.date_time Date/Time
Unsigned 32-bit integer
SMB NETLOGON Date/Time
smb_netlogon.db_count DB Count
Unsigned 32-bit integer
SMB NETLOGON DB Count
smb_netlogon.db_index Database Index
Unsigned 32-bit integer
SMB NETLOGON Database Index
smb_netlogon.domain.guid Domain GUID
Byte array
Domain GUID
smb_netlogon.domain_dns_name Domain DNS Name
String
SMB NETLOGON Domain DNS Name
smb_netlogon.domain_name Domain Name
String
SMB NETLOGON Domain Name
smb_netlogon.domain_sid_size Domain SID Size
Unsigned 32-bit integer
SMB NETLOGON Domain SID Size
smb_netlogon.flags.autolock Autolock
Boolean
SMB NETLOGON Account Autolock
smb_netlogon.flags.enabled Enabled
Boolean
SMB NETLOGON Is This Account Enabled
smb_netlogon.flags.expire Expire
Boolean
SMB NETLOGON Will Account Expire
smb_netlogon.flags.homedir Homedir
Boolean
SMB NETLOGON Homedir Required
smb_netlogon.flags.interdomain Interdomain Trust
Boolean
SMB NETLOGON Inter-domain Trust Account
smb_netlogon.flags.mns MNS User
Boolean
SMB NETLOGON MNS User Account
smb_netlogon.flags.normal Normal User
Boolean
SMB NETLOGON Normal User Account
smb_netlogon.flags.password Password
Boolean
SMB NETLOGON Password Required
smb_netlogon.flags.server Server Trust
Boolean
SMB NETLOGON Server Trust Account
smb_netlogon.flags.temp_dup Temp Duplicate User
Boolean
SMB NETLOGON Temp Duplicate User Account
smb_netlogon.flags.workstation Workstation Trust
Boolean
SMB NETLOGON Workstation Trust Account
smb_netlogon.forest_dns_name Forest DNS Name
String
SMB NETLOGON Forest DNS Name
smb_netlogon.large_serial Large Serial Number
Unsigned 64-bit integer
SMB NETLOGON Large Serial Number
smb_netlogon.lm_token LM Token
Unsigned 16-bit integer
SMB NETLOGON LM Token
smb_netlogon.lmnt_token LMNT Token
Unsigned 16-bit integer
SMB NETLOGON LMNT Token
smb_netlogon.low_serial Low Serial Number
Unsigned 32-bit integer
SMB NETLOGON Low Serial Number
smb_netlogon.mailslot_name Mailslot Name
String
SMB NETLOGON Mailslot Name
smb_netlogon.major_version Workstation Major Version
Unsigned 8-bit integer
SMB NETLOGON Workstation Major Version
smb_netlogon.minor_version Workstation Minor Version
Unsigned 8-bit integer
SMB NETLOGON Workstation Minor Version
smb_netlogon.nt_date_time NT Date/Time
Date/Time stamp
SMB NETLOGON NT Date/Time
smb_netlogon.nt_version NT Version
Unsigned 32-bit integer
SMB NETLOGON NT Version
smb_netlogon.os_version Workstation OS Version
Unsigned 8-bit integer
SMB NETLOGON Workstation OS Version
smb_netlogon.pdc_name PDC Name
String
SMB NETLOGON PDC Name
smb_netlogon.pulse Pulse
Unsigned 32-bit integer
SMB NETLOGON Pulse
smb_netlogon.random Random
Unsigned 32-bit integer
SMB NETLOGON Random
smb_netlogon.request_count Request Count
Unsigned 16-bit integer
SMB NETLOGON Request Count
smb_netlogon.script_name Script Name
String
SMB NETLOGON Script Name
smb_netlogon.server_dns_name Server DNS Name
String
SMB NETLOGON Server DNS Name
smb_netlogon.server_ip Server IP
IPv4 address
Server IP Address
smb_netlogon.server_name Server Name
String
SMB NETLOGON Server Name
smb_netlogon.server_site_name Server Site Name
String
SMB NETLOGON Server Site Name
smb_netlogon.unicode_computer_name Unicode Computer Name
String
SMB NETLOGON Unicode Computer Name
smb_netlogon.unicode_pdc_name Unicode PDC Name
String
SMB NETLOGON Unicode PDC Name
smb_netlogon.unknown Unknown
Unsigned 8-bit integer
Unknown
smb_netlogon.update Update Type
Unsigned 16-bit integer
SMB NETLOGON Update Type
smb_netlogon.user_name User Name
String
SMB NETLOGON User Name
mip.ack.i Inform
Boolean
Inform Mobile Node
mip.ack.reserved Reserved
Unsigned 8-bit integer
mip.ack.reserved2 Reserved
Unsigned 16-bit integer
mip.auth.auth Authenticator
Byte array
Authenticator.
mip.auth.spi SPI
Unsigned 32-bit integer
Authentication Header Security Parameter Index.
mip.b Broadcast Datagrams
Boolean
Broadcast Datagrams requested
mip.coa Care of Address
IPv4 address
Care of Address.
mip.code Reply Code
Unsigned 8-bit integer
Mobile IP Reply code.
mip.d Co-located Care-of Address
Boolean
MN using Co-located Care-of address
mip.ext.auth.subtype Gen Auth Ext SubType
Unsigned 8-bit integer
Mobile IP Auth Extension Sub Type.
mip.ext.dynha.ha DynHA Home Agent
IPv4 address
Dynamic Home Agent IP Address
mip.ext.dynha.subtype DynHA Ext SubType
Unsigned 8-bit integer
Dynamic HA Extension Sub-type
mip.ext.len Extension Length
Unsigned 16-bit integer
Mobile IP Extension Length.
mip.ext.msgstr.subtype MsgStr Ext SubType
Unsigned 8-bit integer
Message String Extension Sub-type
mip.ext.msgstr.text MsgStr Text
String
Message String Extension Text
mip.ext.rev.flags Rev Ext Flags
Unsigned 16-bit integer
Revocation Support Extension Flags
mip.ext.rev.i 'I' bit Support
Boolean
Agent surevidpports Inform bit in Revocation
mip.ext.rev.reserved Reserved
Unsigned 16-bit integer
mip.ext.rev.tstamp Timestamp
Unsigned 32-bit integer
Revocation Timestamp of Sending Agent
mip.ext.type Extension Type
Unsigned 8-bit integer
Mobile IP Extension Type.
mip.ext.utrp.code UDP TunRep Code
Unsigned 8-bit integer
UDP Tunnel Reply Code
mip.ext.utrp.f Rep Forced
Boolean
HA wants to Force UDP Tunneling
mip.ext.utrp.flags UDP TunRep Ext Flags
Unsigned 16-bit integer
UDP Tunnel Request Extension Flags
mip.ext.utrp.keepalive Keepalive Interval
Unsigned 16-bit integer
NAT Keepalive Interval
mip.ext.utrp.reserved Reserved
Unsigned 16-bit integer
mip.ext.utrp.subtype UDP TunRep Ext SubType
Unsigned 8-bit integer
UDP Tunnel Reply Extension Sub-type
mip.ext.utrq.encaptype UDP Encap Type
Unsigned 8-bit integer
UDP Encapsulation Type
mip.ext.utrq.f Req Forced
Boolean
MN wants to Force UDP Tunneling
mip.ext.utrq.flags UDP TunReq Ext Flags
Unsigned 8-bit integer
UDP Tunnel Request Extension Flags
mip.ext.utrq.r FA Registration Required
Boolean
Registration through FA Required
mip.ext.utrq.reserved1 Reserved 1
Unsigned 8-bit integer
mip.ext.utrq.reserved2 Reserved 2
Unsigned 8-bit integer
mip.ext.utrq.reserved3 Reserved 3
Unsigned 16-bit integer
mip.ext.utrq.subtype UDP TunReq Ext SubType
Unsigned 8-bit integer
UDP Tunnel Request Extension Sub-type
mip.extension Extension
Byte array
Extension
mip.flags Flags
Unsigned 8-bit integer
mip.g GRE
Boolean
MN wants GRE encapsulation
mip.haaddr Home Agent
IPv4 address
Home agent IP Address.
mip.homeaddr Home Address
IPv4 address
Mobile Node's home address.
mip.ident Identification
Byte array
MN Identification.
mip.life Lifetime
Unsigned 16-bit integer
Mobile IP Lifetime.
mip.m Minimal Encapsulation
Boolean
MN wants Minimal encapsulation
mip.nai NAI
String
NAI
mip.nattt.nexthdr NATTT NextHeader
Unsigned 8-bit integer
NAT Traversal Tunnel Next Header.
mip.nattt.reserved Reserved
Unsigned 16-bit integer
mip.rev.a Home Agent
Boolean
Revocation sent by Home Agent
mip.rev.fda Foreign Domain Address
IPv4 address
Revocation Foreign Domain IP Address
mip.rev.hda Home Domain Address
IPv4 address
Revocation Home Domain IP Address
mip.rev.i Inform
Boolean
Inform Mobile Node
mip.rev.reserved Reserved
Unsigned 8-bit integer
mip.rev.reserved2 Reserved
Unsigned 16-bit integer
mip.revid Revocation Identifier
Unsigned 32-bit integer
Revocation Identifier of Initiating Agent
mip.s Simultaneous Bindings
Boolean
Simultaneous Bindings Allowed
mip.t Reverse Tunneling
Boolean
Reverse tunneling requested
mip.type Message Type
Unsigned 8-bit integer
Mobile IP Message type.
mip.v Van Jacobson
Boolean
Van Jacobson
mip.x Reserved
Boolean
Reserved
fmip6.fback.k_flag Key Management Compatibility (K) flag
Boolean
Key Management Compatibility (K) flag
fmip6.fback.lifetime Lifetime
Unsigned 16-bit integer
Lifetime
fmip6.fback.seqnr Sequence number
Unsigned 16-bit integer
Sequence number
fmip6.fback.status Status
Unsigned 8-bit integer
Fast Binding Acknowledgement status
fmip6.fbu.a_flag Acknowledge (A) flag
Boolean
Acknowledge (A) flag
fmip6.fbu.h_flag Home Registration (H) flag
Boolean
Home Registration (H) flag
fmip6.fbu.k_flag Key Management Compatibility (K) flag
Boolean
Key Management Compatibility (K) flag
fmip6.fbu.l_flag Link-Local Compatibility (L) flag
Boolean
Home Registration (H) flag
fmip6.fbu.lifetime Lifetime
Unsigned 16-bit integer
Lifetime
fmip6.fbu.seqnr Sequence number
Unsigned 16-bit integer
Sequence number
mip6.acoa.acoa Alternate care-of address
IPv6 address
Alternate Care-of address
mip6.ba.k_flag Key Management Compatibility (K) flag
Boolean
Key Management Compatibility (K) flag
mip6.ba.lifetime Lifetime
Unsigned 16-bit integer
Lifetime
mip6.ba.seqnr Sequence number
Unsigned 16-bit integer
Sequence number
mip6.ba.status Status
Unsigned 8-bit integer
Binding Acknowledgement status
mip6.bad.auth Authenticator
Byte array
Authenticator
mip6.be.haddr Home Address
IPv6 address
Home Address
mip6.be.status Status
Unsigned 8-bit integer
Binding Error status
mip6.bra.interval Refresh interval
Unsigned 16-bit integer
Refresh interval
mip6.bu.a_flag Acknowledge (A) flag
Boolean
Acknowledge (A) flag
mip6.bu.h_flag Home Registration (H) flag
Boolean
Home Registration (H) flag
mip6.bu.k_flag Key Management Compatibility (K) flag
Boolean
Key Management Compatibility (K) flag
mip6.bu.l_flag Link-Local Compatibility (L) flag
Boolean
Home Registration (H) flag
mip6.bu.lifetime Lifetime
Unsigned 16-bit integer
Lifetime
mip6.bu.m_flag MAP Registration Compatibility (M) flag
Boolean
MAP Registration Compatibility (M) flag
mip6.bu.p_flag Proxy Registration (P) flag
Boolean
Proxy Registration (P) flag
mip6.bu.seqnr Sequence number
Unsigned 16-bit integer
Sequence number
mip6.cot.cookie Care-of Init Cookie
Unsigned 64-bit integer
Care-of Init Cookie
mip6.cot.nindex Care-of Nonce Index
Unsigned 16-bit integer
Care-of Nonce Index
mip6.cot.token Care-of Keygen Token
Unsigned 64-bit integer
Care-of Keygen Token
mip6.coti.cookie Care-of Init Cookie
Unsigned 64-bit integer
Care-of Init Cookie
mip6.csum Checksum
Unsigned 16-bit integer
Header Checksum
mip6.hlen Header length
Unsigned 8-bit integer
Header length
mip6.hot.cookie Home Init Cookie
Unsigned 64-bit integer
Home Init Cookie
mip6.hot.nindex Home Nonce Index
Unsigned 16-bit integer
Home Nonce Index
mip6.hot.token Home Keygen Token
Unsigned 64-bit integer
Home Keygen Token
mip6.hoti.cookie Home Init Cookie
Unsigned 64-bit integer
Home Init Cookie
mip6.lla.optcode Option-Code
Unsigned 8-bit integer
Option-Code
mip6.mhtype Mobility Header Type
Unsigned 8-bit integer
Mobility Header Type
mip6.mnid.subtype Subtype
Unsigned 8-bit integer
Subtype
mip6.ni.cni Care-of nonce index
Unsigned 16-bit integer
Care-of nonce index
mip6.ni.hni Home nonce index
Unsigned 16-bit integer
Home nonce index
mip6.proto Payload protocol
Unsigned 8-bit integer
Payload protocol
mip6.reserved Reserved
Unsigned 8-bit integer
Reserved
nemo.ba.r_flag Mobile Router (R) flag
Boolean
Mobile Router (R) flag
nemo.bu.r_flag Mobile Router (R) flag
Boolean
Mobile Router (R) flag
nemo.mnp.mnp Mobile Network Prefix
IPv6 address
Mobile Network Prefix
nemo.mnp.pfl Mobile Network Prefix Length
Unsigned 8-bit integer
Mobile Network Prefix Length
pmip6.timestamp Timestamp
Byte array
Timestamp
proxy.ba.p_flag Proxy Registration (P) flag
Boolean
Proxy Registration (P) flag
modbus_tcp.and_mask AND mask
Unsigned 16-bit integer
modbus_tcp.bit_cnt bit count
Unsigned 16-bit integer
modbus_tcp.byte_cnt byte count
Unsigned 8-bit integer
modbus_tcp.byte_cnt_16 byte count (16-bit)
Unsigned 8-bit integer
modbus_tcp.exception_code exception code
Unsigned 8-bit integer
modbus_tcp.func_code function code
Unsigned 8-bit integer
modbus_tcp.len length
Unsigned 16-bit integer
modbus_tcp.or_mask OR mask
Unsigned 16-bit integer
modbus_tcp.prot_id protocol identifier
Unsigned 16-bit integer
modbus_tcp.read_reference_num read reference number
Unsigned 16-bit integer
modbus_tcp.read_word_cnt read word count
Unsigned 16-bit integer
modbus_tcp.reference_num reference number
Unsigned 16-bit integer
modbus_tcp.reference_num_32 reference number (32 bit)
Unsigned 32-bit integer
modbus_tcp.reference_type reference type
Unsigned 8-bit integer
modbus_tcp.trans_id transaction identifier
Unsigned 16-bit integer
modbus_tcp.unit_id unit identifier
Unsigned 8-bit integer
modbus_tcp.word_cnt word count
Unsigned 16-bit integer
modbus_tcp.write_reference_num write reference number
Unsigned 16-bit integer
modbus_tcp.write_word_cnt write word count
Unsigned 16-bit integer
netsync.checksum Checksum
Unsigned 32-bit integer
Checksum
netsync.cmd.anonymous.collection Collection
String
Collection
netsync.cmd.anonymous.role Role
Unsigned 8-bit integer
Role
netsync.cmd.auth.collection Collection
String
Collection
netsync.cmd.auth.id ID
Byte array
ID
netsync.cmd.auth.nonce1 Nonce 1
Byte array
Nonce 1
netsync.cmd.auth.nonce2 Nonce 2
Byte array
Nonce 2
netsync.cmd.auth.role Role
Unsigned 8-bit integer
Role
netsync.cmd.auth.sig Signature
Byte array
Signature
netsync.cmd.confirm.signature Signature
Byte array
Signature
netsync.cmd.data.compressed Compressed
Unsigned 8-bit integer
Compressed
netsync.cmd.data.id ID
Byte array
ID
netsync.cmd.data.payload Payload
Byte array
Payload
netsync.cmd.data.type Type
Unsigned 8-bit integer
Type
netsync.cmd.delta.base_id Base ID
Byte array
Base ID
netsync.cmd.delta.compressed Compressed
Unsigned 8-bit integer
Compressed
netsync.cmd.delta.ident_id Ident ID
Byte array
Ident ID
netsync.cmd.delta.payload Payload
Byte array
Payload
netsync.cmd.delta.type Type
Unsigned 8-bit integer
Type
netsync.cmd.done.level Level
Unsigned 32-bit integer
Level
netsync.cmd.done.type Type
Unsigned 8-bit integer
Type
netsync.cmd.error.msg Message
String
Message
netsync.cmd.hello.key Key
Byte array
Key
netsync.cmd.hello.keyname Key Name
String
Key Name
netsync.cmd.nonce Nonce
Byte array
Nonce
netsync.cmd.nonexistant.id ID
Byte array
ID
netsync.cmd.nonexistant.type Type
Unsigned 8-bit integer
Type
netsync.cmd.refine.tree_node Tree Node
Byte array
Tree Node
netsync.cmd.send_data.id ID
Byte array
ID
netsync.cmd.send_data.type Type
Unsigned 8-bit integer
Type
netsync.cmd.send_delta.base_id Base ID
Byte array
Base ID
netsync.cmd.send_delta.ident_id Ident ID
Byte array
Ident ID
netsync.cmd.send_delta.type Type
Unsigned 8-bit integer
Type
netsync.command Command
Unsigned 8-bit integer
Command
netsync.data Data
Byte array
Data
netsync.size Size
Unsigned 32-bit integer
Size
netsync.version Version
Unsigned 8-bit integer
Version
mount.dump.directory Directory
String
Directory
mount.dump.entry Mount List Entry
No value
Mount List Entry
mount.dump.hostname Hostname
String
Hostname
mount.export.directory Directory
String
Directory
mount.export.entry Export List Entry
No value
Export List Entry
mount.export.group Group
String
Group
mount.export.groups Groups
No value
Groups
mount.export.has_options Has options
Unsigned 32-bit integer
Has options
mount.export.options Options
String
Options
mount.flavor Flavor
Unsigned 32-bit integer
Flavor
mount.flavors Flavors
Unsigned 32-bit integer
Flavors
mount.path Path
String
Path
mount.pathconf.link_max Maximum number of links to a file
Unsigned 32-bit integer
Maximum number of links allowed to a file
mount.pathconf.mask Reply error/status bits
Unsigned 16-bit integer
Bit mask with error and status bits
mount.pathconf.mask.chown_restricted CHOWN_RESTRICTED
Boolean
mount.pathconf.mask.error_all ERROR_ALL
Boolean
mount.pathconf.mask.error_link_max ERROR_LINK_MAX
Boolean
mount.pathconf.mask.error_max_canon ERROR_MAX_CANON
Boolean
mount.pathconf.mask.error_max_input ERROR_MAX_INPUT
Boolean
mount.pathconf.mask.error_name_max ERROR_NAME_MAX
Boolean
mount.pathconf.mask.error_path_max ERROR_PATH_MAX
Boolean
mount.pathconf.mask.error_pipe_buf ERROR_PIPE_BUF
Boolean
mount.pathconf.mask.error_vdisable ERROR_VDISABLE
Boolean
mount.pathconf.mask.no_trunc NO_TRUNC
Boolean
mount.pathconf.max_canon Maximum terminal input line length
Unsigned 16-bit integer
Max tty input line length
mount.pathconf.max_input Terminal input buffer size
Unsigned 16-bit integer
Terminal input buffer size
mount.pathconf.name_max Maximum file name length
Unsigned 16-bit integer
Maximum file name length
mount.pathconf.path_max Maximum path name length
Unsigned 16-bit integer
Maximum path name length
mount.pathconf.pipe_buf Pipe buffer size
Unsigned 16-bit integer
Maximum amount of data that can be written atomically to a pipe
mount.pathconf.vdisable_char VDISABLE character
Unsigned 8-bit integer
Character value to disable a terminal special character
mount.procedure_sgi_v1 SGI V1 procedure
Unsigned 32-bit integer
SGI V1 Procedure
mount.procedure_v1 V1 Procedure
Unsigned 32-bit integer
V1 Procedure
mount.procedure_v2 V2 Procedure
Unsigned 32-bit integer
V2 Procedure
mount.procedure_v3 V3 Procedure
Unsigned 32-bit integer
V3 Procedure
mount.status Status
Unsigned 32-bit integer
Status
mount.statvfs.f_basetype Type
String
File system type
mount.statvfs.f_bavail Blocks Available
Unsigned 32-bit integer
Available fragment sized blocks
mount.statvfs.f_bfree Blocks Free
Unsigned 32-bit integer
Free fragment sized blocks
mount.statvfs.f_blocks Blocks
Unsigned 32-bit integer
Total fragment sized blocks
mount.statvfs.f_bsize Block size
Unsigned 32-bit integer
File system block size
mount.statvfs.f_favail Files Available
Unsigned 32-bit integer
Available files/inodes
mount.statvfs.f_ffree Files Free
Unsigned 32-bit integer
Free files/inodes
mount.statvfs.f_files Files
Unsigned 32-bit integer
Total files/inodes
mount.statvfs.f_flag Flags
Unsigned 32-bit integer
Flags bit-mask
mount.statvfs.f_flag.st_grpid ST_GRPID
Boolean
mount.statvfs.f_flag.st_local ST_LOCAL
Boolean
mount.statvfs.f_flag.st_nodev ST_NODEV
Boolean
mount.statvfs.f_flag.st_nosuid ST_NOSUID
Boolean
mount.statvfs.f_flag.st_notrunc ST_NOTRUNC
Boolean
mount.statvfs.f_flag.st_rdonly ST_RDONLY
Boolean
mount.statvfs.f_frsize Fragment size
Unsigned 32-bit integer
File system fragment size
mount.statvfs.f_fsid File system ID
Unsigned 32-bit integer
File system identifier
mount.statvfs.f_fstr File system specific string
Byte array
File system specific string
mount.statvfs.f_namemax Maximum file name length
Unsigned 32-bit integer
Maximum file name length
id3v1 ID3v1
No value
id3v2 ID3v2
No value
mpeg-audio.album album
String
mpeg_audio.OCTET_STRING_SIZE_30
mpeg-audio.artist artist
String
mpeg_audio.OCTET_STRING_SIZE_30
mpeg-audio.bitrate bitrate
Unsigned 32-bit integer
mpeg_audio.INTEGER_0_15
mpeg-audio.channel_mode channel-mode
Unsigned 32-bit integer
mpeg_audio.T_channel_mode
mpeg-audio.comment comment
String
mpeg_audio.OCTET_STRING_SIZE_28
mpeg-audio.copyright copyright
Boolean
mpeg_audio.BOOLEAN
mpeg-audio.emphasis emphasis
Unsigned 32-bit integer
mpeg_audio.T_emphasis
mpeg-audio.frequency frequency
Unsigned 32-bit integer
mpeg_audio.INTEGER_0_3
mpeg-audio.genre genre
Unsigned 32-bit integer
mpeg_audio.T_genre
mpeg-audio.layer layer
Unsigned 32-bit integer
mpeg_audio.T_layer
mpeg-audio.mode_extension mode-extension
Unsigned 32-bit integer
mpeg_audio.INTEGER_0_3
mpeg-audio.must_be_zero must-be-zero
Unsigned 32-bit integer
mpeg_audio.INTEGER_0_255
mpeg-audio.original original
Boolean
mpeg_audio.BOOLEAN
mpeg-audio.padding padding
Boolean
mpeg_audio.BOOLEAN
mpeg-audio.private private
Boolean
mpeg_audio.BOOLEAN
mpeg-audio.protection protection
Unsigned 32-bit integer
mpeg_audio.T_protection
mpeg-audio.sync sync
Byte array
mpeg_audio.BIT_STRING_SIZE_11
mpeg-audio.tag tag
String
mpeg_audio.OCTET_STRING_SIZE_3
mpeg-audio.title title
String
mpeg_audio.OCTET_STRING_SIZE_30
mpeg-audio.track track
Unsigned 32-bit integer
mpeg_audio.INTEGER_0_255
mpeg-audio.version version
Unsigned 32-bit integer
mpeg_audio.T_version
mpeg-audio.year year
String
mpeg_audio.OCTET_STRING_SIZE_4
mpeg.audio.data Data
Byte array
mpeg.audio.padbytes Padding
Byte array
mpls.bottom MPLS Bottom Of Label Stack
Unsigned 8-bit integer
mpls.cw.control MPLS Control Channel
Unsigned 8-bit integer
First nibble
mpls.cw.res Reserved
Unsigned 16-bit integer
Reserved
mpls.exp MPLS Experimental Bits
Unsigned 8-bit integer
mpls.label MPLS Label
Unsigned 32-bit integer
mpls.oam.bip16 BIP16
Unsigned 16-bit integer
BIP16
mpls.oam.defect_location Defect Location (AS)
Unsigned 32-bit integer
Defect Location
mpls.oam.defect_type Defect Type
Unsigned 16-bit integer
Defect Type
mpls.oam.frequency Frequency
Unsigned 8-bit integer
Frequency of probe injection
mpls.oam.function_type Function Type
Unsigned 8-bit integer
Function Type codepoint
mpls.oam.ttsi Trail Termination Source Identifier
Unsigned 32-bit integer
Trail Termination Source Identifier
mpls.ttl MPLS TTL
Unsigned 8-bit integer
mrdisc.adv_int Advertising Interval
Unsigned 8-bit integer
MRDISC Advertising Interval in seconds
mrdisc.checksum Checksum
Unsigned 16-bit integer
MRDISC Checksum
mrdisc.checksum_bad Bad Checksum
Boolean
Bad MRDISC Checksum
mrdisc.num_opts Number Of Options
Unsigned 16-bit integer
MRDISC Number Of Options
mrdisc.opt_len Length
Unsigned 8-bit integer
MRDISC Option Length
mrdisc.option Option
Unsigned 8-bit integer
MRDISC Option Type
mrdisc.option_data Data
Byte array
MRDISC Unknown Option Data
mrdisc.options Options
No value
MRDISC Options
mrdisc.query_int Query Interval
Unsigned 16-bit integer
MRDISC Query Interval
mrdisc.rob_var Robustness Variable
Unsigned 16-bit integer
MRDISC Robustness Variable
mrdisc.type Type
Unsigned 8-bit integer
MRDISC Packet Type
msdp.length Length
Unsigned 16-bit integer
MSDP TLV Length
msdp.not.entry_count Entry Count
Unsigned 24-bit integer
Entry Count in Notification messages
msdp.not.error Error Code
Unsigned 8-bit integer
Indicates the type of Notification
msdp.not.error_sub Error subode
Unsigned 8-bit integer
Error subcode
msdp.not.ipv4 IPv4 address
IPv4 address
Group/RP/Source address in Notification messages
msdp.not.o Open-bit
Unsigned 8-bit integer
If clear, the connection will be closed
msdp.not.res Reserved
Unsigned 24-bit integer
Reserved field in Notification messages
msdp.not.sprefix_len Sprefix len
Unsigned 8-bit integer
Source prefix length in Notification messages
msdp.sa.entry_count Entry Count
Unsigned 8-bit integer
MSDP SA Entry Count
msdp.sa.group_addr Group Address
IPv4 address
The group address the active source has sent data to
msdp.sa.reserved Reserved
Unsigned 24-bit integer
Transmitted as zeros and ignored by a receiver
msdp.sa.rp_addr RP Address
IPv4 address
Active source's RP address
msdp.sa.sprefix_len Sprefix len
Unsigned 8-bit integer
The route prefix length associated with source address
msdp.sa.src_addr Source Address
IPv4 address
The IP address of the active source
msdp.sa_req.group_addr Group Address
IPv4 address
The group address the MSDP peer is requesting
msdp.sa_req.res Reserved
Unsigned 8-bit integer
Transmitted as zeros and ignored by a receiver
msdp.type Type
Unsigned 8-bit integer
MSDP TLV type
mikey. Envelope Data (PKE)
No value
mikey.cert Certificate (CERT)
No value
mikey.cert.data Certificate
Byte array
mikey.cert.len Certificate len
Unsigned 16-bit integer
mikey.cert.type Certificate type
Unsigned 8-bit integer
mikey.chash CHASH
No value
mikey.cs_count #CS
Unsigned 8-bit integer
mikey.cs_id_map_type CS ID map type
Unsigned 8-bit integer
mikey.csb_id CSB ID
Unsigned 32-bit integer
mikey.dh DH Data (DH)
No value
mikey.dh.group DH-Group
Unsigned 8-bit integer
mikey.dh.kv KV
Unsigned 8-bit integer
mikey.dh.reserv Reserv
Unsigned 8-bit integer
mikey.dh.value DH-Value
Byte array
mikey.err Error (ERR)
No value
mikey.general_ext General Ext.
No value
mikey.hdr Common Header (HDR)
No value
mikey.id ID
No value
mikey.id.data ID
String
mikey.id.len ID len
Unsigned 16-bit integer
mikey.id.type ID type
Unsigned 8-bit integer
mikey.kemac Key Data Transport (KEMAC)
No value
mikey.kemac.encr_alg Encr alg
Unsigned 8-bit integer
mikey.kemac.encr_data Encr data
Byte array
mikey.kemac.encr_data_len Encr data len
Unsigned 16-bit integer
mikey.kemac.mac MAC
Byte array
mikey.kemac.mac_alg Mac alg
Unsigned 8-bit integer
mikey.key_data Key data
No value
mikey.key_data.kv KV
Unsigned 8-bit integer
mikey.key_data.len Key data len
Unsigned 16-bit integer
mikey.key_data.type Type
Unsigned 8-bit integer
mikey.next_payload Next Payload
Unsigned 8-bit integer
mikey.payload Payload
String
mikey.pke.c C
Unsigned 16-bit integer
mikey.pke.data Data
Byte array
mikey.pke.len Data len
Unsigned 16-bit integer
mikey.prf_func PRF func
Unsigned 8-bit integer
mikey.rand RAND
No value
mikey.rand.data RAND
Byte array
mikey.rand.len RAND len
Unsigned 8-bit integer
mikey.sign Signature (SIGN)
No value
mikey.sign.data Signature
Byte array
mikey.sign.len Signature len
Unsigned 16-bit integer
mikey.sign.type Signature type
Unsigned 16-bit integer
mikey.sp Security Policy (SP)
No value
mikey.sp.auth_alg Authentication algorithm
Unsigned 8-bit integer
mikey.sp.auth_key_len Session Auth. key length
Unsigned 8-bit integer
mikey.sp.auth_tag_len Authentication tag length
Unsigned 8-bit integer
mikey.sp.encr_alg Encryption algorithm
Unsigned 8-bit integer
mikey.sp.encr_len Session Encr. key length
Unsigned 8-bit integer
mikey.sp.fec Sender's FEC order
Unsigned 8-bit integer
mikey.sp.kd_rate Key derivation rate
Unsigned 8-bit integer
mikey.sp.no Policy No
Unsigned 8-bit integer
mikey.sp.param Policy param
Byte array
mikey.sp.param.len Length
Unsigned 8-bit integer
mikey.sp.param.type Type
Unsigned 8-bit integer
mikey.sp.param_len Policy param length
Unsigned 16-bit integer
mikey.sp.patam.value Value
Byte array
mikey.sp.prf SRTP Pseudo Random Function
Unsigned 8-bit integer
mikey.sp.proto_type Protocol type
Unsigned 8-bit integer
mikey.sp.salt_len Session Salt key length
Unsigned 8-bit integer
mikey.sp.srtcp_encr SRTCP encryption
Unsigned 8-bit integer
mikey.sp.srtp_auth SRTP authentication
Unsigned 8-bit integer
mikey.sp.srtp_encr SRTP encryption
Unsigned 8-bit integer
mikey.sp.srtp_prefix SRTP prefix length
Unsigned 8-bit integer
mikey.srtp_id SRTP ID
No value
mikey.srtp_id.policy_no Policy No
Unsigned 8-bit integer
mikey.srtp_id.roc ROC
Unsigned 32-bit integer
mikey.srtp_id.ssrc SSRC
Unsigned 32-bit integer
mikey.t Timestamp (T)
No value
mikey.t.ntp NTP timestamp
String
mikey.t.ts_type TS type
Unsigned 8-bit integer
mikey.type Data Type
Unsigned 8-bit integer
mikey.v Ver msg (V)
No value
mikey.v.auth_alg Auth alg
Unsigned 8-bit integer
mikey.v.ver_data Ver data
Byte array
mikey.version Version
Unsigned 8-bit integer
mpls_echo.flag_sbz Reserved
Unsigned 16-bit integer
MPLS ECHO Reserved Flags
mpls_echo.flag_v Validate FEC Stack
Boolean
MPLS ECHO Validate FEC Stack Flag
mpls_echo.flags Global Flags
Unsigned 16-bit integer
MPLS ECHO Global Flags
mpls_echo.mbz MBZ
Unsigned 16-bit integer
MPLS ECHO Must be Zero
mpls_echo.msg_type Message Type
Unsigned 8-bit integer
MPLS ECHO Message Type
mpls_echo.reply_mode Reply Mode
Unsigned 8-bit integer
MPLS ECHO Reply Mode
mpls_echo.return_code Return Code
Unsigned 8-bit integer
MPLS ECHO Return Code
mpls_echo.return_subcode Return Subcode
Unsigned 8-bit integer
MPLS ECHO Return Subcode
mpls_echo.sender_handle Sender's Handle
Unsigned 32-bit integer
MPLS ECHO Sender's Handle
mpls_echo.sequence Sequence Number
Unsigned 32-bit integer
MPLS ECHO Sequence Number
mpls_echo.timestamp_rec Timestamp Received
Byte array
MPLS ECHO Timestamp Received
mpls_echo.timestamp_sent Timestamp Sent
Byte array
MPLS ECHO Timestamp Sent
mpls_echo.tlv.ds_map.addr_type Address Type
Unsigned 8-bit integer
MPLS ECHO TLV Downstream Map Address Type
mpls_echo.tlv.ds_map.depth Depth Limit
Unsigned 8-bit integer
MPLS ECHO TLV Downstream Map Depth Limit
mpls_echo.tlv.ds_map.ds_ip Downstream IP Address
IPv4 address
MPLS ECHO TLV Downstream Map IP Address
mpls_echo.tlv.ds_map.ds_ipv6 Downstream IPv6 Address
IPv6 address
MPLS ECHO TLV Downstream Map IPv6 Address
mpls_echo.tlv.ds_map.flag_i Interface and Label Stack Request
Boolean
MPLS ECHO TLV Downstream Map I-Flag
mpls_echo.tlv.ds_map.flag_n Treat as Non-IP Packet
Boolean
MPLS ECHO TLV Downstream Map N-Flag
mpls_echo.tlv.ds_map.flag_res MBZ
Unsigned 8-bit integer
MPLS ECHO TLV Downstream Map Reserved Flags
mpls_echo.tlv.ds_map.hash_type Multipath Type
Unsigned 8-bit integer
MPLS ECHO TLV Downstream Map Multipath Type
mpls_echo.tlv.ds_map.if_index Upstream Interface Index
Unsigned 32-bit integer
MPLS ECHO TLV Downstream Map Interface Index
mpls_echo.tlv.ds_map.int_ip Downstream Interface Address
IPv4 address
MPLS ECHO TLV Downstream Map Interface Address
mpls_echo.tlv.ds_map.int_ipv6 Downstream Interface IPv6 Address
IPv6 address
MPLS ECHO TLV Downstream Map Interface IPv6 Address
mpls_echo.tlv.ds_map.mp_bos Downstream BOS
Unsigned 8-bit integer
MPLS ECHO TLV Downstream Map Downstream BOS
mpls_echo.tlv.ds_map.mp_exp Downstream Experimental
Unsigned 8-bit integer
MPLS ECHO TLV Downstream Map Downstream Experimental
mpls_echo.tlv.ds_map.mp_label Downstream Label
Unsigned 24-bit integer
MPLS ECHO TLV Downstream Map Downstream Label
mpls_echo.tlv.ds_map.mp_proto Downstream Protocol
Unsigned 8-bit integer
MPLS ECHO TLV Downstream Map Downstream Protocol
mpls_echo.tlv.ds_map.mtu MTU
Unsigned 16-bit integer
MPLS ECHO TLV Downstream Map MTU
mpls_echo.tlv.ds_map.multi_len Multipath Length
Unsigned 16-bit integer
MPLS ECHO TLV Downstream Map Multipath Length
mpls_echo.tlv.ds_map.res DS Flags
Unsigned 8-bit integer
MPLS ECHO TLV Downstream Map DS Flags
mpls_echo.tlv.ds_map_mp.ip IP Address
IPv4 address
MPLS ECHO TLV Downstream Map Multipath IP Address
mpls_echo.tlv.ds_map_mp.ip_high IP Address High
IPv4 address
MPLS ECHO TLV Downstream Map Multipath High IP Address
mpls_echo.tlv.ds_map_mp.ip_low IP Address Low
IPv4 address
MPLS ECHO TLV Downstream Map Multipath Low IP Address
mpls_echo.tlv.ds_map_mp.mask Mask
Byte array
MPLS ECHO TLV Downstream Map Multipath Mask
mpls_echo.tlv.ds_map_mp.value Multipath Value
Byte array
MPLS ECHO TLV Multipath Value
mpls_echo.tlv.errored.type Errored TLV Type
Unsigned 16-bit integer
MPLS ECHO TLV Errored TLV Type
mpls_echo.tlv.fec.bgp_ipv4 IPv4 Prefix
IPv4 address
MPLS ECHO TLV FEC Stack BGP IPv4
mpls_echo.tlv.fec.bgp_len Prefix Length
Unsigned 8-bit integer
MPLS ECHO TLV FEC Stack BGP Prefix Length
mpls_echo.tlv.fec.bgp_nh BGP Next Hop
IPv4 address
MPLS ECHO TLV FEC Stack BGP Next Hop
mpls_echo.tlv.fec.gen_ipv4 IPv4 Prefix
IPv4 address
MPLS ECHO TLV FEC Stack Generic IPv4
mpls_echo.tlv.fec.gen_ipv4_mask Prefix Length
Unsigned 8-bit integer
MPLS ECHO TLV FEC Stack Generic IPv4 Prefix Length
mpls_echo.tlv.fec.gen_ipv6 IPv6 Prefix
IPv6 address
MPLS ECHO TLV FEC Stack Generic IPv6
mpls_echo.tlv.fec.gen_ipv6_mask Prefix Length
Unsigned 8-bit integer
MPLS ECHO TLV FEC Stack Generic IPv6 Prefix Length
mpls_echo.tlv.fec.l2cid_encap Encapsulation
Unsigned 16-bit integer
MPLS ECHO TLV FEC Stack L2CID Encapsulation
mpls_echo.tlv.fec.l2cid_mbz MBZ
Unsigned 16-bit integer
MPLS ECHO TLV FEC Stack L2CID MBZ
mpls_echo.tlv.fec.l2cid_remote Remote PE Address
IPv4 address
MPLS ECHO TLV FEC Stack L2CID Remote
mpls_echo.tlv.fec.l2cid_sender Sender's PE Address
IPv4 address
MPLS ECHO TLV FEC Stack L2CID Sender
mpls_echo.tlv.fec.l2cid_vcid VC ID
Unsigned 32-bit integer
MPLS ECHO TLV FEC Stack L2CID VCID
mpls_echo.tlv.fec.ldp_ipv4 IPv4 Prefix
IPv4 address
MPLS ECHO TLV FEC Stack LDP IPv4
mpls_echo.tlv.fec.ldp_ipv4_mask Prefix Length
Unsigned 8-bit integer
MPLS ECHO TLV FEC Stack LDP IPv4 Prefix Length
mpls_echo.tlv.fec.ldp_ipv6 IPv6 Prefix
IPv6 address
MPLS ECHO TLV FEC Stack LDP IPv6
mpls_echo.tlv.fec.ldp_ipv6_mask Prefix Length
Unsigned 8-bit integer
MPLS ECHO TLV FEC Stack LDP IPv6 Prefix Length
mpls_echo.tlv.fec.len Length
Unsigned 16-bit integer
MPLS ECHO TLV FEC Stack Length
mpls_echo.tlv.fec.nil_label Label
Unsigned 24-bit integer
MPLS ECHO TLV FEC Stack NIL Label
mpls_echo.tlv.fec.rsvp_ip_lsp_id LSP ID
Unsigned 16-bit integer
MPLS ECHO TLV FEC Stack RSVP LSP ID
mpls_echo.tlv.fec.rsvp_ip_mbz1 Must Be Zero
Unsigned 16-bit integer
MPLS ECHO TLV FEC Stack RSVP MBZ
mpls_echo.tlv.fec.rsvp_ip_mbz2 Must Be Zero
Unsigned 16-bit integer
MPLS ECHO TLV FEC Stack RSVP MBZ
mpls_echo.tlv.fec.rsvp_ip_tun_id Tunnel ID
Unsigned 16-bit integer
MPLS ECHO TLV FEC Stack RSVP Tunnel ID
mpls_echo.tlv.fec.rsvp_ipv4_ep IPv4 Tunnel endpoint address
IPv4 address
MPLS ECHO TLV FEC Stack RSVP IPv4 Tunnel Endpoint Address
mpls_echo.tlv.fec.rsvp_ipv4_ext_tun_id Extended Tunnel ID
Unsigned 32-bit integer
MPLS ECHO TLV FEC Stack RSVP IPv4 Extended Tunnel ID
mpls_echo.tlv.fec.rsvp_ipv4_sender IPv4 Tunnel sender address
IPv4 address
MPLS ECHO TLV FEC Stack RSVP IPv4 Sender
mpls_echo.tlv.fec.rsvp_ipv6_ep IPv6 Tunnel endpoint address
IPv6 address
MPLS ECHO TLV FEC Stack RSVP IPv6 Tunnel Endpoint Address
mpls_echo.tlv.fec.rsvp_ipv6_ext_tun_id Extended Tunnel ID
Byte array
MPLS ECHO TLV FEC Stack RSVP IPv6 Extended Tunnel ID
mpls_echo.tlv.fec.rsvp_ipv6_sender IPv6 Tunnel sender address
IPv6 address
MPLS ECHO TLV FEC Stack RSVP IPv4 Sender
mpls_echo.tlv.fec.type Type
Unsigned 16-bit integer
MPLS ECHO TLV FEC Stack Type
mpls_echo.tlv.fec.value Value
Byte array
MPLS ECHO TLV FEC Stack Value
mpls_echo.tlv.ilso_ipv4.addr Downstream IPv4 Address
IPv4 address
MPLS ECHO TLV Interface and Label Stack Address
mpls_echo.tlv.ilso_ipv4.bos BOS
Unsigned 8-bit integer
MPLS ECHO TLV Interface and Label Stack BOS
mpls_echo.tlv.ilso_ipv4.exp Exp
Unsigned 8-bit integer
MPLS ECHO TLV Interface and Label Stack Exp
mpls_echo.tlv.ilso_ipv4.int_addr Downstream Interface Address
IPv4 address
MPLS ECHO TLV Interface and Label Stack Address
mpls_echo.tlv.ilso_ipv4.label Label
Unsigned 24-bit integer
MPLS ECHO TLV Interface and Label Stack Label
mpls_echo.tlv.ilso_ipv4.ttl TTL
Unsigned 8-bit integer
MPLS ECHO TLV Interface and Label Stack TTL
mpls_echo.tlv.ilso_ipv6.addr Downstream IPv6 Address
IPv6 address
MPLS ECHO TLV Interface and Label Stack Address
mpls_echo.tlv.ilso_ipv6.int_addr Downstream Interface Address
IPv6 address
MPLS ECHO TLV Interface and Label Stack Address
mpls_echo.tlv.len Length
Unsigned 16-bit integer
MPLS ECHO TLV Length
mpls_echo.tlv.pad_action Pad Action
Unsigned 8-bit integer
MPLS ECHO Pad TLV Action
mpls_echo.tlv.pad_padding Padding
Byte array
MPLS ECHO Pad TLV Padding
mpls_echo.tlv.reply.tos Reply-TOS Byte
Unsigned 8-bit integer
MPLS ECHO TLV Reply-TOS Byte
mpls_echo.tlv.reply.tos.mbz MBZ
Unsigned 24-bit integer
MPLS ECHO TLV Reply-TOS MBZ
mpls_echo.tlv.rto.ipv4 Reply-to IPv4 Address
IPv4 address
MPLS ECHO TLV IPv4 Reply-To Object
mpls_echo.tlv.rto.ipv6 Reply-to IPv6 Address
IPv6 address
MPLS ECHO TLV IPv6 Reply-To Object
mpls_echo.tlv.type Type
Unsigned 16-bit integer
MPLS ECHO TLV Type
mpls_echo.tlv.value Value
Byte array
MPLS ECHO TLV Value
mpls_echo.tlv.vendor_id Vendor Id
Unsigned 32-bit integer
MPLS ECHO Vendor Id
mpls_echo.version Version
Unsigned 16-bit integer
MPLS ECHO Version Number
mysql.affected_rows Affected Rows
Unsigned 64-bit integer
Affected Rows
mysql.caps Caps
Unsigned 16-bit integer
MySQL Capabilities
mysql.caps.cd Connect With Database
Boolean
mysql.caps.cp Can use compression protocol
Boolean
mysql.caps.cu Speaks 4.1 protocol (new flag)
Boolean
mysql.caps.fr Found Rows
Boolean
mysql.caps.ia Interactive Client
Boolean
mysql.caps.ii Ignore sigpipes
Boolean
mysql.caps.is Ignore Spaces before '('
Boolean
mysql.caps.lf Long Column Flags
Boolean
mysql.caps.li Can Use LOAD DATA LOCAL
Boolean
mysql.caps.lp Long Password
Boolean
mysql.caps.mr Supports multiple results
Boolean
mysql.caps.ms Supports multiple statements
Boolean
mysql.caps.ns Dont Allow database.table.column
Boolean
mysql.caps.ob ODBC Client
Boolean
mysql.caps.rs Speaks 4.1 protocol (old flag)
Boolean
mysql.caps.sc Can do 4.1 authentication
Boolean
mysql.caps.sl Switch to SSL after handshake
Boolean
mysql.caps.ta Knows about transactions
Boolean
mysql.charset Charset
Unsigned 8-bit integer
MySQL Charset
mysql.eof EOF
Unsigned 8-bit integer
EOF
mysql.error.message Error message
String
Error string in case of MySQL error message
mysql.error_code Error Code
Unsigned 16-bit integer
Error Code
mysql.exec_flags Flags (unused)
Unsigned 8-bit integer
Flags (unused)
mysql.exec_iter Iterations (unused)
Unsigned 32-bit integer
Iterations (unused)
mysql.extcaps Ext. Caps
Unsigned 16-bit integer
MySQL Extended Capabilities
mysql.extra Extra data
Unsigned 64-bit integer
Extra data
mysql.insert_id Last INSERT ID
Unsigned 64-bit integer
Last INSERT ID
mysql.max_packet MAX Packet
Unsigned 24-bit integer
MySQL Max packet
mysql.message Message
String
Message
mysql.num_fields Number of fields
Unsigned 64-bit integer
Number of fields
mysql.num_rows Rows to fetch
Unsigned 32-bit integer
Rows to fetch
mysql.opcode Command
Unsigned 8-bit integer
Command
mysql.option Option
Unsigned 16-bit integer
Option
mysql.packet_length Packet Length
Unsigned 24-bit integer
Packet Length
mysql.packet_number Packet Number
Unsigned 8-bit integer
Packet Number
mysql.param Parameter
Unsigned 16-bit integer
Parameter
mysql.parameter Parameter
String
Parameter
mysql.passwd Password
String
Password
mysql.payload Payload
String
Additional Payload
mysql.protocol Protocol
Unsigned 8-bit integer
Protocol Version
mysql.query Statement
String
Statement
mysql.refresh Refresh Option
Unsigned 8-bit integer
Refresh Option
mysql.response_code Response Code
Unsigned 8-bit integer
Response Code
mysql.rfsh.grants reload permissions
Boolean
mysql.rfsh.hosts flush hosts
Boolean
mysql.rfsh.log flush logfiles
Boolean
mysql.rfsh.master flush master status
Boolean
mysql.rfsh.slave flush slave status
Boolean
mysql.rfsh.status reset statistics
Boolean
mysql.rfsh.tables flush tables
Boolean
mysql.rfsh.threads empty thread cache
Boolean
mysql.salt Salt
String
Salt
mysql.salt2 Salt
String
Salt
mysql.schema Schema
String
Login Schema
mysql.sqlstate SQL state
String
mysql.stat.ac AUTO_COMMIT
Boolean
mysql.stat.bi Bad index used
Boolean
mysql.stat.bs No backslash escapes
Boolean
mysql.stat.cr Cursor exists
Boolean
mysql.stat.dr database dropped
Boolean
mysql.stat.it In transaction
Boolean
mysql.stat.lr Last row sebd
Boolean
mysql.stat.mr More results
Boolean
mysql.stat.mu Multi query - more resultsets
Boolean
mysql.stat.ni No index used
Boolean
mysql.status Status
Unsigned 16-bit integer
MySQL Status
mysql.stmt_id Statement ID
Unsigned 32-bit integer
Statement ID
mysql.thd_id Thread ID
Unsigned 32-bit integer
Thread ID
mysql.thread_id Thread ID
Unsigned 32-bit integer
MySQL Thread ID
mysql.unused Unused
String
Unused
mysql.user Username
String
Login Username
mysql.version Version
String
MySQL Version
mysql.warnings Warnings
Unsigned 16-bit integer
Warnings
nhrp.cli.addr.tl Client Address Type/Len
Unsigned 8-bit integer
nhrp.cli.saddr.tl Client Sub Address Type/Len
Unsigned 8-bit integer
nhrp.client.nbma.addr Client NBMA Address
IPv4 address
nhrp.client.nbma.saddr Client NBMA Sub Address
nhrp.client.prot.addr Client Protocol Address
IPv4 address
nhrp.code Code
Unsigned 8-bit integer
nhrp.dst.prot.addr Destination Protocol Address
IPv4 address
nhrp.dst.prot.len Destination Protocol Len
Unsigned 16-bit integer
nhrp.err.offset Error Offset
Unsigned 16-bit integer
nhrp.err.pkt Errored Packet
nhrp.ext.c Compulsary Flag
Boolean
nhrp.ext.len Extension length
Unsigned 16-bit integer
nhrp.ext.type Extension Type
Unsigned 16-bit integer
nhrp.ext.val Extension Value
nhrp.flag.a Authoritative
Boolean
A bit
nhrp.flag.d Stable Association
Boolean
D bit
nhrp.flag.n Expected Purge Reply
Boolean
nhrp.flag.nat Cisco NAT Supported
Boolean
NAT bit
nhrp.flag.q Is Router
Boolean
nhrp.flag.s Stable Binding
Boolean
S bit
nhrp.flag.u1 Uniqueness Bit
Boolean
U bit
nhrp.flags Flags
Unsigned 16-bit integer
nhrp.hdr.afn Address Family Number
Unsigned 16-bit integer
nhrp.hdr.chksum Packet Checksum
Unsigned 16-bit integer
nhrp.hdr.extoff Extension Offset
Unsigned 16-bit integer
nhrp.hdr.hopcnt Hop Count
Unsigned 8-bit integer
nhrp.hdr.op.type NHRP Packet Type
Unsigned 8-bit integer
nhrp.hdr.pktsz Packet Length
Unsigned 16-bit integer
nhrp.hdr.pro.snap Protocol Type (long form)
nhrp.hdr.pro.type Protocol Type (short form)
Unsigned 16-bit integer
nhrp.hdr.shtl Source Address Type/Len
Unsigned 8-bit integer
nhrp.hdr.sstl Source SubAddress Type/Len
Unsigned 8-bit integer
nhrp.hdr.version Version
Unsigned 8-bit integer
nhrp.htime Holding Time (s)
Unsigned 16-bit integer
nhrp.mtu Max Transmission Unit
Unsigned 16-bit integer
nhrp.pref CIE Preference Value
Unsigned 8-bit integer
nhrp.prefix Prefix Length
Unsigned 8-bit integer
nhrp.prot.len Client Protocol Length
Unsigned 8-bit integer
nhrp.reqid Request ID
Unsigned 32-bit integer
nhrp.src.nbma.addr Source NBMA Address
IPv4 address
nhrp.src.nbma.saddr Source NBMA Sub Address
nhrp.src.prot.addr Source Protocol Address
IPv4 address
nhrp.src.prot.len Source Protocol Len
Unsigned 16-bit integer
nhrp.unused Unused
Unsigned 16-bit integer
nfsacl.acl ACL
No value
ACL
nfsacl.aclcnt ACL count
Unsigned 32-bit integer
ACL count
nfsacl.aclent ACL Entry
No value
ACL
nfsacl.aclent.perm Permissions
Unsigned 32-bit integer
Permissions
nfsacl.aclent.type Type
Unsigned 32-bit integer
Type
nfsacl.aclent.uid UID
Unsigned 32-bit integer
UID
nfsacl.create create
Boolean
Create?
nfsacl.dfaclcnt Default ACL count
Unsigned 32-bit integer
Default ACL count
nfsacl.procedure_v1 V1 Procedure
Unsigned 32-bit integer
V1 Procedure
nfsacl.procedure_v2 V2 Procedure
Unsigned 32-bit integer
V2 Procedure
nfsacl.procedure_v3 V3 Procedure
Unsigned 32-bit integer
V3 Procedure
nfsauth.procedure_v1 V1 Procedure
Unsigned 32-bit integer
V1 Procedure
.nisplus.dummy
Byte array
nisplus.access.mask access mask
No value
NIS Access Mask
nisplus.aticks aticks
Unsigned 32-bit integer
nisplus.attr Attribute
No value
Attribute
nisplus.attr.name name
String
Attribute Name
nisplus.attr.val val
Byte array
Attribute Value
nisplus.attributes Attributes
No value
List Of Attributes
nisplus.callback.status status
Boolean
Status Of Callback Thread
nisplus.checkpoint.dticks dticks
Unsigned 32-bit integer
Database Ticks
nisplus.checkpoint.status status
Unsigned 32-bit integer
Checkpoint Status
nisplus.checkpoint.zticks zticks
Unsigned 32-bit integer
Service Ticks
nisplus.cookie cookie
Byte array
Cookie
nisplus.cticks cticks
Unsigned 32-bit integer
nisplus.ctime ctime
Date/Time stamp
Time Of Creation
nisplus.directory directory
No value
NIS Directory Object
nisplus.directory.mask mask
No value
NIS Directory Create/Destroy Rights
nisplus.directory.mask.group_create GROUP CREATE
Boolean
Group Create Flag
nisplus.directory.mask.group_destroy GROUP DESTROY
Boolean
Group Destroy Flag
nisplus.directory.mask.group_modify GROUP MODIFY
Boolean
Group Modify Flag
nisplus.directory.mask.group_read GROUP READ
Boolean
Group Read Flag
nisplus.directory.mask.nobody_create NOBODY CREATE
Boolean
Nobody Create Flag
nisplus.directory.mask.nobody_destroy NOBODY DESTROY
Boolean
Nobody Destroy Flag
nisplus.directory.mask.nobody_modify NOBODY MODIFY
Boolean
Nobody Modify Flag
nisplus.directory.mask.nobody_read NOBODY READ
Boolean
Nobody Read Flag
nisplus.directory.mask.owner_create OWNER CREATE
Boolean
Owner Create Flag
nisplus.directory.mask.owner_destroy OWNER DESTROY
Boolean
Owner Destroy Flag
nisplus.directory.mask.owner_modify OWNER MODIFY
Boolean
Owner Modify Flag
nisplus.directory.mask.owner_read OWNER READ
Boolean
Owner Read Flag
nisplus.directory.mask.world_create WORLD CREATE
Boolean
World Create Flag
nisplus.directory.mask.world_destroy WORLD DESTROY
Boolean
World Destroy Flag
nisplus.directory.mask.world_modify WORLD MODIFY
Boolean
World Modify Flag
nisplus.directory.mask.world_read WORLD READ
Boolean
World Read Flag
nisplus.directory.mask_list mask list
No value
List Of Directory Create/Destroy Rights
nisplus.directory.name directory name
String
Name Of Directory Being Served
nisplus.directory.ttl ttl
Unsigned 32-bit integer
Time To Live
nisplus.directory.type type
Unsigned 32-bit integer
NIS Type Of Name Service
nisplus.dticks dticks
Unsigned 32-bit integer
nisplus.dump.dir directory
String
Directory To Dump
nisplus.dump.time time
Date/Time stamp
From This Timestamp
nisplus.endpoint endpoint
No value
Endpoint For This NIS Server
nisplus.endpoint.family family
String
Transport Family
nisplus.endpoint.proto proto
String
Protocol
nisplus.endpoint.uaddr addr
String
Address
nisplus.endpoints nis endpoints
No value
Endpoints For This NIS Server
nisplus.entry entry
No value
Entry Object
nisplus.entry.col column
No value
Entry Column
nisplus.entry.cols columns
No value
Entry Columns
nisplus.entry.flags flags
Unsigned 32-bit integer
Entry Col Flags
nisplus.entry.flags.asn ASN.1
Boolean
Is This Entry ASN.1 Encoded Flag
nisplus.entry.flags.binary BINARY
Boolean
Is This Entry BINARY Flag
nisplus.entry.flags.encrypted ENCRYPTED
Boolean
Is This Entry ENCRYPTED Flag
nisplus.entry.flags.modified MODIFIED
Boolean
Is This Entry MODIFIED Flag
nisplus.entry.flags.xdr XDR
Boolean
Is This Entry XDR Encoded Flag
nisplus.entry.type type
String
Entry Type
nisplus.entry.val val
String
Entry Value
nisplus.fd.dir.data data
Byte array
Directory Data In XDR Format
nisplus.fd.dirname dirname
String
Directory Name
nisplus.fd.requester requester
String
Host Principal Name For Signature
nisplus.fd.sig signature
Byte array
Signature Of The Source
nisplus.group Group
No value
Group Object
nisplus.group.flags flags
Unsigned 32-bit integer
Group Object Flags
nisplus.group.name group name
String
Name Of Group Member
nisplus.grps Groups
No value
List Of Groups
nisplus.ib.bufsize bufsize
Unsigned 32-bit integer
Optional First/NextBufSize
nisplus.ib.flags flags
Unsigned 32-bit integer
Information Base Flags
nisplus.key.data key data
Byte array
Encryption Key
nisplus.key.type type
Unsigned 32-bit integer
Type Of Key
nisplus.link link
No value
NIS Link Object
nisplus.log.entries log entries
No value
Log Entries
nisplus.log.entry log entry
No value
Log Entry
nisplus.log.entry.type type
Unsigned 32-bit integer
Type Of Entry In Transaction Log
nisplus.log.principal principal
String
Principal Making The Change
nisplus.log.time time
Date/Time stamp
Time Of Log Entry
nisplus.mtime mtime
Date/Time stamp
Time Last Modified
nisplus.object NIS Object
No value
NIS Object
nisplus.object.domain domain
String
NIS Administrator For This Object
nisplus.object.group group
String
NIS Name Of Access Group
nisplus.object.name name
String
NIS Name For This Object
nisplus.object.oid Object Identity Verifier
No value
NIS Object Identity Verifier
nisplus.object.owner owner
String
NIS Name Of Object Owner
nisplus.object.private private
Byte array
NIS Private Object
nisplus.object.ttl ttl
Unsigned 32-bit integer
NIS Time To Live For This Object
nisplus.object.type type
Unsigned 32-bit integer
NIS Type Of Object
nisplus.ping.dir directory
String
Directory That Had The Change
nisplus.ping.time time
Date/Time stamp
Timestamp Of The Transaction
nisplus.procedure_v3 V3 Procedure
Unsigned 32-bit integer
V3 Procedure
nisplus.server server
No value
NIS Server For This Directory
nisplus.server.name name
String
Name Of NIS Server
nisplus.servers nis servers
No value
NIS Servers For This Directory
nisplus.status status
Unsigned 32-bit integer
NIS Status Code
nisplus.table table
No value
Table Object
nisplus.table.col column
No value
Table Column
nisplus.table.col.flags flags
No value
Flags For This Column
nisplus.table.col.name column name
String
Column Name
nisplus.table.cols columns
No value
Table Columns
nisplus.table.flags.asn asn
Boolean
Is This Column ASN.1 Encoded
nisplus.table.flags.binary binary
Boolean
Is This Column BINARY
nisplus.table.flags.casesensitive casesensitive
Boolean
Is This Column CASESENSITIVE
nisplus.table.flags.encrypted encrypted
Boolean
Is This Column ENCRYPTED
nisplus.table.flags.modified modified
Boolean
Is This Column MODIFIED
nisplus.table.flags.searchable searchable
Boolean
Is This Column SEARCHABLE
nisplus.table.flags.xdr xdr
Boolean
Is This Column XDR Encoded
nisplus.table.maxcol max columns
Unsigned 16-bit integer
Maximum Number Of Columns For Table
nisplus.table.path path
String
Table Path
nisplus.table.separator separator
Unsigned 8-bit integer
Separator Character
nisplus.table.type type
String
Table Type
nisplus.tag tag
No value
Tag
nisplus.tag.type type
Unsigned 32-bit integer
Type Of Statistics Tag
nisplus.tag.value value
String
Value Of Statistics Tag
nisplus.taglist taglist
No value
List Of Tags
nisplus.zticks zticks
Unsigned 32-bit integer
nispluscb.entries entries
No value
NIS Callback Entries
nispluscb.entry entry
No value
NIS Callback Entry
nispluscb.procedure_v1 V1 Procedure
Unsigned 32-bit integer
V1 Procedure
ntlmssp.auth.domain Domain name
String
ntlmssp.auth.hostname Host name
String
ntlmssp.auth.lmresponse Lan Manager Response
Byte array
ntlmssp.auth.ntresponse NTLM Response
Byte array
ntlmssp.auth.sesskey Session Key
Byte array
ntlmssp.auth.username User name
String
ntlmssp.blob.length Length
Unsigned 16-bit integer
ntlmssp.blob.maxlen Maxlen
Unsigned 16-bit integer
ntlmssp.blob.offset Offset
Unsigned 32-bit integer
ntlmssp.challenge.addresslist Address List
No value
ntlmssp.challenge.addresslist.domaindns Domain DNS Name
String
ntlmssp.challenge.addresslist.domainnb Domain NetBIOS Name
String
ntlmssp.challenge.addresslist.item.content Target item Content
String
ntlmssp.challenge.addresslist.item.length Target item Length
Unsigned 16-bit integer
ntlmssp.challenge.addresslist.length Length
Unsigned 16-bit integer
ntlmssp.challenge.addresslist.maxlen Maxlen
Unsigned 16-bit integer
ntlmssp.challenge.addresslist.offset Offset
Unsigned 32-bit integer
ntlmssp.challenge.addresslist.serverdns Server DNS Name
String
ntlmssp.challenge.addresslist.servernb Server NetBIOS Name
String
ntlmssp.challenge.addresslist.terminator List Terminator
No value
ntlmssp.challenge.domain Domain
String
ntlmssp.decrypted_payload NTLM Decrypted Payload
Byte array
ntlmssp.identifier NTLMSSP identifier
String
NTLMSSP Identifier
ntlmssp.messagetype NTLM Message Type
Unsigned 32-bit integer
ntlmssp.negotiate.callingworkstation Calling workstation name
String
ntlmssp.negotiate.callingworkstation.buffer Calling workstation name buffer
Unsigned 32-bit integer
ntlmssp.negotiate.callingworkstation.maxlen Calling workstation name max length
Unsigned 16-bit integer
ntlmssp.negotiate.callingworkstation.strlen Calling workstation name length
Unsigned 16-bit integer
ntlmssp.negotiate.domain Calling workstation domain
String
ntlmssp.negotiate.domain.buffer Calling workstation domain buffer
Unsigned 32-bit integer
ntlmssp.negotiate.domain.maxlen Calling workstation domain max length
Unsigned 16-bit integer
ntlmssp.negotiate.domain.strlen Calling workstation domain length
Unsigned 16-bit integer
ntlmssp.negotiate00000008 Request 0x00000008
Boolean
ntlmssp.negotiate00000400 Negotiate 0x00000400
Boolean
ntlmssp.negotiate128 Negotiate 128
Boolean
128-bit encryption is supported
ntlmssp.negotiate56 Negotiate 56
Boolean
56-bit encryption is supported
ntlmssp.negotiatealwayssign Negotiate Always Sign
Boolean
ntlmssp.negotiateanonymous Negotiate Anonymous
Boolean
ntlmssp.negotiatechallengeacceptresponse Negotiate Challenge Accept Response
Boolean
ntlmssp.negotiatechallengeinitresponse Negotiate Challenge Init Response
Boolean
ntlmssp.negotiatechallengenonntsessionkey Negotiate Challenge Non NT Session Key
Boolean
ntlmssp.negotiatedatagramstyle Negotiate Datagram Style
Boolean
ntlmssp.negotiatedomainsupplied Negotiate Domain Supplied
Boolean
ntlmssp.negotiateflags Flags
Unsigned 32-bit integer
ntlmssp.negotiatekeyexch Negotiate Key Exchange
Boolean
ntlmssp.negotiatelmkey Negotiate Lan Manager Key
Boolean
ntlmssp.negotiatenetware Negotiate Netware
Boolean
ntlmssp.negotiatent00100000 Negotiate 0x00100000
Boolean
ntlmssp.negotiatent00200000 Negotiate 0x00200000
Boolean
ntlmssp.negotiatent00400000 Negotiate 0x00400000
Boolean
ntlmssp.negotiatent01000000 Negotiate 0x01000000
Boolean
ntlmssp.negotiatent02000000 Negotiate 0x02000000
Boolean
ntlmssp.negotiatent04000000 Negotiate 0x04000000
Boolean
ntlmssp.negotiatent08000000 Negotiate 0x08000000
Boolean
ntlmssp.negotiatent10000000 Negotiate 0x10000000
Boolean
ntlmssp.negotiatentlm Negotiate NTLM key
Boolean
ntlmssp.negotiatentlm2 Negotiate NTLM2 key
Boolean
ntlmssp.negotiateoem Negotiate OEM
Boolean
ntlmssp.negotiateseal Negotiate Seal
Boolean
ntlmssp.negotiatesign Negotiate Sign
Boolean
ntlmssp.negotiatetargetinfo Negotiate Target Info
Boolean
ntlmssp.negotiatethisislocalcall Negotiate This is Local Call
Boolean
ntlmssp.negotiateunicode Negotiate UNICODE
Boolean
ntlmssp.negotiateworkstationsupplied Negotiate Workstation Supplied
Boolean
ntlmssp.ntlmchallenge NTLM Challenge
Byte array
ntlmssp.ntlmv2response NTLMv2 Response
Byte array
ntlmssp.ntlmv2response.chal Client challenge
Byte array
ntlmssp.ntlmv2response.client_time Client Time
Date/Time stamp
ntlmssp.ntlmv2response.header Header
Unsigned 32-bit integer
ntlmssp.ntlmv2response.hmac HMAC
Byte array
ntlmssp.ntlmv2response.name Name
String
ntlmssp.ntlmv2response.name.len Name len
Unsigned 32-bit integer
ntlmssp.ntlmv2response.name.type Name type
Unsigned 32-bit integer
ntlmssp.ntlmv2response.reserved Reserved
Unsigned 32-bit integer
ntlmssp.ntlmv2response.time Time
Date/Time stamp
ntlmssp.ntlmv2response.unknown Unknown
Unsigned 32-bit integer
ntlmssp.requesttarget Request Target
Boolean
ntlmssp.reserved Reserved
Byte array
ntlmssp.string.length Length
Unsigned 16-bit integer
ntlmssp.string.maxlen Maxlen
Unsigned 16-bit integer
ntlmssp.string.offset Offset
Unsigned 32-bit integer
ntlmssp.targetitemtype Target item type
Unsigned 16-bit integer
ntlmssp.verf NTLMSSP Verifier
No value
NTLMSSP Verifier
ntlmssp.verf.body Verifier Body
Byte array
ntlmssp.verf.crc32 Verifier CRC32
Unsigned 32-bit integer
ntlmssp.verf.sequence Verifier Sequence Number
Unsigned 32-bit integer
ntlmssp.verf.unknown1 Unknown 1
Unsigned 32-bit integer
ntlmssp.verf.vers Version Number
Unsigned 32-bit integer
nbp.count Count
Unsigned 8-bit integer
Count
nbp.enum Enumerator
Unsigned 8-bit integer
Enumerator
nbp.info Info
Unsigned 8-bit integer
Info
nbp.net Network
Unsigned 16-bit integer
Network
nbp.node Node
Unsigned 8-bit integer
Node
nbp.object Object
String
Object
nbp.op Operation
Unsigned 8-bit integer
Operation
nbp.port Port
Unsigned 8-bit integer
Port
nbp.tid Transaction ID
Unsigned 8-bit integer
Transaction ID
nbp.type Type
String
Type
nbp.zone Zone
String
Zone
NORM.fec Forward Error Correction (FEC) header
No value
NORM.fec.encoding_id FEC Encoding ID
Unsigned 8-bit integer
NORM.fec.esi Encoding Symbol ID
Unsigned 32-bit integer
NORM.fec.fti FEC Object Transmission Information
No value
NORM.fec.fti.encoding_symbol_length Encoding Symbol Length
Unsigned 32-bit integer
NORM.fec.fti.max_number_encoding_symbols Maximum Number of Encoding Symbols
Unsigned 32-bit integer
NORM.fec.fti.max_source_block_length Maximum Source Block Length
Unsigned 32-bit integer
NORM.fec.fti.transfer_length Transfer Length
Unsigned 64-bit integer
NORM.fec.instance_id FEC Instance ID
Unsigned 8-bit integer
NORM.fec.sbl Source Block Length
Unsigned 32-bit integer
NORM.fec.sbn Source Block Number
Unsigned 32-bit integer
norm.ack.grtt_sec Ack GRTT Sec
Unsigned 32-bit integer
norm.ack.grtt_usec Ack GRTT usec
Unsigned 32-bit integer
norm.ack.id Ack ID
Unsigned 8-bit integer
norm.ack.source Ack Source
IPv4 address
norm.ack.type Ack Type
Unsigned 8-bit integer
norm.backoff Backoff
Unsigned 8-bit integer
norm.cc_flags CC Flags
Unsigned 8-bit integer
norm.cc_flags.clr CLR
Boolean
norm.cc_flags.leave Leave
Boolean
norm.cc_flags.plr PLR
Boolean
norm.cc_flags.rtt RTT
Boolean
norm.cc_flags.start Start
Boolean
norm.cc_node_id CC Node ID
IPv4 address
norm.cc_rate CC Rate
Double-precision floating point
norm.cc_rtt CC RTT
Double-precision floating point
norm.cc_sts Send Time secs
Unsigned 32-bit integer
norm.cc_stus Send Time usecs
Unsigned 32-bit integer
norm.cc_transport_id CC Transport ID
Unsigned 16-bit integer
norm.ccsequence CC Sequence
Unsigned 16-bit integer
norm.flag.explicit Explicit Flag
Boolean
norm.flag.file File Flag
Boolean
norm.flag.info Info Flag
Boolean
norm.flag.msgstart Msg Start Flag
Boolean
norm.flag.repair Repair Flag
Boolean
norm.flag.stream Stream Flag
Boolean
norm.flag.unreliable Unreliable Flag
Boolean
norm.flags Flags
Unsigned 8-bit integer
norm.flavor Flavor
Unsigned 8-bit integer
norm.grtt grtt
Double-precision floating point
norm.gsize Group Size
Double-precision floating point
norm.hexext Hdr Extension
Unsigned 16-bit integer
norm.hlen Header length
Unsigned 8-bit integer
norm.instance_id Instance
Unsigned 16-bit integer
norm.nack.flags NAck Flags
Unsigned 8-bit integer
norm.nack.flags.block Block
Boolean
norm.nack.flags.info Info
Boolean
norm.nack.flags.object Object
Boolean
norm.nack.flags.segment Segment
Boolean
norm.nack.form NAck FORM
Unsigned 8-bit integer
norm.nack.grtt_sec NAck GRTT Sec
Unsigned 32-bit integer
norm.nack.grtt_usec NAck GRTT usec
Unsigned 32-bit integer
norm.nack.length NAck Length
Unsigned 16-bit integer
norm.nack.server NAck Server
IPv4 address
norm.object_transport_id Object Transport ID
Unsigned 16-bit integer
norm.payload Payload
No value
norm.payload.len Payload Len
Unsigned 16-bit integer
norm.payload.offset Payload Offset
Unsigned 32-bit integer
norm.reserved Reserved
No value
norm.sequence Sequence
Unsigned 16-bit integer
norm.source_id Source ID
IPv4 address
norm.type Message Type
Unsigned 8-bit integer
norm.version Version
Unsigned 8-bit integer
netbios.ack Acknowledge
Boolean
netbios.ack_expected Acknowledge expected
Boolean
netbios.ack_with_data Acknowledge with data
Boolean
netbios.call_name_type Caller's Name Type
Unsigned 8-bit integer
netbios.command Command
Unsigned 8-bit integer
netbios.data1 DATA1 value
Unsigned 8-bit integer
netbios.data2 DATA2 value
Unsigned 16-bit integer
netbios.fragment NetBIOS Fragment
Frame number
NetBIOS Fragment
netbios.fragment.error Defragmentation error
Frame number
Defragmentation error due to illegal fragments
netbios.fragment.multipletails Multiple tail fragments found
Boolean
Several tails were found when defragmenting the packet
netbios.fragment.overlap Fragment overlap
Boolean
Fragment overlaps with other fragments
netbios.fragment.overlap.conflict Conflicting data in fragment overlap
Boolean
Overlapping fragments contained conflicting data
netbios.fragment.toolongfragment Fragment too long
Boolean
Fragment contained data past end of packet
netbios.fragments NetBIOS Fragments
No value
NetBIOS Fragments
netbios.hdr_len Header Length
Unsigned 16-bit integer
netbios.largest_frame Largest Frame
Unsigned 8-bit integer
netbios.local_session Local Session No.
Unsigned 8-bit integer
netbios.max_data_recv_size Maximum data receive size
Unsigned 16-bit integer
netbios.name_type Name type
Unsigned 16-bit integer
netbios.nb_name NetBIOS Name
String
netbios.nb_name_type NetBIOS Name Type
Unsigned 8-bit integer
netbios.num_data_bytes_accepted Number of data bytes accepted
Unsigned 16-bit integer
netbios.recv_cont_req RECEIVE_CONTINUE requested
Boolean
netbios.remote_session Remote Session No.
Unsigned 8-bit integer
netbios.resp_corrl Response Correlator
Unsigned 16-bit integer
netbios.send_no_ack Handle SEND.NO.ACK
Boolean
netbios.status Status
Unsigned 8-bit integer
netbios.status_buffer_len Length of status buffer
Unsigned 16-bit integer
netbios.termination_indicator Termination indicator
Unsigned 16-bit integer
netbios.version NetBIOS Version
Boolean
netbios.xmit_corrl Transmit Correlator
Unsigned 16-bit integer
nbdgm.dgram_id Datagram ID
Unsigned 16-bit integer
Datagram identifier
nbdgm.first This is first fragment
Boolean
TRUE if first fragment
nbdgm.next More fragments follow
Boolean
TRUE if more fragments follow
nbdgm.node_type Node Type
Unsigned 8-bit integer
Node type
nbdgm.src.ip Source IP
IPv4 address
Source IPv4 address
nbdgm.src.port Source Port
Unsigned 16-bit integer
Source port
nbdgm.type Message Type