ethereal-filter - Ethereal filter syntax and reference
ethereal [other options] [ -R ``filter expression'' ]
tethereal [other options] [ -R ``filter expression'' ]
Ethereal and Tethereal 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 Ethereal). 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 IPX protocol, the filter would be ``ipx'' (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 Ethereal and Tethereal filters are listed in the FILTER PROTOCOL REFERENCE (see below).
Fields can also be compared against values. The comparison operators can be expressed either through C-like symbols or through English-like abbreviations:
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 punctuation:
contains Does the protocol, field or slice contain a value matches Does the text string match the given Perl regular expression
The ``contains'' operator allows a filter to search for a sequence of characters or bytes. For example, to search for a given HTTP URL in a capture, the following filter can be used:
http contains "http://www.ethereal.com"
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 Ethereal or Tethereal have been compiled with the PCRE library. This can be checked by running:
ethereal -v tethereal -v
or selecting the ``About Ethereal'' item from the ``Help'' menu in Ethereal.
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 Ethereal or Tethereal.
token[0:5] ne 0.0.0.1.1 llc[0] eq aa frame[100-199] contains "ethereal"
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
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 "ethereal" (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.
xnsllc.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-lcated Care-of Address Boolean MN using Co-located Care-of address
a11.ext.apptype Application Type Unsigned 8-bit integer Application Type.
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.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) Byte array 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.sidver Session ID Version Unsigned 8-bit integer Session ID Version
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
vlan.cfi CFI Unsigned 16-bit integer CFI
vlan.etype Type Unsigned 16-bit integer Type
vlan.id ID Unsigned 16-bit integer ID
vlan.len Length Unsigned 16-bit integer Length
vlan.priority Priority Unsigned 16-bit integer 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.aal2_path_id AAL2 path identifier Unsigned 32-bit integer
alcap.channel_id Channel identifier (CID) Unsigned 32-bit integer
alcap.dsai Destination signalling association identifier Unsigned 32-bit integer
alcap.len Length Unsigned 8-bit integer
alcap.msg_type Message Type Unsigned 8-bit integer
alcap.none Subtree No value
alcap.nsap_address NSAP address Byte array
alcap.organizational_unique_id Organizational unique identifier (OUI) Unsigned 24-bit integer
alcap.osai Originating signalling association identifier Unsigned 32-bit integer
alcap.param_id Parameter identifier Unsigned 8-bit integer
alcap.served_user_gen_ref Served user generated reference Unsigned 32-bit integer
rep_proc.opnum Operation Unsigned 16-bit integer Operation
admin.confirm_status Confirmation status Unsigned 16-bit integer
aim.acctinfo.code Account Information Request Code Unsigned 16-bit integer
aim.acctinfo.permissions Account Permissions Unsigned 16-bit integer
aim.client_verification.hash Client Verification MD5 Hash Byte array
aim.client_verification.length Client Verification Request Length Unsigned 32-bit integer
aim.client_verification.offset Client Verification Request Offset Unsigned 32-bit integer
aim.evil.new_warn_level New warning level Unsigned 16-bit integer
aim.ext_status.data Extended Status Data Byte array
aim.ext_status.flags Extended Status Flags Unsigned 8-bit integer
aim.ext_status.length Extended Status Length Unsigned 8-bit integer
aim.ext_status.type Extended Status Type Unsigned 16-bit integer
aim.idle_time Idle time (seconds) Unsigned 32-bit integer
aim.migrate.numfams Number of families to migrate Unsigned 16-bit integer
aim.privilege_flags Privilege flags Unsigned 32-bit integer
aim.privilege_flags.allow_idle Allow other users to see idle time Boolean
aim.privilege_flags.allow_member Allow other users to see how long account has been a member Boolean
aim.ratechange.msg Rate Change Message Unsigned 16-bit integer
aim.rateinfo.class.alertlevel Alert Level Unsigned 32-bit integer
aim.rateinfo.class.clearlevel Clear Level Unsigned 32-bit integer
aim.rateinfo.class.currentlevel Current Level Unsigned 32-bit integer
aim.rateinfo.class.curstate Current State Unsigned 8-bit integer
aim.rateinfo.class.disconnectlevel Disconnect Level Unsigned 32-bit integer
aim.rateinfo.class.id Class ID Unsigned 16-bit integer
aim.rateinfo.class.lasttime Last Time Unsigned 32-bit integer
aim.rateinfo.class.limitlevel Limit Level Unsigned 32-bit integer
aim.rateinfo.class.maxlevel Max Level Unsigned 32-bit integer
aim.rateinfo.class.numpairs Number of Family/Subtype pairs Unsigned 16-bit integer
aim.rateinfo.class.window_size Window Size Unsigned 32-bit integer
aim.rateinfo.numclasses Number of Rateinfo Classes Unsigned 16-bit integer
aim.rateinfoack.class Acknowledged Rate Class Unsigned 16-bit integer
aim.selfinfo.warn_level Warning level Unsigned 16-bit integer
generic.motd.motdtype MOTD Type Unsigned 16-bit integer
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.snac.location.request_user_info.infotype Infotype Unsigned 16-bit integer
aim.evil.warn_level Old warning level Unsigned 16-bit integer
aim.evilreq.origin Send Evil Bit As Unsigned 16-bit integer
aim.icbm.channel Channel to setup Unsigned 16-bit integer
aim.icbm.flags Message Flags Unsigned 32-bit integer
aim.icbm.max_receiver_warnlevel max receiver warn level Unsigned 16-bit integer
aim.icbm.max_sender_warn-level Max sender warn level Unsigned 16-bit integer
aim.icbm.max_snac Max SNAC Size Unsigned 16-bit integer
aim.icbm.min_msg_interval Minimum message interval (seconds) Unsigned 16-bit integer
aim.icbm.unknown Unknown parameter Unsigned 16-bit integer
aim.messaging.channelid Message Channel ID Unsigned 16-bit integer
aim.messaging.icbmcookie ICBM Cookie Byte array
aim.notification.channel Notification Channel Unsigned 16-bit integer
aim.notification.cookie Notification Cookie Byte array
aim.notification.type Notification Type Unsigned 16-bit integer
aim.rendezvous.msg_type Message Type Unsigned 16-bit integer
aim.bos.userclass User class Unsigned 32-bit integer
aim.fnac.ssi.bid SSI Buddy ID Unsigned 16-bit integer
aim.fnac.ssi.buddyname Buddy Name String
aim.fnac.ssi.buddyname_len SSI Buddy Name length Unsigned 16-bit integer
aim.fnac.ssi.data SSI Buddy Data Unsigned 16-bit integer
aim.fnac.ssi.gid SSI Buddy Group ID Unsigned 16-bit integer
aim.fnac.ssi.last_change_time SSI Last Change Time Unsigned 32-bit integer
aim.fnac.ssi.numitems SSI Object count Unsigned 16-bit integer
aim.fnac.ssi.tlvlen SSI TLV Len Unsigned 16-bit integer
aim.fnac.ssi.type SSI Buddy type Unsigned 16-bit integer
aim.fnac.ssi.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.userlookup.email Email address looked for String Email address
ansi_a.bsmap_msgtype BSMAP Message Type Unsigned 8-bit integer
ansi_a.cell_ci Cell CI Unsigned 16-bit integer
ansi_a.cell_lac Cell LAC Unsigned 16-bit integer
ansi_a.cell_mscid Cell MSCID Unsigned 24-bit integer
ansi_a.cld_party_ascii_num Called Party ASCII Number String
ansi_a.cld_party_bcd_num Called Party BCD Number String
ansi_a.clg_party_ascii_num Calling Party ASCII Number String
ansi_a.clg_party_bcd_num Calling Party BCD Number String
ansi_a.dtap_msgtype DTAP Message Type Unsigned 8-bit integer
ansi_a.elem_id Element ID Unsigned 8-bit integer
ansi_a.esn ESN Unsigned 32-bit integer
ansi_a.imsi IMSI String
ansi_a.len Length Unsigned 8-bit integer
ansi_a.min MIN String
ansi_a.none Sub tree No value
ansi_a.pdsn_ip_addr PDSN IP Address IPv4 address IP Address
ansi_637.bin_addr Binary Address Byte array
ansi_637.len Length Unsigned 8-bit integer
ansi_637.none Sub tree No value
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_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.id Value Unsigned 8-bit integer
ansi_map.ios401_elem_id IOS 4.0.1 Element ID No value
ansi_map.len Length Unsigned 8-bit integer
ansi_map.oprcode Operation Code Signed 32-bit integer
ansi_map.param_id Param ID Unsigned 32-bit integer
ansi_map.tag Tag Unsigned 8-bit integer
aim.authcookie Authentication Cookie Byte array
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
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.vci VCI Unsigned 16-bit integer
atm.vpi VPI Unsigned 8-bit integer
wlancap.antenna Antenna Unsigned 32-bit integer
wlancap.channel Channel Unsigned 32-bit integer
wlancap.datarate Data rate Unsigned 32-bit integer
wlancap.encoding Encoding Type Unsigned 32-bit integer
wlancap.hosttime Host timestamp Unsigned 64-bit integer
wlancap.length Header length Unsigned 32-bit integer
wlancap.mactime MAC timestamp Unsigned 64-bit integer
wlancap.phytype PHY type Unsigned 32-bit integer
wlancap.preamble Preamble Unsigned 32-bit integer
wlancap.priority Priority 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
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.cmr CMR Unsigned 8-bit integer codec mode request
amr.reserved Reserved Unsigned 8-bit integer Reserved bits
amr.toc.f F bit Boolean F bit
amr.toc.ft FT bits Unsigned 8-bit integer FT bits
amr.toc.q Q bit Boolean Frame quality indicator bit
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.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.proto.size Protocol size Unsigned 8-bit integer
arp.proto.type Protocol type Unsigned 16-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
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.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_type Policy type Unsigned 8-bit integer
asap.pool_member_slection_policy_value Policy value Signed 24-bit integer
asap.sctp_transport_port Port Unsigned 16-bit integer
asap.server_information_m_bit M-Bit Boolean
asap.server_information_reserved Reserved Unsigned 32-bit integer
asap.server_information_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
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.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
ap1394.dst Destination Byte array Destination address
ap1394.src Source Byte array Source address
ap1394.type Type Unsigned 16-bit integer
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.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 diectory
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.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.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.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.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.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.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_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.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.fileIDs File IDs Boolean Supports file IDs
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
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
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
ah.sequence Sequence Unsigned 32-bit integer
ah.spi SPI Unsigned 32-bit integer
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 BLVC Function
bvlc.fwd_ip IP IPv4 address FWD IP
bvlc.fwd_port Port Unsigned 16-bit integer FWD Port
bvlc.length 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
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.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.length Length Unsigned 8-bit integer
bssap.pdu_type Message Type Unsigned 8-bit integer
vines_ip.protocol Protocol Unsigned 8-bit integer Vines protocol
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.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.tlli TLLI Unsigned 32-bit integer
bssgp.tmsi_ptmsi TMSI/PTMSI Unsigned 32-bit integer
ber.bitstring.padding Padding Unsigned 8-bit integer Number of unsused bits in the last octet of the bitstring
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 32-bit integer Tag value for non-Universal classes
ber.id.uni_tag Tag Unsigned 8-bit integer Universal tag type
ber.length Length Unsigned 32-bit integer Length of contents
ber.unknown.ENUMERATED ENUMERATED Unsigned 32-bit integer This is an unknown ENUMERATED
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 String This is an unknown Object Identifier
ber.unknown.PrintableString PrintableString String This is an unknown PrintableString
bicc.cic Call identification Code (CIC) Unsigned 32-bit integer
bfd.desired_min_tx_interval Desired Min TX Interval Unsigned 32-bit integer
bfd.detect_time_multiplier Detect Time Multiplier Unsigned 8-bit integer
bfd.diag Diagnostic Code Unsigned 8-bit integer
bfd.flags Message Flags Unsigned 8-bit integer
bfd.my_discriminator My Discriminator Unsigned 32-bit integer
bfd.required_min_echo_interval Required Min Echo Interval Unsigned 32-bit integer
bfd.required_min_rx_interval Required Min RX Interval Unsigned 32-bit integer
bfd.version Protocol Version Unsigned 8-bit integer
bfd.your_discriminator Your Discriminator Unsigned 32-bit integer
bittorrent.info_hash SHA1 Hash of info dictionary Byte array
bittorrent.length Field Length Unsigned 32-bit integer
bittorrent.msg.bitfield Bitfield data Byte array
bittorrent.msg.length Message Length Unsigned 32-bit integer
bittorrent.msg.type Message Type Unsigned 8-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)
brdwlk.drop Packet Dropped Boolean
brdwlk.eof EOF Unsigned 8-bit integer EOF
brdwlk.error Error Unsigned 8-bit integer Error
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.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.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.docsis.cmcap_len DOCSIS CM Device Capabilities Length Unsigned 8-bit integer DOCSIS Cable Modem Device Capabilities Length
bootp.vendor.pktc.mtacap_len PacketCable MTA Device Capabilities 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.bacapp_type APDU Type Unsigned 8-bit integer APDU Type
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_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 Message Type Unsigned 8-bit integer Message Type
bacnet.perf Performance Index Unsigned 8-bit integer Performance Index
bacnet.pinfo Port Info Unsigned 8-bit integer Port Info
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_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.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
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.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.
skinny.bitRate BitRate Unsigned 32-bit integer BitRate.
cmp.CRLAnnContent_item Item No value CRLAnnContent/_item
cmp.GenMsgContent_item Item No value GenMsgContent/_item
cmp.GenRepContent_item Item No value GenRepContent/_item
cmp.PKIFreeText_item Item String PKIFreeText/_item
cmp.POPODecKeyChallContent_item Item No value POPODecKeyChallContent/_item
cmp.POPODecKeyRespContent_item Item Signed 32-bit integer POPODecKeyRespContent/_item
cmp.RevReqContent_item Item No value RevReqContent/_item
cmp.badAlg badAlg Boolean
cmp.badCertId badCertId Boolean
cmp.badDataFormat badDataFormat Boolean
cmp.badMessageCheck badMessageCheck Boolean
cmp.badPOP badPOP Boolean
cmp.badRequest badRequest Boolean
cmp.badSinceDate badSinceDate String
cmp.badTime badTime Boolean
cmp.body body Unsigned 32-bit integer
cmp.caCerts caCerts No value KeyRecRepContent/caCerts
cmp.caCerts_item Item No value KeyRecRepContent/caCerts/_item
cmp.caPubs caPubs No value CertRepMessage/caPubs
cmp.caPubs_item Item No value CertRepMessage/caPubs/_item
cmp.cann cann No value PKIBody/cann
cmp.ccp ccp No value PKIBody/ccp
cmp.ccr ccr No value PKIBody/ccr
cmp.certDetails certDetails No value RevDetails/certDetails
cmp.certId certId No value
cmp.certOrEncCert certOrEncCert Unsigned 32-bit integer CertifiedKeyPair/certOrEncCert
cmp.certReqId certReqId Signed 32-bit integer CertResponse/certReqId
cmp.certificate certificate No value CertOrEncCert/certificate
cmp.certifiedKeyPair certifiedKeyPair No value CertResponse/certifiedKeyPair
cmp.challenge challenge Byte array Challenge/challenge
cmp.ckuann ckuann No value PKIBody/ckuann
cmp.conf conf No value PKIBody/conf
cmp.cp cp No value PKIBody/cp
cmp.cr cr No value PKIBody/cr
cmp.crlDetails crlDetails Unsigned 32-bit integer RevAnnContent/crlDetails
cmp.crlEntryDetails crlEntryDetails Unsigned 32-bit integer RevDetails/crlEntryDetails
cmp.crlann crlann No value PKIBody/crlann
cmp.crls crls No value RevRepContent/crls
cmp.crls_item Item No value RevRepContent/crls/_item
cmp.encryptedCert encryptedCert No value CertOrEncCert/encryptedCert
cmp.error error No value PKIBody/error
cmp.errorCode errorCode Signed 32-bit integer ErrorMsgContent/errorCode
cmp.errorDetails errorDetails No value ErrorMsgContent/errorDetails
cmp.extraCerts extraCerts No value PKIMessage/extraCerts
cmp.extraCerts_item Item No value PKIMessage/extraCerts/_item
cmp.failInfo failInfo Byte array PKIStatusInfo/failInfo
cmp.freeText freeText No value PKIHeader/freeText
cmp.generalInfo generalInfo No value PKIHeader/generalInfo
cmp.generalInfo_item Item No value PKIHeader/generalInfo/_item
cmp.genm genm No value PKIBody/genm
cmp.genp genp No value PKIBody/genp
cmp.hashAlg hashAlg No value OOBCertHash/hashAlg
cmp.hashVal hashVal Byte array OOBCertHash/hashVal
cmp.header header No value
cmp.incorrectData incorrectData Boolean
cmp.infoType infoType String InfoTypeAndValue/infoType
cmp.infoValue infoValue No value InfoTypeAndValue/infoValue
cmp.ip ip No value PKIBody/ip
cmp.ir ir No value PKIBody/ir
cmp.iterationCount iterationCount Signed 32-bit integer PBMParameter/iterationCount
cmp.keyPairHist keyPairHist No value KeyRecRepContent/keyPairHist
cmp.keyPairHist_item Item No value KeyRecRepContent/keyPairHist/_item
cmp.krp krp No value PKIBody/krp
cmp.krr krr No value PKIBody/krr
cmp.kup kup No value PKIBody/kup
cmp.kur kur No value PKIBody/kur
cmp.mac mac No value
cmp.messageTime messageTime String PKIHeader/messageTime
cmp.missingTimeStamp missingTimeStamp Boolean
cmp.nested nested No value PKIBody/nested
cmp.newSigCert newSigCert No value KeyRecRepContent/newSigCert
cmp.newWithNew newWithNew No value CAKeyUpdAnnContent/newWithNew
cmp.newWithOld newWithOld No value CAKeyUpdAnnContent/newWithOld
cmp.oldWithNew oldWithNew No value CAKeyUpdAnnContent/oldWithNew
cmp.owf owf No value
cmp.pKIStatusInfo pKIStatusInfo No value ErrorMsgContent/pKIStatusInfo
cmp.popdecc popdecc No value PKIBody/popdecc
cmp.popdecr popdecr No value PKIBody/popdecr
cmp.privateKey privateKey No value CertifiedKeyPair/privateKey
cmp.protection protection Byte array PKIMessage/protection
cmp.protectionAlg protectionAlg No value PKIHeader/protectionAlg
cmp.publicationInfo publicationInfo No value CertifiedKeyPair/publicationInfo
cmp.pvno pvno Signed 32-bit integer PKIHeader/pvno
cmp.rann rann No value PKIBody/rann
cmp.recipKID recipKID Byte array PKIHeader/recipKID
cmp.recipNonce recipNonce Byte array PKIHeader/recipNonce
cmp.recipient recipient Unsigned 32-bit integer PKIHeader/recipient
cmp.response response No value CertRepMessage/response
cmp.response_item Item No value CertRepMessage/response/_item
cmp.revCerts revCerts No value RevRepContent/revCerts
cmp.revCerts_item Item No value RevRepContent/revCerts/_item
cmp.revocationReason revocationReason Byte array RevDetails/revocationReason
cmp.rp rp No value PKIBody/rp
cmp.rr rr No value PKIBody/rr
cmp.rspInfo rspInfo Byte array CertResponse/rspInfo
cmp.salt salt Byte array PBMParameter/salt
cmp.sender sender Unsigned 32-bit integer PKIHeader/sender
cmp.senderKID senderKID Byte array PKIHeader/senderKID
cmp.senderNonce senderNonce Byte array PKIHeader/senderNonce
cmp.status status Signed 32-bit integer
cmp.statusString statusString No value PKIStatusInfo/statusString
cmp.status_item Item No value RevRepContent/status/_item
cmp.transactionID transactionID Byte array PKIHeader/transactionID
cmp.type.oid InfoType String Type of InfoTypeAndValue
cmp.willBeRevokedAt willBeRevokedAt String RevAnnContent/willBeRevokedAt
cmp.witness witness Byte array Challenge/witness
cmp.wrongAuthority wrongAuthority Boolean
crmf.CertReqMessages_item Item No value CertReqMessages/_item
crmf.Controls_item Item No value Controls/_item
crmf.action action Signed 32-bit integer PKIPublicationInfo/action
crmf.algId algId No value PKMACValue/algId
crmf.algorithmIdentifier algorithmIdentifier No value POPOSigningKey/algorithmIdentifier
crmf.archiveRemGenPrivKey archiveRemGenPrivKey Boolean PKIArchiveOptions/archiveRemGenPrivKey
crmf.authInfo authInfo Unsigned 32-bit integer POPOSigningKeyInput/authInfo
crmf.certReq certReq No value CertReqMsg/certReq
crmf.certReqId certReqId Signed 32-bit integer CertRequest/certReqId
crmf.certTemplate certTemplate No value CertRequest/certTemplate
crmf.controls controls No value CertRequest/controls
crmf.dhMAC dhMAC Byte array POPOPrivKey/dhMAC
crmf.encSymmKey encSymmKey Byte array EncryptedValue/encSymmKey
crmf.encValue encValue Byte array EncryptedValue/encValue
crmf.encryptedPrivKey encryptedPrivKey Unsigned 32-bit integer PKIArchiveOptions/encryptedPrivKey
crmf.encryptedValue encryptedValue No value EncryptedKey/encryptedValue
crmf.envelopedData envelopedData No value EncryptedKey/envelopedData
crmf.extensions extensions Unsigned 32-bit integer CertTemplate/extensions
crmf.generalTime generalTime String Time/generalTime
crmf.intendedAlg intendedAlg No value EncryptedValue/intendedAlg
crmf.issuer issuer Unsigned 32-bit integer CertTemplate/issuer
crmf.issuerUID issuerUID Byte array CertTemplate/issuerUID
crmf.iterationCount iterationCount Signed 32-bit integer PBMParameter/iterationCount
crmf.keyAgreement keyAgreement Unsigned 32-bit integer ProofOfPossession/keyAgreement
crmf.keyAlg keyAlg No value EncryptedValue/keyAlg
crmf.keyEncipherment keyEncipherment Unsigned 32-bit integer ProofOfPossession/keyEncipherment
crmf.keyGenParameters keyGenParameters Byte array PKIArchiveOptions/keyGenParameters
crmf.mac mac No value PBMParameter/mac
crmf.notAfter notAfter Unsigned 32-bit integer OptionalValidity/notAfter
crmf.notBefore notBefore Unsigned 32-bit integer OptionalValidity/notBefore
crmf.owf owf No value PBMParameter/owf
crmf.pop pop Unsigned 32-bit integer CertReqMsg/pop
crmf.poposkInput poposkInput No value POPOSigningKey/poposkInput
crmf.pubInfos pubInfos No value PKIPublicationInfo/pubInfos
crmf.pubInfos_item Item No value PKIPublicationInfo/pubInfos/_item
crmf.pubLocation pubLocation Unsigned 32-bit integer SinglePubInfo/pubLocation
crmf.pubMethod pubMethod Signed 32-bit integer SinglePubInfo/pubMethod
crmf.publicKey publicKey No value
crmf.publicKeyMAC publicKeyMAC No value POPOSigningKeyInput/authInfo/publicKeyMAC
crmf.raVerified raVerified No value ProofOfPossession/raVerified
crmf.regInfo regInfo No value CertReqMsg/regInfo
crmf.regInfo_item Item No value CertReqMsg/regInfo/_item
crmf.salt salt Byte array PBMParameter/salt
crmf.sender sender Unsigned 32-bit integer POPOSigningKeyInput/authInfo/sender
crmf.serialNumber serialNumber Signed 32-bit integer
crmf.signature signature No value ProofOfPossession/signature
crmf.signingAlg signingAlg No value CertTemplate/signingAlg
crmf.subject subject Unsigned 32-bit integer CertTemplate/subject
crmf.subjectUID subjectUID Byte array CertTemplate/subjectUID
crmf.subsequentMessage subsequentMessage Signed 32-bit integer POPOPrivKey/subsequentMessage
crmf.symmAlg symmAlg No value EncryptedValue/symmAlg
crmf.thisMessage thisMessage Byte array POPOPrivKey/thisMessage
crmf.type type String AttributeTypeAndValue/type
crmf.type.oid Type String Type of AttributeTypeAndValue
crmf.utcTime utcTime String Time/utcTime
crmf.validity validity No value CertTemplate/validity
crmf.value value No value AttributeTypeAndValue/value
crmf.valueHint valueHint Byte array EncryptedValue/valueHint
crmf.version version Signed 32-bit integer CertTemplate/version
cpha.ifn Interface Number Unsigned 32-bit integer
cphap.cluster_number Cluster Number Unsigned 16-bit integer Cluster Number
cphap.dst_id Destination Machine ID Unsigned 16-bit integer Destination Machine ID
cphap.ethernet_addr Ethernet Address 6-byte Hardware (MAC) Address Ethernet Address
cphap.filler Filler Unsigned 16-bit integer
cphap.ha_mode HA mode Unsigned 16-bit integer HA Mode
cphap.ha_time_unit HA Time unit (ms) Unsigned 16-bit integer HA Time unit
cphap.hash_len Hash list length Signed 32-bit integer Hash list length
cphap.id_num Number of IDs reported Unsigned 16-bit integer Number of IDs reported
cphap.if_trusted Interface Trusted Boolean Interface Trusted
cphap.in_assume_up Interfaces assumed up in the Inbound Signed 8-bit integer
cphap.in_up Interfaces up in the Inbound Signed 8-bit integer Interfaces up in the Inbound
cphap.ip IP Address IPv4 address IP Address
cphap.machine_num Machine Number Signed 16-bit integer Machine Number
cphap.magic_number CPHAP Magic Number Unsigned 16-bit integer CPHAP Magic Number
cphap.opcode OpCode Unsigned 16-bit integer OpCode
cphap.out_assume_up Interfaces assumed up in the Outbound Signed 8-bit integer
cphap.out_up Interfaces up in the Outbound Signed 8-bit integer
cphap.policy_id Policy ID Unsigned 16-bit integer Policy ID
cphap.random_id Random ID Unsigned 16-bit integer Random ID
cphap.reported_ifs Reported Interfaces Unsigned 32-bit integer Reported Interfaces
cphap.seed Seed Unsigned 32-bit integer Seed
cphap.slot_num Slot Number Signed 16-bit integer Slot Number
cphap.src_id Source Machine ID Unsigned 16-bit integer Source Machine ID
cphap.src_if Source Interface Unsigned 16-bit integer Source Interface
cphap.status Status Unsigned 32-bit integer
cphap.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
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.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.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.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
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 6-byte Hardware (MAC) Address 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_flowset_id Data FlowSet (Template Id) Unsigned 16-bit integer Data FlowSet with corresponding to a template Id
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.dstport DstPort Unsigned 16-bit integer Flow Destination Port
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.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_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.inputint InputInt Unsigned 16-bit integer Flow Input Interface
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.octetsexp OctetsExp Unsigned 32-bit integer Octets exported
cflow.option_length Option Length Unsigned 16-bit integer Option length
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.protocol Protocol Unsigned 8-bit integer IP Protocol
cflow.routersc Router Shortcut IPv4 address Router shortcut by switch
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_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.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.srcnet SrcNet IPv4 address Flow Source Network
cflow.srcport SrcPort Unsigned 16-bit integer Flow Source Port
cflow.sysuptime SysUptime Unsigned 32-bit integer Time since router booted (in milliseconds)
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.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.tos IP ToS Unsigned 8-bit integer IP Type of Service
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
clearcase.procedure_v3 V3 Procedure Unsigned 32-bit integer V3 Procedure
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
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.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.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 AMID Unsigned 32-bit integer PacketCable Multimedia AMID
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_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_port Destination Port Unsigned 16-bit integer PacketCable Multimedia Classifier Source Port
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_port Source Port Unsigned 16-bit integer PacketCable Multimedia Classifier Source Port
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_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_rtp Request Transmission Policy Unsigned 32-bit integer PacketCable Multimedia Committed Envelope Traffic Priority
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 Unsigned 16-bit integer 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.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
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
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 AuthAttributes/_item
cms.AuthenticatedData AuthenticatedData No value AuthenticatedData
cms.CertificateRevocationLists_item Item No value CertificateRevocationLists/_item
cms.CertificateSet_item Item Unsigned 32-bit integer CertificateSet/_item
cms.DigestAlgorithmIdentifiers_item Item No value DigestAlgorithmIdentifiers/_item
cms.DigestedData DigestedData No value DigestedData
cms.EncryptedData EncryptedData No value EncryptedData
cms.EnvelopedData EnvelopedData No value EnvelopedData
cms.RecipientEncryptedKeys_item Item No value RecipientEncryptedKeys/_item
cms.RecipientInfos_item Item Unsigned 32-bit integer RecipientInfos/_item
cms.SignedAttributes_item Item No value SignedAttributes/_item
cms.SignedData SignedData No value SignedData
cms.SignerInfos_item Item No value SignerInfos/_item
cms.UnauthAttributes_item Item No value UnauthAttributes/_item
cms.UnprotectedAttributes_item Item No value UnprotectedAttributes/_item
cms.UnsignedAttributes_item Item No value UnsignedAttributes/_item
cms.algorithm algorithm No value OriginatorPublicKey/algorithm
cms.attrCert attrCert No value CertificateChoices/attrCert
cms.attrType attrType String Attribute/attrType
cms.attributes attributes No value ExtendedCertificateInfo/attributes
cms.authenticatedAttributes authenticatedAttributes No value AuthenticatedData/authenticatedAttributes
cms.certificate certificate No value
cms.certificates certificates No value SignedData/certificates
cms.certs certs No value OriginatorInfo/certs
cms.content content No value ContentInfo/content
cms.contentEncryptionAlgorithm contentEncryptionAlgorithm No value EncryptedContentInfo/contentEncryptionAlgorithm
cms.contentInfo.contentType contentType String ContentType
cms.contentType contentType String ContentInfo/contentType
cms.crls crls No value
cms.date date String
cms.digest digest Byte array DigestedData/digest
cms.digestAlgorithm digestAlgorithm No value
cms.digestAlgorithms digestAlgorithms No value SignedData/digestAlgorithms
cms.eContent eContent Byte array EncapsulatedContentInfo/eContent
cms.eContentType eContentType String EncapsulatedContentInfo/eContentType
cms.encapContentInfo encapContentInfo No value
cms.encryptedContent encryptedContent Byte array EncryptedContentInfo/encryptedContent
cms.encryptedContentInfo encryptedContentInfo No value
cms.encryptedKey encryptedKey Byte array
cms.extendedCertificate extendedCertificate No value CertificateChoices/extendedCertificate
cms.extendedCertificateInfo extendedCertificateInfo No value ExtendedCertificate/extendedCertificateInfo
cms.issuer issuer Unsigned 32-bit integer IssuerAndSerialNumber/issuer
cms.issuerAndSerialNumber issuerAndSerialNumber No value
cms.kari kari No value RecipientInfo/kari
cms.kekid kekid No value KEKRecipientInfo/kekid
cms.kekri kekri No value RecipientInfo/kekri
cms.keyAttr keyAttr No value OtherKeyAttribute/keyAttr
cms.keyAttrId keyAttrId String OtherKeyAttribute/keyAttrId
cms.keyEncryptionAlgorithm keyEncryptionAlgorithm No value
cms.keyIdentifier keyIdentifier Byte array KEKIdentifier/keyIdentifier
cms.ktri ktri No value RecipientInfo/ktri
cms.mac mac Byte array AuthenticatedData/mac
cms.macAlgorithm macAlgorithm No value AuthenticatedData/macAlgorithm
cms.originator originator Unsigned 32-bit integer KeyAgreeRecipientInfo/originator
cms.originatorInfo originatorInfo No value
cms.originatorKey originatorKey No value OriginatorIdentifierOrKey/originatorKey
cms.other other No value
cms.publicKey publicKey Byte array OriginatorPublicKey/publicKey
cms.rKeyId rKeyId No value KeyAgreeRecipientIdentifier/rKeyId
cms.recipientEncryptedKeys recipientEncryptedKeys No value KeyAgreeRecipientInfo/recipientEncryptedKeys
cms.recipientInfos recipientInfos No value
cms.rid rid Unsigned 32-bit integer KeyTransRecipientInfo/rid
cms.serialNumber serialNumber Signed 32-bit integer IssuerAndSerialNumber/serialNumber
cms.sid sid Unsigned 32-bit integer SignerInfo/sid
cms.signature signature Byte array SignerInfo/signature
cms.signatureAlgorithm signatureAlgorithm No value
cms.signedAttrs signedAttrs No value SignerInfo/signedAttrs
cms.signerInfos signerInfos No value SignedData/signerInfos
cms.subjectKeyIdentifier subjectKeyIdentifier Byte array
cms.ukm ukm Byte array KeyAgreeRecipientInfo/ukm
cms.unauthenticatedAttributes unauthenticatedAttributes No value AuthenticatedData/unauthenticatedAttributes
cms.unprotectedAttrs unprotectedAttrs No value
cms.unsignedAttrs unsignedAttrs No value SignerInfo/unsignedAttrs
cms.version version Signed 32-bit integer
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 String 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 String
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_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 String
dcerpc.cn_bind_trans_id Transfer Syntax String
dcerpc.cn_bind_trans_ver Syntax 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_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 String
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 String
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 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.close_frame Frame handle closed Frame number Frame handle closed
dcerpc.nt.open_frame Frame handle opened Frame number Frame handle opened
dcerpc.obj_id Object String
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
logonhours.divisions Divisions Unsigned 16-bit integer Number of divisions for LOGON_HOURS
nt.acct_ctrl Acct Ctrl Unsigned 32-bit integer Acct CTRL
nt.attr Attributes Unsigned 32-bit integer
nt.count Count Unsigned 32-bit integer Number of elements in following array
nt.domain_sid Domain SID String The Domain SID
nt.guid GUID String GUID (uuid for groups?)
nt.str.len Length Unsigned 16-bit integer Length of string in short integers
nt.str.size Size Unsigned 16-bit integer Size of string in short integers
nt.unknown.char Unknown char Unsigned 8-bit integer Unknown char. If you know what this is, contact ethereal developers.
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 String
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
bossvr.opnum Operation Unsigned 16-bit integer Operation
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 String UUID
conv.who_are_you2_resp_seq Sequence Number Unsigned 32-bit integer
conv.who_are_you2_rqst_actuid Activity UID String 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 String 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 String
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 String
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 String 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
afsnetaddr.data IP Data Unsigned 8-bit integer
afsnetaddr.type Type Unsigned 16-bit integer
fldb.NameString_principal Principal Name 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.error_st Error Status 2 Unsigned 32-bit integer
fldb.flagsp flagsp 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.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.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 String UUID
fldb.uuid_owner owner String UUID
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
hf_fldb_createentry_rqst_key_size Volume Size Unsigned 32-bit integer
hf_fldb_createentry_rqst_key_t Volume String
hf_fldb_deleteentry_rqst_fsid_high FSID deleteentry Hi Unsigned 32-bit integer
hf_fldb_deleteentry_rqst_fsid_low FSID deleteentry Low Unsigned 32-bit integer
hf_fldb_deleteentry_rqst_voloper voloper Unsigned 32-bit integer
hf_fldb_deleteentry_rqst_voltype voltype Unsigned 32-bit integer
hf_fldb_getentrybyid_rqst_fsid_high FSID deleteentry Hi Unsigned 32-bit integer
hf_fldb_getentrybyid_rqst_fsid_low FSID getentrybyid Low Unsigned 32-bit integer
hf_fldb_getentrybyid_rqst_voloper voloper Unsigned 32-bit integer
hf_fldb_getentrybyid_rqst_voltype voltype Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_cloneid_high hf_fldb_getentrybyname_resp_cloneid_high Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_cloneid_low hf_fldb_getentrybyname_resp_cloneid_low Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_defaultmaxreplat hf_fldb_getentrybyname_resp_defaultmaxreplat Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_flags hf_fldb_getentrybyname_resp_flags Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_hardmaxtotlat hf_fldb_getentrybyname_resp_hardmaxtotlat Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_key_size hf_fldb_getentrybyname_resp_size Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_key_t hf_fldb_getentrybyname_resp_key_t String
hf_fldb_getentrybyname_resp_maxtotallat hf_fldb_getentrybyname_resp_maxtotallat Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_minpouncedally hf_fldb_getentrybyname_resp_minpouncedally Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_numservers hf_fldb_getentrybyname_resp_numservers Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_reclaimdally hf_fldb_getentrybyname_resp_reclaimdally Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_sitecookies hf_fldb_getentrybyname_resp_sitecookies Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_siteflags hf_fldb_getentrybyname_resp_siteflags Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_sitemaxreplat hf_fldb_getentrybyname_resp_sitemaxreplat Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_sitepartition hf_fldb_getentrybyname_resp_sitepartition Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_spare1 hf_fldb_getentrybyname_resp_spare1 Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_spare2 hf_fldb_getentrybyname_resp_spare2 Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_spare3 hf_fldb_getentrybyname_resp_spare3 Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_spare4 hf_fldb_getentrybyname_resp_spare4 Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_test hf_fldb_getentrybyname_resp_test Unsigned 8-bit integer
hf_fldb_getentrybyname_resp_volid_high hf_fldb_getentrybyname_resp_volid_high Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_volid_low hf_fldb_getentrybyname_resp_volid_low Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_voltype hf_fldb_getentrybyname_resp_voltype Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_volumetype hf_fldb_getentrybyname_resp_volumetype Unsigned 32-bit integer
hf_fldb_getentrybyname_resp_whenlocked hf_fldb_getentrybyname_resp_whenlocked Unsigned 32-bit integer
hf_fldb_listentry_resp_count Count Unsigned 32-bit integer
hf_fldb_listentry_resp_key_size Key Size Unsigned 32-bit integer
hf_fldb_listentry_resp_key_size2 key_size2 Unsigned 32-bit integer
hf_fldb_listentry_resp_key_t Volume String
hf_fldb_listentry_resp_key_t2 Server String
hf_fldb_listentry_resp_next_index Next Index Unsigned 32-bit integer
hf_fldb_listentry_resp_voltype VolType Unsigned 32-bit integer
hf_fldb_listentry_rqst_previous_index Previous Index Unsigned 32-bit integer
hf_fldb_listentry_rqst_var1 Var 1 Unsigned 32-bit integer
hf_fldb_releaselock_rqst_fsid_high FSID releaselock Hi Unsigned 32-bit integer
hf_fldb_releaselock_rqst_fsid_low FSID releaselock Low Unsigned 32-bit integer
hf_fldb_releaselock_rqst_voloper voloper Unsigned 32-bit integer
hf_fldb_releaselock_rqst_voltype voltype Unsigned 32-bit integer
hf_fldb_replaceentry_resp_st Error Unsigned 32-bit integer
hf_fldb_replaceentry_resp_st2 Error Unsigned 32-bit integer
hf_fldb_replaceentry_rqst_fsid_high FSID replaceentry Hi Unsigned 32-bit integer
hf_fldb_replaceentry_rqst_fsid_low FSID replaceentry Low Unsigned 32-bit integer
hf_fldb_replaceentry_rqst_key_size Key Size Unsigned 32-bit integer
hf_fldb_replaceentry_rqst_key_t Key String
hf_fldb_replaceentry_rqst_voltype voltype Unsigned 32-bit integer
hf_fldb_setlock_resp_st Error Unsigned 32-bit integer
hf_fldb_setlock_resp_st2 Error Unsigned 32-bit integer
hf_fldb_setlock_rqst_fsid_high FSID setlock Hi Unsigned 32-bit integer
hf_fldb_setlock_rqst_fsid_low FSID setlock Low Unsigned 32-bit integer
hf_fldb_setlock_rqst_voloper voloper Unsigned 32-bit integer
hf_fldb_setlock_rqst_voltype voltype Unsigned 32-bit integer
vlconf.cellidhigh CellID High Unsigned 32-bit integer
vlconf.cellidlow CellID Low Unsigned 32-bit integer
vlconf.hostname hostName String
vlconf.name Name String
vlconf.numservers Number of Servers Unsigned 32-bit integer
vlconf.spare1 Spare1 Unsigned 32-bit integer
vlconf.spare2 Spare2 Unsigned 32-bit integer
vlconf.spare3 Spare3 Unsigned 32-bit integer
vlconf.spare4 Spare4 Unsigned 32-bit integer
vlconf.spare5 Spare5 Unsigned 32-bit integer
vldbentry.afsflags AFS Flags Unsigned 32-bit integer
vldbentry.charspares Char Spares String
vldbentry.cloneidhigh CloneID High Unsigned 32-bit integer
vldbentry.cloneidlow CloneID Low Unsigned 32-bit integer
vldbentry.defaultmaxreplicalatency Default Max Replica Latency Unsigned 32-bit integer
vldbentry.hardmaxtotallatency Hard Max Total Latency Unsigned 32-bit integer
vldbentry.lockername Locker Name String
vldbentry.maxtotallatency Max Total Latency Unsigned 32-bit integer
vldbentry.minimumpouncedally Minimum Pounce Dally Unsigned 32-bit integer
vldbentry.nservers Number of Servers Unsigned 32-bit integer
vldbentry.reclaimdally Reclaim Dally Unsigned 32-bit integer
vldbentry.siteflags Site Flags Unsigned 32-bit integer
vldbentry.sitemaxreplatency Site Max Replica Latench Unsigned 32-bit integer
vldbentry.siteobjid Site Object ID String UUID
vldbentry.siteowner Site Owner String UUID
vldbentry.sitepartition Site Partition Unsigned 32-bit integer
vldbentry.siteprincipal Principal Name String
vldbentry.spare1 Spare 1 Unsigned 32-bit integer
vldbentry.spare2 Spare 2 Unsigned 32-bit integer
vldbentry.spare3 Spare 3 Unsigned 32-bit integer
vldbentry.spare4 Spare 4 Unsigned 32-bit integer
vldbentry.volidshigh VolIDs high Unsigned 32-bit integer
vldbentry.volidslow VolIDs low Unsigned 32-bit integer
vldbentry.voltypes VolTypes Unsigned 32-bit integer
vldbentry.volumename VolumeName String
vldbentry.volumetype VolumeType Unsigned 32-bit integer
vldbentry.whenlocked When Locked Unsigned 32-bit integer
ubikdisk.opnum Operation Unsigned 16-bit integer Operation
ubikvote.opnum Operation Unsigned 16-bit integer Operation
icl_rpc.opnum Operation Unsigned 16-bit integer Operation
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
tkn4int.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.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 String
dcom.extent.size Extension Size Unsigned 32-bit integer
dcom.hresult HResult Unsigned 32-bit integer
dcom.ifp InterfacePointer No value
dcom.ip_cnt_data CntData Unsigned 32-bit integer
dcom.max_count MaxCount Unsigned 32-bit integer
dcom.objref OBJREF No value
dcom.objref.clsid CLSID String
dcom.objref.flags Flags Unsigned 32-bit integer
dcom.objref.iid IID String
dcom.objref.resolver_address ResolverAddress No value
dcom.objref.signature Signature Unsigned 32-bit integer
dcom.offset Offset Unsigned 32-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.ipid IPID String
dcom.stdobjref.oid OID Unsigned 64-bit integer
dcom.stdobjref.oxid OXID Unsigned 64-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 String
dcom.this.version_major VersionMajor Unsigned 16-bit integer
dcom.this.version_minor VersionMinor Unsigned 16-bit integer
dcom.tobedone ToBeDone Byte array
dcom.tobedone_len ToBeDoneLen Unsigned 32-bit integer
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.date VT_DATE Double-precision floating point
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_args Args Unsigned 32-bit integer
dispatch_flags Flags Unsigned 16-bit integer
dispatch_flags2 Flags2 Unsigned 16-bit integer
dispatch_flags_method Method Boolean
dispatch_flags_propget PropertyGet Boolean
dispatch_flags_propput PropertyPut Boolean
dispatch_flags_propputref PropertyPutRef Boolean
dispatch_id ID Unsigned 32-bit integer
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_riid RIID String
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_clsid CLSID String
remact_iid IID String
remact_interface_data InterfaceData No value
remact_interfaces Interfaces Unsigned 32-bit integer
remact_ipid IPID String
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_oxid OXID Unsigned 64-bit integer
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 String
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
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
afs4int.NameString_principal Principal Name String
afs4int.TaggedPath_tp_chars AFS Tagged Path String
afs4int.TaggedPath_tp_tag AFS Tagged Path Name Unsigned 32-bit integer
afs4int.accesstime_msec afs4int.accesstime_msec Unsigned 32-bit integer
afs4int.accesstime_sec afs4int.accesstime_sec Unsigned 32-bit integer
afs4int.acl_len Acl Length Unsigned 32-bit integer
afs4int.aclexpirationtime afs4int.aclexpirationtime Unsigned 32-bit integer
afs4int.acltype afs4int.acltype Unsigned 32-bit integer
afs4int.afsFid.Unique Unique Unsigned 32-bit integer afsFid Unique
afs4int.afsFid.Vnode Vnode Unsigned 32-bit integer afsFid Vnode
afs4int.afsFid.cell_high Cell High Unsigned 32-bit integer afsFid Cell High
afs4int.afsFid.cell_low Cell Low Unsigned 32-bit integer afsFid Cell Low
afs4int.afsFid.volume_high Volume High Unsigned 32-bit integer afsFid Volume High
afs4int.afsFid.volume_low Volume Low Unsigned 32-bit integer afsFid Volume Low
afs4int.afsTaggedPath_length Tagged Path Length Unsigned 32-bit integer
afs4int.afsacl_uuid1 AFS ACL UUID1 String UUID
afs4int.afserrortstatus_st AFS Error Code Unsigned 32-bit integer
afs4int.afsreturndesc_tokenid_high Tokenid High Unsigned 32-bit integer
afs4int.afsreturndesc_tokenid_low Tokenid low Unsigned 32-bit integer
afs4int.agtypeunique afs4int.agtypeunique Unsigned 32-bit integer
afs4int.anonymousaccess afs4int.anonymousaccess Unsigned 32-bit integer
afs4int.author afs4int.author Unsigned 32-bit integer
afs4int.beginrange afs4int.beginrange Unsigned 32-bit integer
afs4int.beginrangeext afs4int.beginrangeext Unsigned 32-bit integer
afs4int.blocksused afs4int.blocksused Unsigned 32-bit integer
afs4int.bulkfetchkeepalive_spare1 BulkFetch KeepAlive spare1 Unsigned 32-bit integer
afs4int.bulkfetchkeepalive_spare2 BulkKeepAlive spare4 Unsigned 32-bit integer
afs4int.bulkfetchstatus_size BulkFetchStatus Size Unsigned 32-bit integer
afs4int.bulkfetchvv_numvols afs4int.bulkfetchvv_numvols Unsigned 32-bit integer
afs4int.bulkfetchvv_spare1 afs4int.bulkfetchvv_spare1 Unsigned 32-bit integer
afs4int.bulkfetchvv_spare2 afs4int.bulkfetchvv_spare2 Unsigned 32-bit integer
afs4int.bulkkeepalive_numexecfids BulkKeepAlive numexecfids Unsigned 32-bit integer
afs4int.calleraccess afs4int.calleraccess Unsigned 32-bit integer
afs4int.cellidp_high cellidp high Unsigned 32-bit integer
afs4int.cellidp_low cellidp low Unsigned 32-bit integer
afs4int.changetime_msec afs4int.changetime_msec Unsigned 32-bit integer
afs4int.changetime_sec afs4int.changetime_sec Unsigned 32-bit integer
afs4int.clientspare1 afs4int.clientspare1 Unsigned 32-bit integer
afs4int.dataversion_high afs4int.dataversion_high Unsigned 32-bit integer
afs4int.dataversion_low afs4int.dataversion_low Unsigned 32-bit integer
afs4int.defaultcell_uuid Default Cell UUID String UUID
afs4int.devicenumber afs4int.devicenumber Unsigned 32-bit integer
afs4int.devicenumberhighbits afs4int.devicenumberhighbits Unsigned 32-bit integer
afs4int.endrange afs4int.endrange Unsigned 32-bit integer
afs4int.endrangeext afs4int.endrangeext Unsigned 32-bit integer
afs4int.expirationtime afs4int.expirationtime Unsigned 32-bit integer
afs4int.fetchdata_pipe_t_size FetchData Pipe_t size String
afs4int.filetype afs4int.filetype Unsigned 32-bit integer
afs4int.flags DFS Flags Unsigned 32-bit integer
afs4int.fstype Filetype Unsigned 32-bit integer
afs4int.gettime.syncdistance SyncDistance Unsigned 32-bit integer
afs4int.gettime_secondsp GetTime secondsp Unsigned 32-bit integer
afs4int.gettime_syncdispersion GetTime Syncdispersion Unsigned 32-bit integer
afs4int.gettime_usecondsp GetTime usecondsp Unsigned 32-bit integer
afs4int.group afs4int.group Unsigned 32-bit integer
afs4int.himaxspare afs4int.himaxspare Unsigned 32-bit integer
afs4int.interfaceversion afs4int.interfaceversion Unsigned 32-bit integer
afs4int.l_end_pos afs4int.l_end_pos Unsigned 32-bit integer
afs4int.l_end_pos_ext afs4int.l_end_pos_ext Unsigned 32-bit integer
afs4int.l_fstype afs4int.l_fstype Unsigned 32-bit integer
afs4int.l_pid afs4int.l_pid Unsigned 32-bit integer
afs4int.l_start_pos afs4int.l_start_pos Unsigned 32-bit integer
afs4int.l_start_pos_ext afs4int.l_start_pos_ext Unsigned 32-bit integer
afs4int.l_sysid afs4int.l_sysid Unsigned 32-bit integer
afs4int.l_type afs4int.l_type Unsigned 32-bit integer
afs4int.l_whence afs4int.l_whence Unsigned 32-bit integer
afs4int.length Length Unsigned 32-bit integer
afs4int.length_high afs4int.length_high Unsigned 32-bit integer
afs4int.length_low afs4int.length_low Unsigned 32-bit integer
afs4int.linkcount afs4int.linkcount Unsigned 32-bit integer
afs4int.lomaxspare afs4int.lomaxspare Unsigned 32-bit integer
afs4int.minvvp_high afs4int.minvvp_high Unsigned 32-bit integer
afs4int.minvvp_low afs4int.minvvp_low Unsigned 32-bit integer
afs4int.mode afs4int.mode Unsigned 32-bit integer
afs4int.modtime_msec afs4int.modtime_msec Unsigned 32-bit integer
afs4int.modtime_sec afs4int.modtime_sec Unsigned 32-bit integer
afs4int.nextoffset_high next offset high Unsigned 32-bit integer
afs4int.nextoffset_low next offset low Unsigned 32-bit integer
afs4int.objectuuid afs4int.objectuuid String UUID
afs4int.offset_high offset high Unsigned 32-bit integer
afs4int.opnum Operation Unsigned 16-bit integer Operation
afs4int.owner afs4int.owner Unsigned 32-bit integer
afs4int.parentunique afs4int.parentunique Unsigned 32-bit integer
afs4int.parentvnode afs4int.parentvnode Unsigned 32-bit integer
afs4int.pathconfspare afs4int.pathconfspare Unsigned 32-bit integer
afs4int.position_high Position High Unsigned 32-bit integer
afs4int.position_low Position Low Unsigned 32-bit integer
afs4int.principalName_size Principal Name Size Unsigned 32-bit integer
afs4int.principalName_size2 Principal Name Size2 Unsigned 32-bit integer
afs4int.readdir.size Readdir Size Unsigned 32-bit integer
afs4int.returntokenidp_high return token idp high Unsigned 32-bit integer
afs4int.returntokenidp_low return token idp low Unsigned 32-bit integer
afs4int.servermodtime_msec afs4int.servermodtime_msec Unsigned 32-bit integer
afs4int.servermodtime_sec afs4int.servermodtime_sec Unsigned 32-bit integer
afs4int.setcontext.parm7 Parm7: Unsigned 32-bit integer
afs4int.setcontext_clientsizesattrs ClientSizeAttrs: Unsigned 32-bit integer
afs4int.setcontext_rqst_epochtime EpochTime: Date/Time stamp
afs4int.setcontext_secobjextid SetObjectid: String UUID
afs4int.spare4 afs4int.spare4 Unsigned 32-bit integer
afs4int.spare5 afs4int.spare5 Unsigned 32-bit integer
afs4int.spare6 afs4int.spare6 Unsigned 32-bit integer
afs4int.st AFS4Int Error Status Code Unsigned 32-bit integer
afs4int.storestatus_accesstime_sec afs4int.storestatus_accesstime_sec Unsigned 32-bit integer
afs4int.storestatus_accesstime_usec afs4int.storestatus_accesstime_usec Unsigned 32-bit integer
afs4int.storestatus_changetime_sec afs4int.storestatus_changetime_sec Unsigned 32-bit integer
afs4int.storestatus_changetime_usec afs4int.storestatus_changetime_usec Unsigned 32-bit integer
afs4int.storestatus_clientspare1 afs4int.storestatus_clientspare1 Unsigned 32-bit integer
afs4int.storestatus_cmask afs4int.storestatus_cmask Unsigned 32-bit integer
afs4int.storestatus_devicenumber afs4int.storestatus_devicenumber Unsigned 32-bit integer
afs4int.storestatus_devicenumberhighbits afs4int.storestatus_devicenumberhighbits Unsigned 32-bit integer
afs4int.storestatus_devicetype afs4int.storestatus_devicetype Unsigned 32-bit integer
afs4int.storestatus_group afs4int.storestatus_group Unsigned 32-bit integer
afs4int.storestatus_length_high afs4int.storestatus_length_high Unsigned 32-bit integer
afs4int.storestatus_length_low afs4int.storestatus_length_low Unsigned 32-bit integer
afs4int.storestatus_mask afs4int.storestatus_mask Unsigned 32-bit integer
afs4int.storestatus_mode afs4int.storestatus_mode Unsigned 32-bit integer
afs4int.storestatus_modtime_sec afs4int.storestatus_modtime_sec Unsigned 32-bit integer
afs4int.storestatus_modtime_usec afs4int.storestatus_modtime_usec Unsigned 32-bit integer
afs4int.storestatus_owner afs4int.storestatus_owner Unsigned 32-bit integer
afs4int.storestatus_spare1 afs4int.storestatus_spare1 Unsigned 32-bit integer
afs4int.storestatus_spare2 afs4int.storestatus_spare2 Unsigned 32-bit integer
afs4int.storestatus_spare3 afs4int.storestatus_spare3 Unsigned 32-bit integer
afs4int.storestatus_spare4 afs4int.storestatus_spare4 Unsigned 32-bit integer
afs4int.storestatus_spare5 afs4int.storestatus_spare5 Unsigned 32-bit integer
afs4int.storestatus_spare6 afs4int.storestatus_spare6 Unsigned 32-bit integer
afs4int.storestatus_trunc_high afs4int.storestatus_trunc_high Unsigned 32-bit integer
afs4int.storestatus_trunc_low afs4int.storestatus_trunc_low Unsigned 32-bit integer
afs4int.storestatus_typeuuid afs4int.storestatus_typeuuid String UUID
afs4int.string String String
afs4int.tn_length afs4int.tn_length Unsigned 16-bit integer
afs4int.tn_size String Size Unsigned 32-bit integer
afs4int.tn_tag afs4int.tn_tag Unsigned 32-bit integer
afs4int.tokenid_hi afs4int.tokenid_hi Unsigned 32-bit integer
afs4int.tokenid_low afs4int.tokenid_low Unsigned 32-bit integer
afs4int.type_hi afs4int.type_hi Unsigned 32-bit integer
afs4int.type_high Type high Unsigned 32-bit integer
afs4int.type_low afs4int.type_low Unsigned 32-bit integer
afs4int.typeuuid afs4int.typeuuid String UUID
afs4int.uint afs4int.uint Unsigned 32-bit integer
afs4int.unique afs4int.unique Unsigned 32-bit integer
afs4int.uuid AFS UUID String UUID
afs4int.vnode afs4int.vnode Unsigned 32-bit integer
afs4int.volid_hi afs4int.volid_hi Unsigned 32-bit integer
afs4int.volid_low afs4int.volid_low Unsigned 32-bit integer
afs4int.volume_high afs4int.volume_high Unsigned 32-bit integer
afs4int.volume_low afs4int.volume_low Unsigned 32-bit integer
afs4int.vv_hi afs4int.vv_hi Unsigned 32-bit integer
afs4int.vv_low afs4int.vv_low Unsigned 32-bit integer
afs4int.vvage afs4int.vvage Unsigned 32-bit integer
afs4int.vvpingage afs4int.vvpingage Unsigned 32-bit integer
afs4int.vvspare1 afs4int.vvspare1 Unsigned 32-bit integer
afs4int.vvspare2 afs4int.vvspare2 Unsigned 32-bit integer
afsNetAddr.data IP Data Unsigned 8-bit integer
afsNetAddr.type Type Unsigned 16-bit integer
hf_afsconnparams_mask hf_afsconnparams_mask Unsigned 32-bit integer
hf_afsconnparams_values hf_afsconnparams_values Unsigned 32-bit integer
dhcpfo.additionalheaderbytes Additional Header Bytes Byte array
dhcpfo.addressestransfered addresses transfered Unsigned 8-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 8-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 8-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 Unsigned 32-bit integer
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
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.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
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_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.
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
diameter.applicationId ApplicationId Unsigned 32-bit integer
diameter.avp.code AVP Code Unsigned 32-bit integer
diameter.avp.data.addrfamily Address Family Unsigned 16-bit integer
diameter.avp.data.bytes Value Byte array
diameter.avp.data.int32 Value Signed 32-bit integer
diameter.avp.data.int64 Value Signed 64-bit integer
diameter.avp.data.string Value String
diameter.avp.data.time Time Date/Time stamp
diameter.avp.data.uint32 Value Unsigned 32-bit integer
diameter.avp.data.uint64 Value Unsigned 64-bit integer
diameter.avp.data.v4addr IPv4 Address IPv4 address
diameter.avp.data.v6addr IPv6 Address IPv6 address
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.length AVP Length Unsigned 24-bit integer
diameter.avp.session_id Session ID String
diameter.avp.vendorId AVP Vendor Id Unsigned 32-bit integer
diameter.code Command Code Unsigned 24-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
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.dest_unreach Destination Unreachable Boolean Destination Unreachable
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.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.route Route No value DVMRP V3 Route Report
dvmrp.split_horiz Split Horizon Boolean Split Horizon concealed route
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
igmp.daddr Dest Addr IPv4 address DVMRP Destination Address
igmp.maddr Multicast Addr IPv4 address DVMRP Multicast Address
igmp.neighbor Neighbor Addr IPv4 address DVMRP Neighbor Address
igmp.netmask Netmask IPv4 address DVMRP Netmask
igmp.saddr Source Addr IPv4 address DVMRP Source Address
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
dccp.adminop Admin Op Unsigned 8-bit integer Admin Op
dccp.adminval Admin Value Unsigned 32-bit integer Admin Value
dccp.brand Server Brand String Server Brand
dccp.checksum.length Length Unsigned 8-bit integer Checksum Length
dccp.checksum.sum Sum Byte array Checksum
dccp.checksum.type Type Unsigned 8-bit integer Checksum Type
dccp.clientid Client ID Unsigned 32-bit integer Client ID
dccp.date Date Date/Time stamp Date
dccp.floodop Flood Control Operation Unsigned 32-bit integer Flood Control Operation
dccp.len Packet Length Unsigned 16-bit integer Packet Length
dccp.max_pkt_vers Maximum Packet Version Unsigned 8-bit integer Maximum Packet Version
dccp.op Operation Type Unsigned 8-bit integer Operation Type
dccp.opnums.host Host IPv4 address Host
dccp.opnums.pid Process ID Unsigned 32-bit integer Process ID
dccp.opnums.report Report Unsigned 32-bit integer Report
dccp.opnums.retrans Retransmission Unsigned 32-bit integer Retransmission
dccp.pkt_vers Packet Version Unsigned 16-bit integer Packet Version
dccp.qdelay_ms Client Delay Unsigned 16-bit integer Client Delay
dccp.signature Signature Byte array Signature
dccp.target Target Unsigned 32-bit integer Target
dccp.trace Trace Bits Unsigned 32-bit integer Trace Bits
dccp.trace.admin Admin Requests Boolean Admin Requests
dccp.trace.anon Anonymous Requests Boolean Anonymous Requests
dccp.trace.client Authenticated Client Requests Boolean Authenticated Client Requests
dccp.trace.flood Input/Output Flooding Boolean Input/Output Flooding
dccp.trace.query Queries and Reports Boolean Queries and Reports
dccp.trace.ridc RID Cache Messages Boolean RID Cache Messages
dccp.trace.rlim Rate-Limited Requests Boolean Rate-Limited Requests
al.fragment DNP 3.0 AL Fragment Frame number DNP 3.0 Application Layer Fragment
al.fragment.error Defragmentation error Frame number Defragmentation error due to illegal fragments
al.fragment.multipletails Multiple tail fragments found Boolean Several tails were found when defragmenting the packet
al.fragment.overlap Fragment overlap Boolean Fragment overlaps with other fragments
al.fragment.overlap.conflict Conflicting data in fragment overlap Boolean Overlapping fragments contained conflicting data
al.fragment.reassembled_in Reassembled PDU In Frame Frame number This PDU is reassembled in this frame
al.fragment.toolongfragment Fragment too long Boolean Fragment contained data past end of packet
al.fragments DNP 3.0 AL Fragments No value DNP 3.0 Application Layer Fragments
dnp.hdr.CRC CRC Unsigned 16-bit integer
dnp.hdr.CRC_bad Bad CRC Boolean
dnp3.al.con Confirm Boolean
dnp3.al.ctl Application Control Unsigned 8-bit integer Application Layer Control Byte
dnp3.al.fin Final Boolean
dnp3.al.fir First Boolean
dnp3.al.func Application Layer Function Code Unsigned 8-bit integer Application Function Code
dnp3.al.seq Sequence Unsigned 8-bit integer Frame Sequence Number
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.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.type Type Unsigned 16-bit integer Query Type
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
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.tlv_len Length Unsigned 16-bit integer
dtp.tlv_type Type Unsigned 16-bit integer
dtp.version Version Unsigned 8-bit integer
vtp.some_mac Some MAC 6-byte Hardware (MAC) Address MAC Address of something
echo.data Echo data Byte array Echo data
echo.request Echo request Boolean Echo data
echo.response Echo response Boolean Echo data
esp.pad Pad Length Unsigned 8-bit integer
esp.protocol Next Header Unsigned 8-bit integer
esp.sequence Sequence Unsigned 32-bit integer
esp.spi SPI Unsigned 32-bit integer
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 32-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.pool_member_slection_policy_type Policy type Unsigned 8-bit integer
enrp.pool_member_slection_policy_value Policy value Signed 24-bit integer
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_m_bit M-Bit Boolean
enrp.server_information_reserved Reserved 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
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 Source or Destination Address 6-byte Hardware (MAC) Address Source or Destination Hardware Address
eth.dst Destination 6-byte Hardware (MAC) Address Destination Hardware Address
eth.len Length Unsigned 16-bit integer
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
ess.ContentHints ContentHints No value ContentHints
ess.ContentIdentifier ContentIdentifier Byte array ContentIdentifier
ess.ContentReference ContentReference No value ContentReference
ess.MLExpansionHistory MLExpansionHistory No value MLExpansionHistory
ess.MLExpansionHistory_item Item No value MLExpansionHistory/_item
ess.MsgSigDigest MsgSigDigest Byte array MsgSigDigest
ess.Receipt Receipt No value Receipt
ess.ReceiptRequest ReceiptRequest No value ReceiptRequest
ess.SecurityCategories_item Item No value SecurityCategories/_item
ess.SigningCertificate SigningCertificate No value SigningCertificate
ess.allOrFirstTier allOrFirstTier Signed 32-bit integer ReceiptsFrom/allOrFirstTier
ess.certHash certHash Byte array ESSCertID/certHash
ess.certs certs No value SigningCertificate/certs
ess.certs_item Item No value SigningCertificate/certs/_item
ess.contentDescription contentDescription String ContentHints/contentDescription
ess.contentType contentType String
ess.expansionTime expansionTime String MLData/expansionTime
ess.inAdditionTo inAdditionTo No value MLReceiptPolicy/inAdditionTo
ess.inAdditionTo_item Item No value MLReceiptPolicy/inAdditionTo/_item
ess.insteadOf insteadOf No value MLReceiptPolicy/insteadOf
ess.insteadOf_item Item No value MLReceiptPolicy/insteadOf/_item
ess.issuer issuer No value IssuerSerial/issuer
ess.issuerAndSerialNumber issuerAndSerialNumber No value EntityIdentifier/issuerAndSerialNumber
ess.issuerSerial issuerSerial No value ESSCertID/issuerSerial
ess.mailListIdentifier mailListIdentifier Unsigned 32-bit integer MLData/mailListIdentifier
ess.mlReceiptPolicy mlReceiptPolicy Unsigned 32-bit integer MLData/mlReceiptPolicy
ess.none none No value MLReceiptPolicy/none
ess.originatorSignatureValue originatorSignatureValue Byte array
ess.pString pString String ESSPrivacyMark/pString
ess.policies policies No value SigningCertificate/policies
ess.policies_item Item No value SigningCertificate/policies/_item
ess.receiptList receiptList No value ReceiptsFrom/receiptList
ess.receiptList_item Item No value ReceiptsFrom/receiptList/_item
ess.receiptsFrom receiptsFrom Unsigned 32-bit integer ReceiptRequest/receiptsFrom
ess.receiptsTo receiptsTo No value ReceiptRequest/receiptsTo
ess.receiptsTo_item Item No value ReceiptRequest/receiptsTo/_item
ess.serialNumber serialNumber Signed 32-bit integer IssuerSerial/serialNumber
ess.signedContentIdentifier signedContentIdentifier Byte array
ess.subjectKeyIdentifier subjectKeyIdentifier Byte array EntityIdentifier/subjectKeyIdentifier
ess.type type String SecurityCategory/type
ess.type_OID type String Type of Security Category
ess.utf8String utf8String String ESSPrivacyMark/utf8String
ess.value value No value SecurityCategory/value
ess.version version Signed 32-bit integer Receipt/version
eap.code Code Unsigned 8-bit integer
eap.desired_type Desired Auth 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
fcels.alpa AL_PA Map Byte array
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.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 Class Flags Unsigned 16-bit integer
fcels.logi.clsrcvsize Class Recv Size Unsigned 16-bit integer
fcels.logi.cmnfeatures Common Features Unsigned 16-bit integer
fcels.logi.e2e End2End Credit Unsigned 16-bit integer
fcels.logi.initctl Initiator Ctl Unsigned 16-bit integer
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.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.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
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
fcencap.crc CRC Unsigned 32-bit integer
fcencap.flags Flags Unsigned 8-bit integer
fcencap.flagsc Flags (1's Complement) Unsigned 8-bit integer
fcencap.framelen Frame Length (in Words) Unsigned 16-bit integer
fcencap.framelenc Frame Length (1's Complement) Unsigned 16-bit integer
fcencap.proto Protocol Unsigned 8-bit integer Protocol
fcencap.protoc Protocol (1's Complement) Unsigned 8-bit integer Protocol (1's Complement)
fcencap.tsec Time (secs) Unsigned 32-bit integer
fcencap.tusec Time (fraction) Unsigned 32-bit integer
fcencap.version Version Unsigned 8-bit integer
fcencap.versionc Version (1's Complement) Unsigned 8-bit integer
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.eof EOF Unsigned 8-bit integer
fcip.eofc EOF (1's Complement) Unsigned 8-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.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.word1 FCIP Encapsulation Word1 Unsigned 32-bit integer
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.eisl EISL Header Byte array EISL Header
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.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
fcct.ext_said Auth SAID Unsigned 32-bit integer
fcct.ext_tid Transaction ID Unsigned 32-bit integer
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
fcct_ext_authblk Auth Hash Blk Byte array
fcct_ext_reqnm Requestor Port Name Byte array
fcct_ext_tstamp Timestamp Byte array
fcfzs.gest.vendor Vendor Specific State Unsigned 32-bit integer
fcfzs.gzc.flags Capabilities Unsigned 8-bit integer
fcfzs.gzc.vendor Vendor Specific Flags Unsigned 32-bit integer
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.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.entry.numfc4desc Number of FC4 Descriptors Registered Unsigned 8-bit integer
fcdns.entry.objfmt Name Entry Object Format Unsigned 8-bit integer
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.req.areaid Area ID Scope Unsigned 8-bit integer
fcdns.req.class Class of Service Supported String
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.fc4feature FC-4 Feature Bits String
fcdns.req.fc4type FC-4 Type String
fcdns.req.fc4types FC-4 TYPEs Supported String
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.cos Class of Service Supported String
fcdns.rply.fc4desc FC-4 Descriptor Byte array
fcdns.rply.fc4desclen FC-4 Descriptor Length Unsigned 8-bit integer
fcdns.rply.fc4features FC-4 Features String
fcdns.rply.fc4type FC-4 Types Supported String
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.mbrtype Zone Member Type Unsigned 8-bit integer
fcdns.zonename Zone Name String
swils.zone.mbrid Member Identifier String
fcp.addlcdblen Additional CDB Length Unsigned 8-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.multilun Multi-Level LUN Byte array
fcp.rddata RDDATA Boolean
fcp.resid FCP_RESID Unsigned 32-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.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.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.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.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.chid Channel Image ID Unsigned 8-bit integer
sbccs.cmdflags Command Flags Unsigned 8-bit integer
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.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.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.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.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.statusflags Status Flags Unsigned 8-bit integer
sbccs.tinimageidcnt TIN Image ID Unsigned 8-bit integer
sbccs.token Token Unsigned 24-bit integer
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.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.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.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.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.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.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.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.QuoteRejectReason QuoteRejectReason (300) String QuoteRejectReason
fix.QuoteReqID QuoteReqID (131) String QuoteReqID
fix.QuoteRequestRejectReason QuoteRequestRejectReason (658) String QuoteRequestRejectReason
fix.QuoteRequestType QuoteRequestType (303) String QuoteRequestType
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.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
frame.cap_len Capture Frame Length Unsigned 32-bit integer
frame.file_off File Offset Signed 32-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 Total Frame Length Unsigned 32-bit integer
frame.protocols Protocols in frame String Protocols carried by this frame
frame.ref_time This is a Ref Time frame No value This frame is a Reference Time frame
frame.time Arrival Time Date/Time stamp Absolute time when this frame was captured
frame.time_delta Time delta from previous packet Time duration Time delta since previous diplayed frame
frame.time_relative Time since reference or first frame Time duration Time relative 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.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
lapd.control.u_modifier_cmd Command Unsigned 8-bit integer
lapd.control.u_modifier_resp Response Unsigned 8-bit integer
g723.lpc.b5b0 LPC_B5...LPC_B0 Unsigned 8-bit integer LPC_B5...LPC_B0
g723.rate.flag RATEFLAG_B0 Boolean RATEFLAG_B0
g723.vad.flag VADFLAG_B0 Boolean VADFLAG_B0
garp.attribute_event Event Unsigned 8-bit integer
garp.attribute_length Length Unsigned 8-bit integer
garp.attribute_type Type Unsigned 8-bit integer
garp.attribute_value_group_membership Value 6-byte Hardware (MAC) Address
garp.attribute_value_service_requirement Value Unsigned 8-bit integer
garp.protocol_id Protocol ID Unsigned 16-bit integer
garp.attribute_value Value 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.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.ext_flow_label Flow Label Data I Unsigned 16-bit integer Flow label data
gtp.ext_id Extension identifier Unsigned 16-bit integer Extension Identifier
gtp.ext_val Extension value String 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.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.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 8-bit integer Downlink next PDCP-PDU sequence number
gtp.rab_pdu_up Uplink next PDCP-PDU seq number Unsigned 8-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.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.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.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.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.bssmap_msgtype BSSMAP Message Type Unsigned 8-bit integer
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.imei IMEI String
gsm_a.imeisv IMEISV String
gsm_a.imsi IMSI String
gsm_a.len Length Unsigned 8-bit integer
gsm_a.none Sub tree No value
gsm_a.rp_msg_type RP Message Type Unsigned 8-bit integer
gsm_a.tmsi TMSI/P-TMSI Unsigned 32-bit integer
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-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
gsm_map.BasicServiceCriteria_item Item Unsigned 32-bit integer BasicServiceCriteria/_item
gsm_map.BasicServiceGroupList_item Item Unsigned 32-bit integer BasicServiceGroupList/_item
gsm_map.BcsmCamelTDPDataList_item Item No value BcsmCamelTDPDataList/_item
gsm_map.CallBarringFeatureList_item Item No value CallBarringFeatureList/_item
gsm_map.Dp_AnalysedInfoCriteriaList_item Item No value Dp-AnalysedInfoCriteriaList/_item
gsm_map.MobilityTriggers_item Item Byte array MobilityTriggers/_item
gsm_map.O_BcsmCamelTDP_CriteriaList_item Item No value O-BcsmCamelTDP-CriteriaList/_item
gsm_map.O_CauseValueCriteria_item Item Byte array O-CauseValueCriteria/_item
gsm_map.PrivateExtensionList_item Item No value PrivateExtensionList/_item
gsm_map.RoamingNumber_digits RoamingNumber digits String RoamingNumber digits
gsm_map.SendAuthenticationInfoArg SendAuthenticationInfoArg Byte array SendAuthenticationInfoArg
gsm_map.SendAuthenticationInfoRes_item Item No value SendAuthenticationInfoRes/_item
gsm_map.Sms_CAMEL_TDP_DataList_item Item No value Sms-CAMEL-TDP-DataList/_item
gsm_map.T_CauseValueCriteria_item Item Byte array T-CauseValueCriteria/_item
gsm_map.absent absent No value InvokeId/absent
gsm_map.absentSubscriberDiagnosticSM absentSubscriberDiagnosticSM Unsigned 32-bit integer
gsm_map.absentSubscriberReason absentSubscriberReason Unsigned 32-bit integer AbsentSubscriberParam/absentSubscriberReason
gsm_map.accessNetworkProtocolId accessNetworkProtocolId Unsigned 32-bit integer An-APDU/accessNetworkProtocolId
gsm_map.add_info add-info No value UpdateLocationArg/add-info
gsm_map.additionalAbsentSubscriberDiagnosticSM additionalAbsentSubscriberDiagnosticSM Unsigned 32-bit integer
gsm_map.additionalRequestedCAMEL_SubscriptionInfo additionalRequestedCAMEL-SubscriptionInfo Unsigned 32-bit integer
gsm_map.additionalSM_DeliveryOutcome additionalSM-DeliveryOutcome Unsigned 32-bit integer ReportSM-DeliveryStatusArg/additionalSM-DeliveryOutcome
gsm_map.additionalSignalInfo additionalSignalInfo No value
gsm_map.additional_Number additional-Number Unsigned 32-bit integer RoutingInfoForSMRes/locationInfoWithLMSI/additional-Number
gsm_map.ageOfLocationEstimate ageOfLocationEstimate Unsigned 32-bit integer
gsm_map.ageOfLocationInformation ageOfLocationInformation Unsigned 32-bit integer
gsm_map.alertReason alertReason Unsigned 32-bit integer ReadyForSM-Arg/alertReason
gsm_map.alertReasonIndicator alertReasonIndicator No value ReadyForSM-Arg/alertReasonIndicator
gsm_map.alertingPattern alertingPattern Byte array
gsm_map.allECTBarred allECTBarred Boolean
gsm_map.allGPRSData allGPRSData No value DeleteSubscriberDataArg/gprsSubscriptionDataWithdraw/allGPRSData
gsm_map.allIC-CallsBarred allIC-CallsBarred Boolean
gsm_map.allInformationSent allInformationSent No value ResumeCallHandlingArg/allInformationSent
gsm_map.allLSAData allLSAData No value DeleteSubscriberDataArg/lsaInformationWithdraw/allLSAData
gsm_map.allOGCallsBarred allOGCallsBarred Boolean
gsm_map.allPacketOrientedServicesBarred allPacketOrientedServicesBarred Boolean
gsm_map.allowedGSM_Algorithms allowedGSM-Algorithms Byte array PrepareHandoverV3Arg/allowedGSM-Algorithms
gsm_map.allowedUMTS_Algorithms allowedUMTS-Algorithms No value PrepareHandoverV3Arg/allowedUMTS-Algorithms
gsm_map.an_APDU an-APDU No value
gsm_map.apn apn Byte array InsertSubscriberDataArg/gprsSubscriptionData/gprsDataList/_item/apn
gsm_map.apn_InUse apn-InUse Byte array
gsm_map.apn_Subscribed apn-Subscribed Byte array
gsm_map.asciCallReference asciCallReference Byte array
gsm_map.assumedIdle assumedIdle No value SubscriberState/assumedIdle
gsm_map.authenticationSetList authenticationSetList No value SendIdentificationRes/authenticationSetList
gsm_map.authenticationSetList_item Item No value SendIdentificationRes/authenticationSetList/_item
gsm_map.autn autn Byte array SendAuthenticationInfoV3Res/authenticationSetList/quintupletList/_item/autn
gsm_map.auts auts Byte array SendAuthenticationInfoArgV3/re-synchronisationInfo/auts
gsm_map.b_Subscriber_Address b-Subscriber-Address Byte array ProvideSIWFSNumberArg/b-Subscriber-Address
gsm_map.b_subscriberNumber b-subscriberNumber Byte array
gsm_map.b_subscriberSubaddress b-subscriberSubaddress Byte array
gsm_map.basicService basicService Unsigned 32-bit integer
gsm_map.basicServiceCriteria basicServiceCriteria No value O-BcsmCamelTDP-CriteriaList/_item/basicServiceCriteria
gsm_map.basicServiceGroup basicServiceGroup Unsigned 32-bit integer
gsm_map.basicServiceGroupList basicServiceGroupList No value
gsm_map.basicServiceList basicServiceList No value DeleteSubscriberDataArg/basicServiceList
gsm_map.bcsmTriggerDetectionPoint bcsmTriggerDetectionPoint Unsigned 32-bit integer BcsmCamelTDPData/bcsmTriggerDetectionPoint
gsm_map.bearerService bearerService Byte array BasicService/bearerService
gsm_map.bearerServiceList bearerServiceList No value
gsm_map.bearerServiceList_item Item Byte array
gsm_map.broadcastInitEntitlement broadcastInitEntitlement No value InsertSubscriberDataArg/vbsSubscriptionData/_item/broadcastInitEntitlement
gsm_map.bss_APDU bss-APDU No value
gsm_map.bssmap_ServiceHandover bssmap-ServiceHandover Byte array
gsm_map.bssmap_ServiceHandoverList bssmap-ServiceHandoverList No value PrepareHandoverV3Arg/bssmap-ServiceHandoverList
gsm_map.bssmap_ServiceHandoverList_item Item No value PrepareHandoverV3Arg/bssmap-ServiceHandoverList/_item
gsm_map.callBarringCause callBarringCause Unsigned 32-bit integer
gsm_map.callBarringData callBarringData No value AnyTimeSubscriptionInterrogationRes/callBarringData
gsm_map.callBarringFeatureList callBarringFeatureList No value
gsm_map.callBarringInfo callBarringInfo No value
gsm_map.callForwardingData callForwardingData No value AnyTimeSubscriptionInterrogationRes/callForwardingData
gsm_map.callInfo callInfo No value
gsm_map.callOutcome callOutcome Unsigned 32-bit integer StatusReportArg/callReportdata/callOutcome
gsm_map.callReferenceNumber callReferenceNumber Byte array
gsm_map.callReportdata callReportdata No value StatusReportArg/callReportdata
gsm_map.callTypeCriteria callTypeCriteria Unsigned 32-bit integer
gsm_map.call_Direction call-Direction Byte array ProvideSIWFSNumberArg/call-Direction
gsm_map.camelBusy camelBusy No value SubscriberState/camelBusy
gsm_map.camelCapabilityHandling camelCapabilityHandling Unsigned 32-bit integer
gsm_map.camelInfo camelInfo No value SendRoutingInfoArg/camelInfo
gsm_map.camelInvoked camelInvoked Boolean
gsm_map.camelRoutingInfo camelRoutingInfo No value SendRoutingInfoRes/extendedRoutingInfo/camelRoutingInfo
gsm_map.camelSubscriptionInfoWithdraw camelSubscriptionInfoWithdraw No value DeleteSubscriberDataArg/camelSubscriptionInfoWithdraw
gsm_map.camel_SubscriptionInfo camel-SubscriptionInfo No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo
gsm_map.cancellationType cancellationType Unsigned 32-bit integer CancelLocationArg/cancellationType
gsm_map.category category Byte array InsertSubscriberDataArg/category
gsm_map.ccbs_Busy ccbs-Busy No value BusySubscriberParam/ccbs-Busy
gsm_map.ccbs_Call ccbs-Call No value
gsm_map.ccbs_Data ccbs-Data No value RegisterCC-EntryArg/ccbs-Data
gsm_map.ccbs_Feature ccbs-Feature No value
gsm_map.ccbs_FeatureList ccbs-FeatureList No value InterrogateSS-Res/genericServiceInfo/ccbs-FeatureList
gsm_map.ccbs_FeatureList_item Item No value InterrogateSS-Res/genericServiceInfo/ccbs-FeatureList/_item
gsm_map.ccbs_Index ccbs-Index Unsigned 32-bit integer
gsm_map.ccbs_Indicators ccbs-Indicators No value SendRoutingInfoRes/ccbs-Indicators
gsm_map.ccbs_Monitoring ccbs-Monitoring Unsigned 32-bit integer SetReportingStateArg/ccbs-Monitoring
gsm_map.ccbs_Possible ccbs-Possible No value
gsm_map.ccbs_SubscriberStatus ccbs-SubscriberStatus Unsigned 32-bit integer
gsm_map.cellGlobalIdOrServiceAreaIdFixedLength cellGlobalIdOrServiceAreaIdFixedLength Byte array SubscriberInfo/locationInformationGPRS/cellGlobalIdOrServiceAreaIdOrLAI/cellGlobalIdOrServiceAreaIdFixedLength
gsm_map.cellGlobalIdOrServiceAreaIdOrLAI cellGlobalIdOrServiceAreaIdOrLAI Unsigned 32-bit integer SubscriberInfo/locationInformationGPRS/cellGlobalIdOrServiceAreaIdOrLAI
gsm_map.cellIdFixedLength cellIdFixedLength Byte array LocationInformation/cellIdOrLAI/cellIdFixedLength
gsm_map.cellIdOrLAI cellIdOrLAI Unsigned 32-bit integer LocationInformation/cellIdOrLAI
gsm_map.channelType channelType No value SIWFSSignallingModifyArg/channelType
gsm_map.chargeableECTBarred chargeableECTBarred Boolean
gsm_map.chargingCharacteristics chargingCharacteristics Byte array
gsm_map.chargingId chargingId Byte array
gsm_map.chosenChannel chosenChannel No value
gsm_map.chosenChannelInfo chosenChannelInfo Byte array PrepareHandoverV3Res/chosenRadioResourceInformation/chosenChannelInfo
gsm_map.chosenRadioResourceInformation chosenRadioResourceInformation No value PrepareHandoverV3Res/chosenRadioResourceInformation
gsm_map.chosenSpeechVersion chosenSpeechVersion Byte array PrepareHandoverV3Res/chosenRadioResourceInformation/chosenSpeechVersion
gsm_map.cipheringAlgorithm cipheringAlgorithm Byte array PrepareGroupCallArg/cipheringAlgorithm
gsm_map.ck ck Byte array SendAuthenticationInfoV3Res/authenticationSetList/quintupletList/_item/ck
gsm_map.cliRestrictionOption cliRestrictionOption Unsigned 32-bit integer
gsm_map.clientIdentity clientIdentity No value InsertSubscriberDataArg/lcsInformation/lcs-PrivacyExceptionList/_item/externalClientList/_item/clientIdentity
gsm_map.clirInvoked clirInvoked Boolean
gsm_map.codec1 codec1 Byte array
gsm_map.codec2 codec2 Byte array
gsm_map.codec3 codec3 Byte array
gsm_map.codec4 codec4 Byte array
gsm_map.codec5 codec5 Byte array
gsm_map.codec6 codec6 Byte array
gsm_map.codec7 codec7 Byte array
gsm_map.codec8 codec8 Byte array
gsm_map.codec_Info codec-Info Byte array PrepareGroupCallArg/codec-Info
gsm_map.completeDataListIncluded completeDataListIncluded No value
gsm_map.contextIdList contextIdList No value DeleteSubscriberDataArg/gprsSubscriptionDataWithdraw/contextIdList
gsm_map.contextIdList_item Item Unsigned 32-bit integer DeleteSubscriberDataArg/gprsSubscriptionDataWithdraw/contextIdList/_item
gsm_map.cs_LCS_NotSupportedByUE cs-LCS-NotSupportedByUE No value UpdateLocationArg/cs-LCS-NotSupportedByUE
gsm_map.csiActive csiActive No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/o-IM-CSI/csiActive
gsm_map.csi_Active csi-Active No value
gsm_map.cugSubscriptionFlag cugSubscriptionFlag No value SendRoutingInfoRes/cugSubscriptionFlag
gsm_map.cug_CheckInfo cug-CheckInfo No value
gsm_map.cug_FeatureList cug-FeatureList No value InsertSubscriberDataArg/provisionedSS/_item/cug-Info/cug-FeatureList
gsm_map.cug_FeatureList_item Item No value InsertSubscriberDataArg/provisionedSS/_item/cug-Info/cug-FeatureList/_item
gsm_map.cug_Index cug-Index Unsigned 32-bit integer InsertSubscriberDataArg/provisionedSS/_item/cug-Info/cug-SubscriptionList/_item/cug-Index
gsm_map.cug_Info cug-Info No value InsertSubscriberDataArg/provisionedSS/_item/cug-Info
gsm_map.cug_Interlock cug-Interlock Byte array
gsm_map.cug_OutgoingAccess cug-OutgoingAccess No value Cug-CheckInfo/cug-OutgoingAccess
gsm_map.cug_RejectCause cug-RejectCause Unsigned 32-bit integer Cug-RejectParam/cug-RejectCause
gsm_map.cug_SubscriptionList cug-SubscriptionList No value InsertSubscriberDataArg/provisionedSS/_item/cug-Info/cug-SubscriptionList
gsm_map.cug_SubscriptionList_item Item No value InsertSubscriberDataArg/provisionedSS/_item/cug-Info/cug-SubscriptionList/_item
gsm_map.currentLocation currentLocation No value RequestedInfo/currentLocation
gsm_map.currentLocationRetrieved currentLocationRetrieved No value
gsm_map.currentPassword currentPassword String
gsm_map.d-IM-CSI d-IM-CSI Boolean
gsm_map.d-csi d-csi Boolean
gsm_map.d_CSI d-CSI No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/d-CSI
gsm_map.d_IM_CSI d-IM-CSI No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/d-IM-CSI
gsm_map.dataCodingScheme dataCodingScheme Byte array LcsClientName/dataCodingScheme
gsm_map.defaultCallHandling defaultCallHandling Unsigned 32-bit integer
gsm_map.defaultPriority defaultPriority Unsigned 32-bit integer
gsm_map.defaultSMS_Handling defaultSMS-Handling Unsigned 32-bit integer Sms-CAMEL-TDP-DataList/_item/defaultSMS-Handling
gsm_map.defaultSessionHandling defaultSessionHandling Unsigned 32-bit integer AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/gprs-CSI/gprs-CamelTDPDataList/_item/defaultSessionHandling
gsm_map.deliveryOutcomeIndicator deliveryOutcomeIndicator No value ReportSM-DeliveryStatusArg/deliveryOutcomeIndicator
gsm_map.destinationNumberCriteria destinationNumberCriteria No value
gsm_map.destinationNumberLengthList destinationNumberLengthList No value DestinationNumberCriteria/destinationNumberLengthList
gsm_map.destinationNumberLengthList_item Item Unsigned 32-bit integer DestinationNumberCriteria/destinationNumberLengthList/_item
gsm_map.destinationNumberList destinationNumberList No value DestinationNumberCriteria/destinationNumberList
gsm_map.destinationNumberList_item Item Byte array DestinationNumberCriteria/destinationNumberList/_item
gsm_map.diagnosticInfo diagnosticInfo Byte array Sm-DeliveryFailureCause/diagnosticInfo
gsm_map.dialledNumber dialledNumber Byte array Dp-AnalysedInfoCriteriaList/_item/dialledNumber
gsm_map.doublyChargeableECTBarred doublyChargeableECTBarred Boolean
gsm_map.dp_AnalysedInfoCriteriaList dp-AnalysedInfoCriteriaList No value
gsm_map.emlpp_Info emlpp-Info No value InsertSubscriberDataArg/provisionedSS/_item/emlpp-Info
gsm_map.encryptionAlgorithm encryptionAlgorithm Byte array PrepareHandoverV3Res/selectedUMTS-Algorithms/encryptionAlgorithm
gsm_map.encryptionAlgorithms encryptionAlgorithms Byte array PrepareHandoverV3Arg/allowedUMTS-Algorithms/encryptionAlgorithms
gsm_map.encryptionInfo encryptionInfo Byte array PrepareHandoverV3Arg/encryptionInfo
gsm_map.eventReportData eventReportData No value StatusReportArg/eventReportData
gsm_map.extId extId String PrivateExtension/extId
gsm_map.extType extType No value PrivateExtension/extType
gsm_map.ext_BearerService ext-BearerService Byte array
gsm_map.ext_ProtocolId ext-ProtocolId Unsigned 32-bit integer AdditionalSignalInfo/ext-ProtocolId
gsm_map.ext_Teleservice ext-Teleservice Byte array
gsm_map.extendedRoutingInfo extendedRoutingInfo Unsigned 32-bit integer SendRoutingInfoRes/extendedRoutingInfo
gsm_map.extensibleCallBarredParam extensibleCallBarredParam No value CallBarredParam/extensibleCallBarredParam
gsm_map.extensibleSystemFailureParam extensibleSystemFailureParam No value SystemFailureParam/extensibleSystemFailureParam
gsm_map.extension Extension Boolean Extension
gsm_map.extensionContainer extensionContainer No value
gsm_map.externalAddress externalAddress Byte array
gsm_map.externalClientList externalClientList No value InsertSubscriberDataArg/lcsInformation/lcs-PrivacyExceptionList/_item/externalClientList
gsm_map.externalClientList_item Item No value InsertSubscriberDataArg/lcsInformation/lcs-PrivacyExceptionList/_item/externalClientList/_item
gsm_map.forwardedToNumber forwardedToNumber Byte array
gsm_map.forwardedToSubaddress forwardedToSubaddress Byte array
gsm_map.forwardedtonumber_digits Forwarded To Number digits String Forwarded To Number digits
gsm_map.forwardingData forwardingData No value
gsm_map.forwardingFeatureList forwardingFeatureList No value ForwardingInfo/forwardingFeatureList
gsm_map.forwardingFeatureList_item Item No value
gsm_map.forwardingInfo forwardingInfo No value
gsm_map.forwardingInterrogationRequired forwardingInterrogationRequired No value SendRoutingInfoRes/forwardingInterrogationRequired
gsm_map.forwardingOptions forwardingOptions Byte array
gsm_map.forwardingReason forwardingReason Unsigned 32-bit integer SendRoutingInfoArg/forwardingReason
gsm_map.freezeP_TMSI freezeP-TMSI No value PurgeMS-Res/freezeP-TMSI
gsm_map.freezeTMSI freezeTMSI No value PurgeMS-Res/freezeTMSI
gsm_map.genericServiceInfo genericServiceInfo No value InterrogateSS-Res/genericServiceInfo
gsm_map.geodeticInformation geodeticInformation Byte array
gsm_map.geographicalInformation geographicalInformation Byte array
gsm_map.geranCodecList geranCodecList No value PrepareHandoverV3Arg/iuSupportedCodecsList/utranCodecList/geranCodecList
gsm_map.geran_classmark geran-classmark Byte array PrepareHandoverV3Arg/geran-classmark
gsm_map.ggsn_Address ggsn-Address Byte array
gsm_map.ggsn_Number ggsn-Number Byte array
gsm_map.globalerrorCode Global Error Code Unsigned 32-bit integer globalerrorCode
gsm_map.gmlc_List gmlc-List No value InsertSubscriberDataArg/lcsInformation/gmlc-List
gsm_map.gmlc_ListWithdraw gmlc-ListWithdraw No value DeleteSubscriberDataArg/gmlc-ListWithdraw
gsm_map.gmlc_List_item Item Byte array InsertSubscriberDataArg/lcsInformation/gmlc-List/_item
gsm_map.gmlc_Restriction gmlc-Restriction Unsigned 32-bit integer InsertSubscriberDataArg/lcsInformation/lcs-PrivacyExceptionList/_item/externalClientList/_item/gmlc-Restriction
gsm_map.gmscCamelSubscriptionInfo gmscCamelSubscriptionInfo No value SendRoutingInfoRes/extendedRoutingInfo/camelRoutingInfo/gmscCamelSubscriptionInfo
gsm_map.gmsc_Address gmsc-Address Byte array
gsm_map.gmsc_address_digits Gmsc Address digits digits String Gmsc Address digits
gsm_map.gprs-csi gprs-csi Boolean
gsm_map.gprsConnectionSuspended gprsConnectionSuspended No value SubBusyForMT-SMS-Param/gprsConnectionSuspended
gsm_map.gprsDataList gprsDataList No value InsertSubscriberDataArg/gprsSubscriptionData/gprsDataList
gsm_map.gprsDataList_item Item No value InsertSubscriberDataArg/gprsSubscriptionData/gprsDataList/_item
gsm_map.gprsNodeIndicator gprsNodeIndicator No value RoutingInfoForSMRes/locationInfoWithLMSI/gprsNodeIndicator
gsm_map.gprsSubscriptionData gprsSubscriptionData No value InsertSubscriberDataArg/gprsSubscriptionData
gsm_map.gprsSubscriptionDataWithdraw gprsSubscriptionDataWithdraw Unsigned 32-bit integer DeleteSubscriberDataArg/gprsSubscriptionDataWithdraw
gsm_map.gprsSupportIndicator gprsSupportIndicator No value
gsm_map.gprs_CSI gprs-CSI No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/gprs-CSI
gsm_map.gprs_CamelTDPDataList gprs-CamelTDPDataList No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/gprs-CSI/gprs-CamelTDPDataList
gsm_map.gprs_CamelTDPDataList_item Item No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/gprs-CSI/gprs-CamelTDPDataList/_item
gsm_map.gprs_MS_Class gprs-MS-Class No value SubscriberInfo/gprs-MS-Class
gsm_map.gprs_TriggerDetectionPoint gprs-TriggerDetectionPoint Unsigned 32-bit integer AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/gprs-CSI/gprs-CamelTDPDataList/_item/gprs-TriggerDetectionPoint
gsm_map.groupCallNumber groupCallNumber Byte array PrepareGroupCallRes/groupCallNumber
gsm_map.groupId groupId Byte array InsertSubscriberDataArg/vgcsSubscriptionData/_item/groupId
gsm_map.groupKey groupKey Byte array PrepareGroupCallArg/groupKey
gsm_map.groupKeyNumber groupKeyNumber Unsigned 32-bit integer PrepareGroupCallArg/groupKeyNumber
gsm_map.groupid groupid Byte array InsertSubscriberDataArg/vbsSubscriptionData/_item/groupid
gsm_map.gsmSCFAddress gsmSCFAddress Byte array BcsmCamelTDPData/gsmSCFAddress
gsm_map.gsmSCF_Address gsmSCF-Address Byte array
gsm_map.gsm_BearerCapability gsm-BearerCapability No value
gsm_map.handoverNumber handoverNumber Byte array
gsm_map.highLayerCompatibility highLayerCompatibility No value ProvideSIWFSNumberArg/highLayerCompatibility
gsm_map.hlobalerrorCodeoid Global Error Code OID Byte array globalerrorCodeoid
gsm_map.hlr_List hlr-List No value ResetArg/hlr-List
gsm_map.hlr_List_item Item Byte array ResetArg/hlr-List/_item
gsm_map.hlr_Number hlr-Number Byte array
gsm_map.hlr_number_digits Hlr-Number digits String Hlr-Number digits
gsm_map.ho_NumberNotRequired ho-NumberNotRequired No value
gsm_map.horizontal_accuracy horizontal-accuracy Byte array ProvideSubscriberLocation-Arg/lcs-QoS/horizontal-accuracy
gsm_map.identity identity Unsigned 32-bit integer CancelLocationArg/identity
gsm_map.ik ik Byte array SendAuthenticationInfoV3Res/authenticationSetList/quintupletList/_item/ik
gsm_map.imei imei Byte array
gsm_map.imeisv imeisv Byte array UpdateLocationArg/add-info/imeisv
gsm_map.immediateResponsePreferred immediateResponsePreferred No value SendAuthenticationInfoArgV3/immediateResponsePreferred
gsm_map.imsi imsi Byte array
gsm_map.imsi_WithLMSI imsi-WithLMSI No value CancelLocationArg/identity/imsi-WithLMSI
gsm_map.imsi_digits Imsi digits String Imsi digits
gsm_map.informPreviousNetworkEntity informPreviousNetworkEntity No value UpdateLocationArg/informPreviousNetworkEntity
gsm_map.integrityProtectionAlgorithm integrityProtectionAlgorithm Byte array PrepareHandoverV3Res/selectedUMTS-Algorithms/integrityProtectionAlgorithm
gsm_map.integrityProtectionAlgorithms integrityProtectionAlgorithms Byte array PrepareHandoverV3Arg/allowedUMTS-Algorithms/integrityProtectionAlgorithms
gsm_map.integrityProtectionInfo integrityProtectionInfo Byte array PrepareHandoverV3Arg/integrityProtectionInfo
gsm_map.interCUG_Restrictions interCUG-Restrictions Byte array InsertSubscriberDataArg/provisionedSS/_item/cug-Info/cug-FeatureList/_item/interCUG-Restrictions
gsm_map.internationalECTBarred internationalECTBarred Boolean
gsm_map.internationalOGCallsBarred internationalOGCallsBarred Boolean
gsm_map.internationalOGCallsNotToHPLMNCountryBarred internationalOGCallsNotToHPLMNCountryBarred Boolean
gsm_map.interrogationType interrogationType Unsigned 32-bit integer SendRoutingInfoArg/interrogationType
gsm_map.interzonalECTBarred interzonalECTBarred Boolean
gsm_map.interzonalOGCallsAndIntOGCallsNotToHPLMNCountryBarred interzonalOGCallsAndIntOGCallsNotToHPLMNCountryBarred Boolean
gsm_map.interzonalOGCallsBarred interzonalOGCallsBarred Boolean
gsm_map.interzonalOGCallsNotToHPLMNCountryBarred interzonalOGCallsNotToHPLMNCountryBarred Boolean
gsm_map.intraCUG_Options intraCUG-Options Unsigned 32-bit integer InsertSubscriberDataArg/provisionedSS/_item/cug-Info/cug-SubscriptionList/_item/intraCUG-Options
gsm_map.invoke invoke No value GSMMAPPDU/invoke
gsm_map.invokeCmd invokeCmd Unsigned 32-bit integer InvokePDU/invokeCmd
gsm_map.invokeId invokeId Unsigned 32-bit integer InvokePDU/invokeId
gsm_map.invokeid invokeid Signed 32-bit integer InvokeId/invokeid
gsm_map.isdn_BearerCapability isdn-BearerCapability No value ProvideSIWFSNumberArg/isdn-BearerCapability
gsm_map.istSupportIndicator istSupportIndicator Unsigned 32-bit integer Vlr-Capability/istSupportIndicator
gsm_map.iuAvailableCodecsList iuAvailableCodecsList No value PrepareHandoverV3Res/iuAvailableCodecsList
gsm_map.iuCurrentlyUsedCodec iuCurrentlyUsedCodec Byte array PrepareHandoverV3Arg/iuCurrentlyUsedCodec
gsm_map.iuSelectedCodec iuSelectedCodec Byte array PrepareHandoverV3Res/iuSelectedCodec
gsm_map.iuSupportedCodecsList iuSupportedCodecsList No value PrepareHandoverV3Arg/iuSupportedCodecsList
gsm_map.kc kc Byte array
gsm_map.keepCCBS_CallIndicator keepCCBS-CallIndicator No value SendRoutingInfoRes/ccbs-Indicators/keepCCBS-CallIndicator
gsm_map.laiFixedLength laiFixedLength Byte array
gsm_map.lcsCapabilitySet1 lcsCapabilitySet1 Boolean
gsm_map.lcsCapabilitySet2 lcsCapabilitySet2 Boolean
gsm_map.lcsCapabilitySet3 lcsCapabilitySet3 Boolean
gsm_map.lcsCapabilitySet4 lcsCapabilitySet4 Boolean
gsm_map.lcsClientDialedByMS lcsClientDialedByMS Byte array Lcs-ClientID/lcsClientDialedByMS
gsm_map.lcsClientExternalID lcsClientExternalID No value Lcs-ClientID/lcsClientExternalID
gsm_map.lcsClientInternalID lcsClientInternalID Unsigned 32-bit integer Lcs-ClientID/lcsClientInternalID
gsm_map.lcsClientName lcsClientName No value Lcs-ClientID/lcsClientName
gsm_map.lcsClientType lcsClientType Unsigned 32-bit integer Lcs-ClientID/lcsClientType
gsm_map.lcsInformation lcsInformation No value InsertSubscriberDataArg/lcsInformation
gsm_map.lcsLocationInfo lcsLocationInfo No value
gsm_map.lcs_ClientID lcs-ClientID No value
gsm_map.lcs_Event lcs-Event Unsigned 32-bit integer SubscriberLocationReport-Arg/lcs-Event
gsm_map.lcs_Priority lcs-Priority Byte array ProvideSubscriberLocation-Arg/lcs-Priority
gsm_map.lcs_PrivacyExceptionList lcs-PrivacyExceptionList No value InsertSubscriberDataArg/lcsInformation/lcs-PrivacyExceptionList
gsm_map.lcs_PrivacyExceptionList_item Item No value InsertSubscriberDataArg/lcsInformation/lcs-PrivacyExceptionList/_item
gsm_map.lcs_QoS lcs-QoS No value ProvideSubscriberLocation-Arg/lcs-QoS
gsm_map.lmsi lmsi Byte array
gsm_map.lmu_Indicator lmu-Indicator No value InsertSubscriberDataArg/lmu-Indicator
gsm_map.localerrorCode Local Error Code Unsigned 32-bit integer localerrorCode
gsm_map.locationEstimate locationEstimate Byte array
gsm_map.locationEstimateType locationEstimateType Unsigned 32-bit integer ProvideSubscriberLocation-Arg/locationType/locationEstimateType
gsm_map.locationInfoWithLMSI locationInfoWithLMSI No value RoutingInfoForSMRes/locationInfoWithLMSI
gsm_map.locationInformation locationInformation No value SubscriberInfo/locationInformation
gsm_map.locationInformationGPRS locationInformationGPRS No value SubscriberInfo/locationInformationGPRS
gsm_map.locationNumber locationNumber Byte array LocationInformation/locationNumber
gsm_map.locationType locationType No value ProvideSubscriberLocation-Arg/locationType
gsm_map.longFTN_Supported longFTN-Supported No value
gsm_map.longForwardedToNumber longForwardedToNumber Byte array ForwardingFeatureList/longForwardedToNumber
gsm_map.lowerLayerCompatibility lowerLayerCompatibility No value ProvideSIWFSNumberArg/lowerLayerCompatibility
gsm_map.lsaActiveModeIndicator lsaActiveModeIndicator No value InsertSubscriberDataArg/lsaInformation/lsaDataList/_item/lsaActiveModeIndicator
gsm_map.lsaAttributes lsaAttributes Byte array InsertSubscriberDataArg/lsaInformation/lsaDataList/_item/lsaAttributes
gsm_map.lsaDataList lsaDataList No value InsertSubscriberDataArg/lsaInformation/lsaDataList
gsm_map.lsaDataList_item Item No value InsertSubscriberDataArg/lsaInformation/lsaDataList/_item
gsm_map.lsaIdentity lsaIdentity Byte array InsertSubscriberDataArg/lsaInformation/lsaDataList/_item/lsaIdentity
gsm_map.lsaIdentityList lsaIdentityList No value DeleteSubscriberDataArg/lsaInformationWithdraw/lsaIdentityList
gsm_map.lsaIdentityList_item Item Byte array DeleteSubscriberDataArg/lsaInformationWithdraw/lsaIdentityList/_item
gsm_map.lsaInformation lsaInformation No value InsertSubscriberDataArg/lsaInformation
gsm_map.lsaInformationWithdraw lsaInformationWithdraw Unsigned 32-bit integer DeleteSubscriberDataArg/lsaInformationWithdraw
gsm_map.lsaOnlyAccessIndicator lsaOnlyAccessIndicator Unsigned 32-bit integer InsertSubscriberDataArg/lsaInformation/lsaOnlyAccessIndicator
gsm_map.m-csi m-csi Boolean
gsm_map.mSNetworkCapability mSNetworkCapability Byte array SubscriberInfo/gprs-MS-Class/mSNetworkCapability
gsm_map.mSRadioAccessCapability mSRadioAccessCapability Byte array SubscriberInfo/gprs-MS-Class/mSRadioAccessCapability
gsm_map.m_CSI m-CSI No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/m-CSI
gsm_map.mapsendendsignalarg mapSendEndSignalArg Byte array mapSendEndSignalArg
gsm_map.matchType matchType Unsigned 32-bit integer DestinationNumberCriteria/matchType
gsm_map.maximumEntitledPriority maximumEntitledPriority Unsigned 32-bit integer InterrogateSS-Res/genericServiceInfo/maximumEntitledPriority
gsm_map.maximumentitledPriority maximumentitledPriority Unsigned 32-bit integer InsertSubscriberDataArg/provisionedSS/_item/emlpp-Info/maximumentitledPriority
gsm_map.mcefSet mcefSet Boolean
gsm_map.mg-csi mg-csi Boolean
gsm_map.mg_csi mg-csi No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/mg-csi
gsm_map.misdn_digits Misdn digits String Misdn digits
gsm_map.mlcNumber mlcNumber Byte array RoutingInfoForLCS-Arg/mlcNumber
gsm_map.mlc_Number mlc-Number Byte array ProvideSubscriberLocation-Arg/mlc-Number
gsm_map.mnpInfoRes mnpInfoRes No value SubscriberInfo/mnpInfoRes
gsm_map.mnpRequestedInfo mnpRequestedInfo No value RequestedInfo/mnpRequestedInfo
gsm_map.mnrfSet mnrfSet Boolean
gsm_map.mnrgSet mnrgSet Boolean
gsm_map.mo-sms-csi mo-sms-csi Boolean
gsm_map.mo_sms_CSI mo-sms-CSI No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/mo-sms-CSI
gsm_map.mobileNotReachableReason mobileNotReachableReason Unsigned 32-bit integer SendRoutingInfoForGprsRes/mobileNotReachableReason
gsm_map.mobilityTriggers mobilityTriggers No value
gsm_map.modificationRequestFor_CB_Info modificationRequestFor-CB-Info No value AnyTimeModificationArg/modificationRequestFor-CB-Info
gsm_map.modificationRequestFor_CF_Info modificationRequestFor-CF-Info No value AnyTimeModificationArg/modificationRequestFor-CF-Info
gsm_map.modificationRequestFor_CSI modificationRequestFor-CSI No value AnyTimeModificationArg/modificationRequestFor-CSI
gsm_map.modificationRequestFor_ODB_data modificationRequestFor-ODB-data No value AnyTimeModificationArg/modificationRequestFor-ODB-data
gsm_map.modifyCSI_State modifyCSI-State Unsigned 32-bit integer AnyTimeModificationArg/modificationRequestFor-CSI/modifyCSI-State
gsm_map.modifyNotificationToCSE modifyNotificationToCSE Unsigned 32-bit integer
gsm_map.molr_List molr-List No value InsertSubscriberDataArg/lcsInformation/molr-List
gsm_map.molr_List_item Item No value InsertSubscriberDataArg/lcsInformation/molr-List/_item
gsm_map.monitoringMode monitoringMode Unsigned 32-bit integer StatusReportArg/callReportdata/monitoringMode
gsm_map.moreMessagesToSend moreMessagesToSend No value Mt-forwardSM-Arg/moreMessagesToSend
gsm_map.msNotReachable msNotReachable No value RestoreDataRes/msNotReachable
gsm_map.ms_Classmark2 ms-Classmark2 Byte array SubscriberInfo/ms-Classmark2
gsm_map.ms_classmark ms-classmark No value RequestedInfo/ms-classmark
gsm_map.msc_Number msc-Number Byte array
gsm_map.msisdn msisdn Byte array
gsm_map.mt-sms-csi mt-sms-csi Boolean
gsm_map.mt_smsCAMELTDP_CriteriaList mt-smsCAMELTDP-CriteriaList No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/mt-smsCAMELTDP-CriteriaList
gsm_map.mt_smsCAMELTDP_CriteriaList_item Item No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/mt-smsCAMELTDP-CriteriaList/_item
gsm_map.mt_sms_CSI mt-sms-CSI No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/mt-sms-CSI
gsm_map.multicallBearerInfo multicallBearerInfo Unsigned 32-bit integer PrepareHandoverV3Res/multicallBearerInfo
gsm_map.multipleBearerNotSupported multipleBearerNotSupported No value PrepareHandoverV3Res/multipleBearerNotSupported
gsm_map.multipleBearerRequested multipleBearerRequested No value PrepareHandoverV3Arg/multipleBearerRequested
gsm_map.multipleECTBarred multipleECTBarred Boolean
gsm_map.mw_Status mw-Status Byte array InformServiceCentreArg/mw-Status
gsm_map.na_ESRD na-ESRD Byte array SubscriberLocationReport-Arg/na-ESRD
gsm_map.na_ESRK na-ESRK Byte array SubscriberLocationReport-Arg/na-ESRK
gsm_map.naea_PreferredCI naea-PreferredCI No value
gsm_map.naea_PreferredCIC naea-PreferredCIC Byte array Naea-PreferredCI/naea-PreferredCIC
gsm_map.nameString nameString Byte array LcsClientName/nameString
gsm_map.nature_of_number Nature of number Unsigned 8-bit integer ature of number
gsm_map.netDetNotReachable netDetNotReachable Unsigned 32-bit integer SubscriberInfo/ps-SubscriberState/netDetNotReachable
gsm_map.networkAccessMode networkAccessMode Unsigned 32-bit integer InsertSubscriberDataArg/networkAccessMode
gsm_map.networkNode_Number networkNode-Number Byte array RoutingInfoForSMRes/locationInfoWithLMSI/networkNode-Number
gsm_map.networkResource networkResource Unsigned 32-bit integer
gsm_map.networkSignalInfo networkSignalInfo No value
gsm_map.noReplyConditionTime noReplyConditionTime Signed 32-bit integer
gsm_map.noSM_RP_DA noSM-RP-DA No value Sm-RP-DA/noSM-RP-DA
gsm_map.noSM_RP_OA noSM-RP-OA No value Sm-RP-OA/noSM-RP-OA
gsm_map.notProvidedFromSGSN notProvidedFromSGSN No value SubscriberInfo/ps-SubscriberState/notProvidedFromSGSN
gsm_map.notProvidedFromVLR notProvidedFromVLR No value SubscriberState/notProvidedFromVLR
gsm_map.notificationToCSE notificationToCSE No value
gsm_map.notificationToMSUser notificationToMSUser Unsigned 32-bit integer
gsm_map.nsapi nsapi Unsigned 32-bit integer
gsm_map.numberOfForwarding numberOfForwarding Unsigned 32-bit integer SendRoutingInfoArg/numberOfForwarding
gsm_map.numberOfRequestedVectors numberOfRequestedVectors Unsigned 32-bit integer SendAuthenticationInfoArgV3/numberOfRequestedVectors
gsm_map.numberPortabilityStatus numberPortabilityStatus Unsigned 32-bit integer
gsm_map.number_plan Number plan Unsigned 8-bit integer Number plan
gsm_map.o-IM-CSI o-IM-CSI Boolean
gsm_map.o-csi o-csi Boolean
gsm_map.o_BcsmCamelTDPDataList o-BcsmCamelTDPDataList No value
gsm_map.o_BcsmCamelTDP_CriteriaList o-BcsmCamelTDP-CriteriaList No value
gsm_map.o_BcsmTriggerDetectionPoint o-BcsmTriggerDetectionPoint Unsigned 32-bit integer
gsm_map.o_CSI o-CSI No value
gsm_map.o_CauseValueCriteria o-CauseValueCriteria No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/o-IM-BcsmCamelTDP-CriteriaList/_item/o-CauseValueCriteria
gsm_map.o_IM_BcsmCamelTDP_CriteriaList o-IM-BcsmCamelTDP-CriteriaList No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/o-IM-BcsmCamelTDP-CriteriaList
gsm_map.o_IM_BcsmCamelTDP_CriteriaList_item Item No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/o-IM-BcsmCamelTDP-CriteriaList/_item
gsm_map.o_IM_CSI o-IM-CSI No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/o-IM-CSI
gsm_map.odb odb No value AnyTimeSubscriptionInterrogationArg/requestedSubscriptionInfo/odb
gsm_map.odb_Data odb-Data No value
gsm_map.odb_GeneralData odb-GeneralData Byte array
gsm_map.odb_HPLMN_Data odb-HPLMN-Data Byte array Odb-data/odb-HPLMN-Data
gsm_map.odb_Info odb-Info No value AnyTimeSubscriptionInterrogationRes/odb-Info
gsm_map.odb_data odb-data No value AnyTimeModificationArg/modificationRequestFor-ODB-data/odb-data
gsm_map.offeredCamel4CSIs offeredCamel4CSIs Byte array Vlr-Capability/offeredCamel4CSIs
gsm_map.offeredCamel4CSIsInSGSN offeredCamel4CSIsInSGSN Byte array AnyTimeSubscriptionInterrogationRes/offeredCamel4CSIsInSGSN
gsm_map.offeredCamel4CSIsInVLR offeredCamel4CSIsInVLR Byte array AnyTimeSubscriptionInterrogationRes/offeredCamel4CSIsInVLR
gsm_map.omc_Id omc-Id Byte array ActivateTraceModeArg/omc-Id
gsm_map.orNotSupportedInGMSC orNotSupportedInGMSC No value ProvideRoamingNumberArg/orNotSupportedInGMSC
gsm_map.or_Capability or-Capability Unsigned 32-bit integer SendRoutingInfoArg/or-Capability
gsm_map.or_Interrogation or-Interrogation No value
gsm_map.overrideCategory overrideCategory Unsigned 32-bit integer Ss-SubscriptionOption/overrideCategory
gsm_map.password Password Unsigned 8-bit integer Password
gsm_map.pcsExtensions pcsExtensions No value ExtensionContainer/pcsExtensions
gsm_map.pdp_Address pdp-Address Byte array
gsm_map.pdp_ContextActive pdp-ContextActive No value
gsm_map.pdp_ContextId pdp-ContextId Unsigned 32-bit integer InsertSubscriberDataArg/gprsSubscriptionData/gprsDataList/_item/pdp-ContextId
gsm_map.pdp_ContextIdentifier pdp-ContextIdentifier Unsigned 32-bit integer
gsm_map.pdp_Type pdp-Type Byte array
gsm_map.phase1 phase1 Boolean
gsm_map.phase2 phase2 Boolean
gsm_map.phase3 phase3 Boolean
gsm_map.phase4 phase4 Boolean
gsm_map.plmnClientList plmnClientList No value InsertSubscriberDataArg/lcsInformation/lcs-PrivacyExceptionList/_item/plmnClientList
gsm_map.plmnClientList_item Item Unsigned 32-bit integer InsertSubscriberDataArg/lcsInformation/lcs-PrivacyExceptionList/_item/plmnClientList/_item
gsm_map.plmnSpecificBarringType1 plmnSpecificBarringType1 Boolean
gsm_map.plmnSpecificBarringType2 plmnSpecificBarringType2 Boolean
gsm_map.plmnSpecificBarringType3 plmnSpecificBarringType3 Boolean
gsm_map.plmnSpecificBarringType4 plmnSpecificBarringType4 Boolean
gsm_map.positionMethodFailure_Diagnostic positionMethodFailure-Diagnostic Unsigned 32-bit integer PositionMethodFailure-Param/positionMethodFailure-Diagnostic
gsm_map.preferentialCUG_Indicator preferentialCUG-Indicator Unsigned 32-bit integer InsertSubscriberDataArg/provisionedSS/_item/cug-Info/cug-FeatureList/_item/preferentialCUG-Indicator
gsm_map.premiumRateEntertainementOGCallsBarred premiumRateEntertainementOGCallsBarred Boolean
gsm_map.premiumRateInformationOGCallsBarred premiumRateInformationOGCallsBarred Boolean
gsm_map.priority priority Unsigned 32-bit integer PrepareGroupCallArg/priority
gsm_map.privacyOverride privacyOverride No value ProvideSubscriberLocation-Arg/privacyOverride
gsm_map.privateExtensionList privateExtensionList No value ExtensionContainer/privateExtensionList
gsm_map.protocolId protocolId Unsigned 32-bit integer Bss-APDU/protocolId
gsm_map.provisionedSS provisionedSS No value InsertSubscriberDataArg/provisionedSS
gsm_map.provisionedSS_item Item Unsigned 32-bit integer InsertSubscriberDataArg/provisionedSS/_item
gsm_map.ps_AttachedNotReachableForPaging ps-AttachedNotReachableForPaging No value SubscriberInfo/ps-SubscriberState/ps-AttachedNotReachableForPaging
gsm_map.ps_AttachedReachableForPaging ps-AttachedReachableForPaging No value SubscriberInfo/ps-SubscriberState/ps-AttachedReachableForPaging
gsm_map.ps_Detached ps-Detached No value SubscriberInfo/ps-SubscriberState/ps-Detached
gsm_map.ps_PDP_ActiveNotReachableForPaging ps-PDP-ActiveNotReachableForPaging No value SubscriberInfo/ps-SubscriberState/ps-PDP-ActiveNotReachableForPaging
gsm_map.ps_PDP_ActiveNotReachableForPaging_item Item No value SubscriberInfo/ps-SubscriberState/ps-PDP-ActiveNotReachableForPaging/_item
gsm_map.ps_PDP_ActiveReachableForPaging ps-PDP-ActiveReachableForPaging No value SubscriberInfo/ps-SubscriberState/ps-PDP-ActiveReachableForPaging
gsm_map.ps_PDP_ActiveReachableForPaging_item Item No value SubscriberInfo/ps-SubscriberState/ps-PDP-ActiveReachableForPaging/_item
gsm_map.ps_SubscriberState ps-SubscriberState Unsigned 32-bit integer SubscriberInfo/ps-SubscriberState
gsm_map.psi-enhancements psi-enhancements Boolean
gsm_map.qos2_Negotiated qos2-Negotiated Byte array
gsm_map.qos2_Requested qos2-Requested Byte array
gsm_map.qos2_Subscribed qos2-Subscribed Byte array
gsm_map.qos_Negotiated qos-Negotiated Byte array
gsm_map.qos_Requested qos-Requested Byte array
gsm_map.qos_Subscribed qos-Subscribed Byte array
gsm_map.quintupletList quintupletList No value SendAuthenticationInfoV3Res/authenticationSetList/quintupletList
gsm_map.quintupletList_item Item No value SendAuthenticationInfoV3Res/authenticationSetList/quintupletList/_item
gsm_map.rab_ConfigurationIndicator rab-ConfigurationIndicator No value PrepareHandoverV3Arg/rab-ConfigurationIndicator
gsm_map.rab_Id rab-Id Unsigned 32-bit integer
gsm_map.radioResourceInformation radioResourceInformation Byte array
gsm_map.radioResourceList radioResourceList No value PrepareHandoverV3Arg/radioResourceList
gsm_map.radioResourceList_item Item No value PrepareHandoverV3Arg/radioResourceList/_item
gsm_map.ranap_ServiceHandover ranap-ServiceHandover Byte array PrepareHandoverV3Arg/ranap-ServiceHandover
gsm_map.rand rand Byte array
gsm_map.re_synchronisationInfo re-synchronisationInfo No value SendAuthenticationInfoArgV3/re-synchronisationInfo
gsm_map.regionalSubscriptionData regionalSubscriptionData No value InsertSubscriberDataArg/regionalSubscriptionData
gsm_map.regionalSubscriptionData_item Item Byte array InsertSubscriberDataArg/regionalSubscriptionData/_item
gsm_map.regionalSubscriptionIdentifier regionalSubscriptionIdentifier Byte array DeleteSubscriberDataArg/regionalSubscriptionIdentifier
gsm_map.regionalSubscriptionResponse regionalSubscriptionResponse Unsigned 32-bit integer
gsm_map.registrationAllCF-Barred registrationAllCF-Barred Boolean
gsm_map.registrationCFNotToHPLMN-Barred registrationCFNotToHPLMN-Barred Boolean
gsm_map.registrationInternationalCF-Barred registrationInternationalCF-Barred Boolean
gsm_map.registrationInterzonalCF-Barred registrationInterzonalCF-Barred Boolean
gsm_map.registrationInterzonalCFNotToHPLMN-Barred registrationInterzonalCFNotToHPLMN-Barred Boolean
gsm_map.releaseGroupCall releaseGroupCall No value ProcessGroupCallSignallingArg/releaseGroupCall
gsm_map.relocationNumberList relocationNumberList No value PrepareHandoverV3Res/relocationNumberList
gsm_map.relocationNumberList_item Item No value PrepareHandoverV3Res/relocationNumberList/_item
gsm_map.replaceB_Number replaceB-Number No value RemoteUserFreeArg/replaceB-Number
gsm_map.requestedCAMEL_SubscriptionInfo requestedCAMEL-SubscriptionInfo Unsigned 32-bit integer AnyTimeSubscriptionInterrogationArg/requestedSubscriptionInfo/requestedCAMEL-SubscriptionInfo
gsm_map.requestedCamel_SubscriptionInfo requestedCamel-SubscriptionInfo Unsigned 32-bit integer AnyTimeModificationArg/modificationRequestFor-CSI/requestedCamel-SubscriptionInfo
gsm_map.requestedDomain requestedDomain Unsigned 32-bit integer RequestedInfo/requestedDomain
gsm_map.requestedInfo requestedInfo No value
gsm_map.requestedSS_Info requestedSS-Info No value AnyTimeSubscriptionInterrogationArg/requestedSubscriptionInfo/requestedSS-Info
gsm_map.requestedSubscriptionInfo requestedSubscriptionInfo No value AnyTimeSubscriptionInterrogationArg/requestedSubscriptionInfo
gsm_map.requestingNodeType requestingNodeType Unsigned 32-bit integer SendAuthenticationInfoArgV3/requestingNodeType
gsm_map.requestingPLMN_Id requestingPLMN-Id Byte array SendAuthenticationInfoArgV3/requestingPLMN-Id
gsm_map.responseTime responseTime No value ProvideSubscriberLocation-Arg/lcs-QoS/responseTime
gsm_map.responseTimeCategory responseTimeCategory Unsigned 32-bit integer ProvideSubscriberLocation-Arg/lcs-QoS/responseTime/responseTimeCategory
gsm_map.returnError returnError No value GSMMAPPDU/returnError
gsm_map.returnResult returnResult No value GSMMAPPDU/returnResult
gsm_map.returnerrorresult returnError_result Unsigned 32-bit integer returnError_result
gsm_map.returnresultresult returnResult_result Byte array returnResult_result
gsm_map.rnc_Address rnc-Address Byte array
gsm_map.roamerAccessToHPLMN-AP-Barred roamerAccessToHPLMN-AP-Barred Boolean
gsm_map.roamerAccessToVPLMN-AP-Barred roamerAccessToVPLMN-AP-Barred Boolean
gsm_map.roamingNotAllowedCause roamingNotAllowedCause Unsigned 32-bit integer RoamingNotAllowedParam/roamingNotAllowedCause
gsm_map.roamingNumber roamingNumber Byte array
gsm_map.roamingOutsidePLMN-Barred roamingOutsidePLMN-Barred Boolean
gsm_map.roamingOutsidePLMN-CountryBarred roamingOutsidePLMN-CountryBarred Boolean
gsm_map.roamingOutsidePLMNIC-CallsBarred roamingOutsidePLMNIC-CallsBarred Boolean
gsm_map.roamingOutsidePLMNICountryIC-CallsBarred roamingOutsidePLMNICountryIC-CallsBarred Boolean
gsm_map.roamingOutsidePLMNOG-CallsBarred roamingOutsidePLMNOG-CallsBarred Boolean
gsm_map.roamingRestrictedInSgsnDueToUnsupportedFeature roamingRestrictedInSgsnDueToUnsupportedFeature No value InsertSubscriberDataArg/roamingRestrictedInSgsnDueToUnsupportedFeature
gsm_map.roamingRestrictedInSgsnDueToUnsuppportedFeature roamingRestrictedInSgsnDueToUnsuppportedFeature No value DeleteSubscriberDataArg/roamingRestrictedInSgsnDueToUnsuppportedFeature
gsm_map.roamingRestrictionDueToUnsupportedFeature roamingRestrictionDueToUnsupportedFeature No value
gsm_map.routeingAreaIdentity routeingAreaIdentity Byte array SubscriberInfo/locationInformationGPRS/routeingAreaIdentity
gsm_map.routeingNumber routeingNumber Byte array SubscriberInfo/mnpInfoRes/routeingNumber
gsm_map.routingInfo routingInfo Unsigned 32-bit integer SendRoutingInfoRes/extendedRoutingInfo/routingInfo
gsm_map.ruf_Outcome ruf-Outcome Unsigned 32-bit integer RemoteUserFreeRes/ruf-Outcome
gsm_map.sIWFSNumber sIWFSNumber Byte array ProvideSIWFSNumberRes/sIWFSNumber
gsm_map.sai_Present sai-Present No value
gsm_map.scAddressNotIncluded scAddressNotIncluded Boolean
gsm_map.segmentationProhibited segmentationProhibited No value SendAuthenticationInfoArgV3/segmentationProhibited
gsm_map.selectedLSAIdentity selectedLSAIdentity Byte array SubscriberInfo/locationInformationGPRS/selectedLSAIdentity
gsm_map.selectedLSA_Id selectedLSA-Id Byte array LocationInformation/selectedLSA-Id
gsm_map.selectedUMTS_Algorithms selectedUMTS-Algorithms No value PrepareHandoverV3Res/selectedUMTS-Algorithms
gsm_map.sendSubscriberData sendSubscriberData No value Vlr-Capability/superChargerSupportedInServingNetworkEntity/sendSubscriberData
gsm_map.serviceCentreAddress serviceCentreAddress Byte array
gsm_map.serviceCentreAddressDA serviceCentreAddressDA Byte array Sm-RP-DA/serviceCentreAddressDA
gsm_map.serviceCentreAddressOA serviceCentreAddressOA Byte array Sm-RP-OA/serviceCentreAddressOA
gsm_map.serviceIndicator serviceIndicator Byte array RegisterCC-EntryArg/ccbs-Data/serviceIndicator
gsm_map.serviceKey serviceKey Unsigned 32-bit integer
gsm_map.servicecentreaddress_digits ServiceCentreAddress digits String ServiceCentreAddress digits
gsm_map.sgsn_Address sgsn-Address Byte array
gsm_map.sgsn_Capability sgsn-Capability No value UpdateGprsLocationArg/sgsn-Capability
gsm_map.sgsn_Number sgsn-Number Byte array
gsm_map.signalInfo signalInfo Byte array Bss-APDU/signalInfo
gsm_map.signalInfo2 signalInfo2 Byte array An-APDU/signalInfo2
gsm_map.skipSubscriberDataUpdate skipSubscriberDataUpdate No value UpdateLocationArg/add-info/skipSubscriberDataUpdate
gsm_map.sm_DeliveryOutcome sm-DeliveryOutcome Unsigned 32-bit integer ReportSM-DeliveryStatusArg/sm-DeliveryOutcome
gsm_map.sm_EnumeratedDeliveryFailureCause sm-EnumeratedDeliveryFailureCause Unsigned 32-bit integer Sm-DeliveryFailureCause/sm-EnumeratedDeliveryFailureCause
gsm_map.sm_RP_DA sm-RP-DA Unsigned 32-bit integer
gsm_map.sm_RP_MTI sm-RP-MTI Unsigned 32-bit integer RoutingInfoForSMArg/sm-RP-MTI
gsm_map.sm_RP_OA sm-RP-OA Unsigned 32-bit integer
gsm_map.sm_RP_PRI sm-RP-PRI Boolean RoutingInfoForSMArg/sm-RP-PRI
gsm_map.sm_RP_SMEA sm-RP-SMEA Byte array RoutingInfoForSMArg/sm-RP-SMEA
gsm_map.sm_RP_UI sm-RP-UI Byte array
gsm_map.sms_CAMEL_TDP_DataList sms-CAMEL-TDP-DataList No value
gsm_map.sms_TriggerDetectionPoint sms-TriggerDetectionPoint Unsigned 32-bit integer
gsm_map.solsaSupportIndicator solsaSupportIndicator No value
gsm_map.specificCSIDeletedList specificCSIDeletedList Byte array AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/specificCSIDeletedList
gsm_map.sres sres Byte array
gsm_map.ss-csi ss-csi Boolean
gsm_map.ssAccessBarred ssAccessBarred Boolean
gsm_map.ss_CSI ss-CSI No value
gsm_map.ss_CamelData ss-CamelData No value
gsm_map.ss_Code ss-Code Unsigned 8-bit integer
gsm_map.ss_Data ss-Data No value
gsm_map.ss_Event ss-Event Byte array Ss-InvocationNotificationArg/ss-Event
gsm_map.ss_EventList ss-EventList No value Ss-CamelData/ss-EventList
gsm_map.ss_EventList_item Item Byte array Ss-CamelData/ss-EventList/_item
gsm_map.ss_EventSpecification ss-EventSpecification No value Ss-InvocationNotificationArg/ss-EventSpecification
gsm_map.ss_EventSpecification_item Item Byte array Ss-InvocationNotificationArg/ss-EventSpecification/_item
gsm_map.ss_List ss-List No value
gsm_map.ss_List_item Item Byte array
gsm_map.ss_Status ss-Status Byte array
gsm_map.ss_SubscriptionOption ss-SubscriptionOption Unsigned 32-bit integer Ss-Data/ss-SubscriptionOption
gsm_map.ss_status_p_bit P bit Boolean P bit
gsm_map.ss_status_q_bit Q bit Boolean Q bit
gsm_map.storedMSISDN storedMSISDN Byte array
gsm_map.subscriberDataStored subscriberDataStored Byte array Vlr-Capability/superChargerSupportedInServingNetworkEntity/subscriberDataStored
gsm_map.subscriberIdentity subscriberIdentity Unsigned 32-bit integer
gsm_map.subscriberInfo subscriberInfo No value
gsm_map.subscriberState subscriberState Unsigned 32-bit integer SubscriberInfo/subscriberState
gsm_map.subscriberStatus subscriberStatus Unsigned 32-bit integer InsertSubscriberDataArg/subscriberStatus
gsm_map.superChargerSupportedInServingNetworkEntity superChargerSupportedInServingNetworkEntity Unsigned 32-bit integer Vlr-Capability/superChargerSupportedInServingNetworkEntity
gsm_map.supportedCCBS_Phase supportedCCBS-Phase Unsigned 32-bit integer SendRoutingInfoArg/supportedCCBS-Phase
gsm_map.supportedCamelPhases supportedCamelPhases Byte array
gsm_map.supportedCamelPhasesInGMSC supportedCamelPhasesInGMSC Byte array ProvideRoamingNumberArg/supportedCamelPhasesInGMSC
gsm_map.supportedLCS_CapabilitySets supportedLCS-CapabilitySets Byte array Vlr-Capability/supportedLCS-CapabilitySets
gsm_map.supportedSGSN_CAMEL_Phases supportedSGSN-CAMEL-Phases No value AnyTimeSubscriptionInterrogationArg/requestedSubscriptionInfo/supportedSGSN-CAMEL-Phases
gsm_map.supportedVLR_CAMEL_Phases supportedVLR-CAMEL-Phases No value AnyTimeSubscriptionInterrogationArg/requestedSubscriptionInfo/supportedVLR-CAMEL-Phases
gsm_map.suppress_T_CSI suppress-T-CSI No value SendRoutingInfoArg/camelInfo/suppress-T-CSI
gsm_map.suppressionOfAnnouncement suppressionOfAnnouncement No value
gsm_map.t-csi t-csi Boolean
gsm_map.t_BCSM_CAMEL_TDP_CriteriaList t-BCSM-CAMEL-TDP-CriteriaList No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/t-BCSM-CAMEL-TDP-CriteriaList
gsm_map.t_BCSM_CAMEL_TDP_CriteriaList_item Item No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/t-BCSM-CAMEL-TDP-CriteriaList/_item
gsm_map.t_BCSM_TriggerDetectionPoint t-BCSM-TriggerDetectionPoint Unsigned 32-bit integer
gsm_map.t_BcsmCamelTDPDataList t-BcsmCamelTDPDataList No value
gsm_map.t_CSI t-CSI No value
gsm_map.t_CauseValueCriteria t-CauseValueCriteria No value
gsm_map.targetCellId targetCellId Byte array
gsm_map.targetMS targetMS Unsigned 32-bit integer
gsm_map.targetMSC_Number targetMSC-Number Byte array PrepareSubsequentHO-Arg/targetMSC-Number
gsm_map.targetRNCId targetRNCId Byte array PrepareHandoverV3Arg/targetRNCId
gsm_map.teid_ForGnAndGp teid-ForGnAndGp Byte array
gsm_map.teid_ForIu teid-ForIu Byte array
gsm_map.teleservice teleservice Unsigned 8-bit integer
gsm_map.teleserviceList teleserviceList No value
gsm_map.teleserviceList_item Item Unsigned 8-bit integer
gsm_map.tif-csi tif-csi Boolean
gsm_map.tif_CSI tif-CSI No value
gsm_map.tif_CSI_NotificationToCSE tif-CSI-NotificationToCSE No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/tif-CSI-NotificationToCSE
gsm_map.tpdu_TypeCriterion tpdu-TypeCriterion No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/mt-smsCAMELTDP-CriteriaList/_item/tpdu-TypeCriterion
gsm_map.tpdu_TypeCriterion_item Item Unsigned 32-bit integer AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/mt-smsCAMELTDP-CriteriaList/_item/tpdu-TypeCriterion/_item
gsm_map.traceReference traceReference Byte array
gsm_map.traceType traceType Unsigned 32-bit integer ActivateTraceModeArg/traceType
gsm_map.transactionId transactionId Byte array
gsm_map.translatedB_Number translatedB-Number Byte array
gsm_map.tripletList tripletList No value SendAuthenticationInfoV3Res/authenticationSetList/tripletList
gsm_map.tripletList_item Item No value SendAuthenticationInfoV3Res/authenticationSetList/tripletList/_item
gsm_map.uesbi_Iu uesbi-Iu No value PrepareHandoverV3Arg/uesbi-Iu
gsm_map.uesbi_IuA uesbi-IuA Byte array PrepareHandoverV3Arg/uesbi-Iu/uesbi-IuA
gsm_map.uesbi_IuB uesbi-IuB Byte array PrepareHandoverV3Arg/uesbi-Iu/uesbi-IuB
gsm_map.unauthorisedMessageOriginator unauthorisedMessageOriginator No value CallBarredParam/extensibleCallBarredParam/unauthorisedMessageOriginator
gsm_map.unauthorizedLCSClient_Diagnostic unauthorizedLCSClient-Diagnostic Unsigned 32-bit integer UnauthorizedLCSClient-Param/unauthorizedLCSClient-Diagnostic
gsm_map.unknownSubscriberDiagnostic unknownSubscriberDiagnostic Unsigned 32-bit integer UnknownSubscriberParam/unknownSubscriberDiagnostic
gsm_map.unused Unused Unsigned 8-bit integer Unused
gsm_map.uplinkFree uplinkFree No value PrepareGroupCallArg/uplinkFree
gsm_map.uplinkRejectCommand uplinkRejectCommand No value ForwardGroupCallSignallingArg/uplinkRejectCommand
gsm_map.uplinkReleaseCommand uplinkReleaseCommand No value ForwardGroupCallSignallingArg/uplinkReleaseCommand
gsm_map.uplinkReleaseIndication uplinkReleaseIndication No value
gsm_map.uplinkRequest uplinkRequest No value ProcessGroupCallSignallingArg/uplinkRequest
gsm_map.uplinkRequestAck uplinkRequestAck No value ForwardGroupCallSignallingArg/uplinkRequestAck
gsm_map.uplinkSeizedCommand uplinkSeizedCommand No value ForwardGroupCallSignallingArg/uplinkSeizedCommand
gsm_map.ussd_DataCodingScheme ussd-DataCodingScheme Byte array
gsm_map.ussd_String ussd-String Byte array
gsm_map.utranCodecList utranCodecList No value PrepareHandoverV3Arg/iuSupportedCodecsList/utranCodecList
gsm_map.uuIndicator uuIndicator Byte array ResumeCallHandlingArg/uu-Data/uuIndicator
gsm_map.uu_Data uu-Data No value ResumeCallHandlingArg/uu-Data
gsm_map.uui uui Byte array ResumeCallHandlingArg/uu-Data/uui
gsm_map.uusCFInteraction uusCFInteraction No value ResumeCallHandlingArg/uu-Data/uusCFInteraction
gsm_map.v_gmlc_Address v-gmlc-Address Byte array UpdateLocationArg/v-gmlc-Address
gsm_map.vbsGroupIndication vbsGroupIndication No value DeleteSubscriberDataArg/vbsGroupIndication
gsm_map.vbsSubscriptionData vbsSubscriptionData No value InsertSubscriberDataArg/vbsSubscriptionData
gsm_map.vbsSubscriptionData_item Item No value InsertSubscriberDataArg/vbsSubscriptionData/_item
gsm_map.verticalCoordinateRequest verticalCoordinateRequest No value ProvideSubscriberLocation-Arg/lcs-QoS/verticalCoordinateRequest
gsm_map.vertical_accuracy vertical-accuracy Byte array ProvideSubscriberLocation-Arg/lcs-QoS/vertical-accuracy
gsm_map.vgcsGroupIndication vgcsGroupIndication No value DeleteSubscriberDataArg/vgcsGroupIndication
gsm_map.vgcsSubscriptionData vgcsSubscriptionData No value InsertSubscriberDataArg/vgcsSubscriptionData
gsm_map.vgcsSubscriptionData_item Item No value InsertSubscriberDataArg/vgcsSubscriptionData/_item
gsm_map.vlrCamelSubscriptionInfo vlrCamelSubscriptionInfo No value InsertSubscriberDataArg/vlrCamelSubscriptionInfo
gsm_map.vlr_Capability vlr-Capability No value
gsm_map.vlr_Number vlr-Number Byte array
gsm_map.vlr_number vlr-number Byte array LocationInformation/vlr-number
gsm_map.vmsc_Address vmsc-Address Byte array SendRoutingInfoRes/vmsc-Address
gsm_map.vplmnAddressAllowed vplmnAddressAllowed No value InsertSubscriberDataArg/gprsSubscriptionData/gprsDataList/_item/vplmnAddressAllowed
gsm_map.vt-IM-CSI vt-IM-CSI Boolean
gsm_map.vt-csi vt-csi Boolean
gsm_map.vt_BCSM_CAMEL_TDP_CriteriaList vt-BCSM-CAMEL-TDP-CriteriaList No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/vt-BCSM-CAMEL-TDP-CriteriaList
gsm_map.vt_BCSM_CAMEL_TDP_CriteriaList_item Item No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/vt-BCSM-CAMEL-TDP-CriteriaList/_item
gsm_map.vt_CSI vt-CSI No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/vt-CSI
gsm_map.vt_IM_BCSM_CAMEL_TDP_CriteriaList vt-IM-BCSM-CAMEL-TDP-CriteriaList No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/vt-IM-BCSM-CAMEL-TDP-CriteriaList
gsm_map.vt_IM_BCSM_CAMEL_TDP_CriteriaList_item Item No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/vt-IM-BCSM-CAMEL-TDP-CriteriaList/_item
gsm_map.vt_IM_CSI vt-IM-CSI No value AnyTimeSubscriptionInterrogationRes/camel-SubscriptionInfo/vt-IM-CSI
gsm_map.wrongPasswordAttemptsCounter wrongPasswordAttemptsCounter Unsigned 32-bit integer
gsm_map.xres xres Byte array SendAuthenticationInfoV3Res/authenticationSetList/quintupletList/_item/xres
ss_status_a_bit A bit Boolean A bit
ss_status_r_bit R bit Boolean R bit
giop.TCKind TypeCode enum Unsigned 32-bit integer
giop.endianess Endianess Unsigned 8-bit integer
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.profid Profile ID 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.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.EventBufferDescriptor_item Item No value EventBufferDescriptor/_item
h248.EventParameters_item Item No value EventParameters/_item
h248.IndAudPropertyGroup_item Item No value IndAudPropertyGroup/_item
h248.IndAudPropertyParms_item Item No value IndAudPropertyParms/_item
h248.PackagesDescriptor_item Item No value PackagesDescriptor/_item
h248.PropertyGroup_item Item No value PropertyGroup/_item
h248.PropertyParms_item Item No value PropertyParms/_item
h248.RequestedEvents_item Item No value RequestedEvents/_item
h248.SignalsDescriptor_item Item Unsigned 32-bit integer SignalsDescriptor/_item
h248.StatisticsDescriptor_item Item No value StatisticsDescriptor/_item
h248.TerminationAudit_item Item Unsigned 32-bit integer TerminationAudit/_item
h248.TerminationIDList_item Item No value TerminationIDList/_item
h248.TransactionResponseAck_item Item No value TransactionResponseAck/_item
h248.Value_item Item Byte array Value/_item
h248.actionReplies actionReplies No value TransactionReply/transactionResult/actionReplies
h248.actionReplies_item Item No value TransactionReply/transactionResult/actionReplies/_item
h248.actions actions No value TransactionRequest/actions
h248.actions_item Item No value TransactionRequest/actions/_item
h248.ad ad Byte array AuthenticationHeader/ad
h248.addReply addReply No value CommandReply/addReply
h248.addReq addReq No value Command/addReq
h248.address address IPv4 address IP4Address/address
h248.auditCapReply auditCapReply Unsigned 32-bit integer CommandReply/auditCapReply
h248.auditCapRequest auditCapRequest No value Command/auditCapRequest
h248.auditDescriptor auditDescriptor No value
h248.auditPropertyToken auditPropertyToken No value AuditDescriptor/auditPropertyToken
h248.auditPropertyToken_item Item Unsigned 32-bit integer AuditDescriptor/auditPropertyToken/_item
h248.auditResult auditResult No value AuditReply/auditResult
h248.auditToken auditToken Byte array AuditDescriptor/auditToken
h248.auditValueReply auditValueReply Unsigned 32-bit integer CommandReply/auditValueReply
h248.auditValueRequest auditValueRequest No value Command/auditValueRequest
h248.authHeader authHeader No value MegacoMessage/authHeader
h248.command command Unsigned 32-bit integer CommandRequest/command
h248.commandReply commandReply No value ActionReply/commandReply
h248.commandReply_item Item Unsigned 32-bit integer ActionReply/commandReply/_item
h248.commandRequests commandRequests No value ActionRequest/commandRequests
h248.commandRequests_item Item No value ActionRequest/commandRequests/_item
h248.contextAttrAuditReq contextAttrAuditReq No value ActionRequest/contextAttrAuditReq
h248.contextAuditResult contextAuditResult No value AuditReply/contextAuditResult
h248.contextId contextId Unsigned 32-bit integer
h248.contextReply contextReply No value ActionReply/contextReply
h248.contextRequest contextRequest No value ActionRequest/contextRequest
h248.data data Byte array NonStandardData/data
h248.date date String TimeNotation/date
h248.descriptors descriptors No value AmmRequest/descriptors
h248.descriptors_item Item Unsigned 32-bit integer AmmRequest/descriptors/_item
h248.deviceName deviceName String
h248.digitMapBody digitMapBody String DigitMapValue/digitMapBody
h248.digitMapDescriptor digitMapDescriptor No value
h248.digitMapName digitMapName Byte array
h248.digitMapToken digitMapToken Boolean
h248.digitMapValue digitMapValue No value
h248.domainName domainName No value
h248.duration duration Unsigned 32-bit integer Signal/duration
h248.durationTimer durationTimer Unsigned 32-bit integer DigitMapValue/durationTimer
h248.emergency emergency Boolean ContextRequest/emergency
h248.emptyDescriptors emptyDescriptors No value AuditReturnParameter/emptyDescriptors
h248.error error No value AuditReply/error
h248.errorCode errorCode Unsigned 32-bit integer ErrorDescriptor/errorCode
h248.errorDescriptor errorDescriptor No value
h248.errorText errorText String ErrorDescriptor/errorText
h248.evParList evParList No value
h248.eventAction eventAction No value RequestedEvent/eventAction
h248.eventBufferControl eventBufferControl No value IndAudTerminationStateDescriptor/eventBufferControl
h248.eventBufferDescriptor eventBufferDescriptor No value
h248.eventBufferToken eventBufferToken Boolean
h248.eventDM eventDM Unsigned 32-bit integer
h248.eventList eventList No value EventsDescriptor/eventList
h248.eventList_item Item No value SecondEventsDescriptor/eventList/_item
h248.eventName eventName Byte array IndAudEventBufferDescriptor/eventName
h248.eventParList eventParList No value
h248.eventParameterName eventParameterName Byte array EventParameter/eventParameterName
h248.event_name Package and Event name Unsigned 32-bit integer Package
h248.eventsDescriptor eventsDescriptor No value
h248.eventsToken eventsToken Boolean
h248.experimental experimental String NonStandardIdentifier/experimental
h248.extraInfo extraInfo Unsigned 32-bit integer
h248.firstAck firstAck Unsigned 32-bit integer TransactionAck/firstAck
h248.h221NonStandard h221NonStandard No value NonStandardIdentifier/h221NonStandard
h248.id id Unsigned 32-bit integer
h248.immAckRequired immAckRequired No value TransactionReply/immAckRequired
h248.indauddigitMapDescriptor indauddigitMapDescriptor No value IndAuditParameter/indauddigitMapDescriptor
h248.indaudeventBufferDescriptor indaudeventBufferDescriptor No value IndAuditParameter/indaudeventBufferDescriptor
h248.indaudeventsDescriptor indaudeventsDescriptor No value IndAuditParameter/indaudeventsDescriptor
h248.indaudmediaDescriptor indaudmediaDescriptor No value IndAuditParameter/indaudmediaDescriptor
h248.indaudpackagesDescriptor indaudpackagesDescriptor No value IndAuditParameter/indaudpackagesDescriptor
h248.indaudsignalsDescriptor indaudsignalsDescriptor Unsigned 32-bit integer IndAuditParameter/indaudsignalsDescriptor
h248.indaudstatisticsDescriptor indaudstatisticsDescriptor No value IndAuditParameter/indaudstatisticsDescriptor
h248.ip4Address ip4Address No value
h248.ip6Address ip6Address No value
h248.keepActive keepActive Boolean
h248.lastAck lastAck Unsigned 32-bit integer TransactionAck/lastAck
h248.localControlDescriptor localControlDescriptor No value IndAudStreamParms/localControlDescriptor
h248.localDescriptor localDescriptor No value IndAudStreamParms/localDescriptor
h248.longTimer longTimer Unsigned 32-bit integer DigitMapValue/longTimer
h248.mId mId Unsigned 32-bit integer Message/mId
h248.manufacturerCode manufacturerCode Unsigned 32-bit integer H221NonStandard/manufacturerCode
h248.mediaDescriptor mediaDescriptor No value
h248.mediaToken mediaToken Boolean
h248.mess mess No value MegacoMessage/mess
h248.messageBody messageBody Unsigned 32-bit integer Message/messageBody
h248.messageError messageError No value Message/messageBody/messageError
h248.modReply modReply No value CommandReply/modReply
h248.modReq modReq No value Command/modReq
h248.modemDescriptor modemDescriptor No value
h248.modemToken modemToken Boolean
h248.moveReply moveReply No value CommandReply/moveReply
h248.moveReq moveReq No value Command/moveReq
h248.mpl mpl No value ModemDescriptor/mpl
h248.mtl mtl No value ModemDescriptor/mtl
h248.mtl_item Item Unsigned 32-bit integer ModemDescriptor/mtl/_item
h248.mtpAddress mtpAddress Byte array
h248.mtpaddress.ni NI Unsigned 32-bit integer NI
h248.mtpaddress.pc PC Unsigned 32-bit integer PC
h248.multiStream multiStream No value IndAudMediaDescriptor/streams/multiStream
h248.multiStream_item Item No value IndAudMediaDescriptor/streams/multiStream/_item
h248.muxDescriptor muxDescriptor No value
h248.muxToken muxToken Boolean
h248.muxType muxType Unsigned 32-bit integer MuxDescriptor/muxType
h248.name name String DomainName/name
h248.nonStandardData nonStandardData No value
h248.nonStandardIdentifier nonStandardIdentifier Unsigned 32-bit integer NonStandardData/nonStandardIdentifier
h248.notifyCompletion notifyCompletion Byte array Signal/notifyCompletion
h248.notifyReply notifyReply No value CommandReply/notifyReply
h248.notifyReq notifyReq No value Command/notifyReq
h248.object object String NonStandardIdentifier/object
h248.observedEventLst observedEventLst No value ObservedEventsDescriptor/observedEventLst
h248.observedEventLst_item Item No value ObservedEventsDescriptor/observedEventLst/_item
h248.observedEventsDescriptor observedEventsDescriptor No value
h248.observedEventsToken observedEventsToken Boolean
h248.onInterruptByEvent onInterruptByEvent Boolean
h248.onInterruptByNewSignalDescr onInterruptByNewSignalDescr Boolean
h248.onTimeOut onTimeOut Boolean
h248.oneStream oneStream No value IndAudMediaDescriptor/streams/oneStream
h248.optional optional No value CommandRequest/optional
h248.otherReason otherReason Boolean
h248.packageName packageName Byte array
h248.packageVersion packageVersion Unsigned 32-bit integer
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.package_annex_C.ACodec ACodec Byte array ACodec
h248.package_annex_C.BIR BIR Byte array BIR
h248.package_annex_C.Mediatx Mediatx Unsigned 32-bit integer Mediatx
h248.package_annex_C.NSAP NSAP Byte array NSAP
h248.package_annex_C.TMR TMR Unsigned 32-bit integer BNCChar
h248.package_annex_C.USI USI Byte array User Service Information
h248.package_annex_C.tdmc.ec Echo Cancellation Boolean Echo Cancellation
h248.package_annex_C.tdmc.gain Gain Unsigned 32-bit integer Gain
h248.package_bcp.BNCChar BNCChar Unsigned 32-bit integer BNCChar
h248.package_name Package Unsigned 16-bit integer Package
h248.packagesDescriptor packagesDescriptor No value AuditReturnParameter/packagesDescriptor
h248.packagesToken packagesToken Boolean
h248.pkgdName pkgdName Byte array IndAudEventsDescriptor/pkgdName
h248.portNumber portNumber Unsigned 32-bit integer
h248.priority priority Unsigned 32-bit integer ContextRequest/priority
h248.profileName profileName String ServiceChangeProfile/profileName
h248.propGroupID propGroupID Unsigned 32-bit integer IndAudLocalRemoteDescriptor/propGroupID
h248.propGrps propGrps No value IndAudLocalRemoteDescriptor/propGrps
h248.propGrps_item Item No value LocalRemoteDescriptor/propGrps/_item
h248.propertyName propertyName Byte array PropertyParm/propertyName
h248.propertyParms propertyParms No value
h248.range range Boolean ExtraInfo/range
h248.relation relation Unsigned 32-bit integer ExtraInfo/relation
h248.remoteDescriptor remoteDescriptor No value IndAudStreamParms/remoteDescriptor
h248.requestID requestID Unsigned 32-bit integer
h248.requestId requestId Unsigned 32-bit integer ObservedEventsDescriptor/requestId
h248.reserveGroup reserveGroup No value IndAudLocalControlDescriptor/reserveGroup
h248.reserveValue reserveValue No value IndAudLocalControlDescriptor/reserveValue
h248.secParmIndex secParmIndex Byte array AuthenticationHeader/secParmIndex
h248.secondEvent secondEvent No value RequestedActions/secondEvent
h248.seqNum seqNum Byte array AuthenticationHeader/seqNum
h248.seqSigList seqSigList No value IndAudSignalsDescriptor/seqSigList
h248.serviceChangeAddress serviceChangeAddress Unsigned 32-bit integer
h248.serviceChangeDelay serviceChangeDelay Unsigned 32-bit integer ServiceChangeParm/serviceChangeDelay
h248.serviceChangeInfo serviceChangeInfo No value ServiceChangeParm/serviceChangeInfo
h248.serviceChangeMethod serviceChangeMethod Unsigned 32-bit integer ServiceChangeParm/serviceChangeMethod
h248.serviceChangeMgcId serviceChangeMgcId Unsigned 32-bit integer
h248.serviceChangeParms serviceChangeParms No value ServiceChangeRequest/serviceChangeParms
h248.serviceChangeProfile serviceChangeProfile No value
h248.serviceChangeReason serviceChangeReason No value ServiceChangeParm/serviceChangeReason
h248.serviceChangeReply serviceChangeReply No value CommandReply/serviceChangeReply
h248.serviceChangeReq serviceChangeReq No value Command/serviceChangeReq
h248.serviceChangeResParms serviceChangeResParms No value ServiceChangeResult/serviceChangeResParms
h248.serviceChangeResult serviceChangeResult Unsigned 32-bit integer ServiceChangeReply/serviceChangeResult
h248.serviceChangeVersion serviceChangeVersion Unsigned 32-bit integer
h248.serviceState serviceState No value IndAudTerminationStateDescriptor/serviceState
h248.shortTimer shortTimer Unsigned 32-bit integer DigitMapValue/shortTimer
h248.sigParList sigParList No value Signal/sigParList
h248.sigParList_item Item No value Signal/sigParList/_item
h248.sigParameterName sigParameterName Byte array SigParameter/sigParameterName
h248.sigType sigType Unsigned 32-bit integer Signal/sigType
h248.signal signal No value IndAudSignalsDescriptor/signal
h248.signalList signalList No value IndAudSeqSigList/signalList
h248.signalList_item Item No value SeqSigList/signalList/_item
h248.signalName signalName Byte array IndAudSignal/signalName
h248.signal_name Package and Signal name Unsigned 32-bit integer Package
h248.signalsDescriptor signalsDescriptor No value
h248.signalsToken signalsToken Boolean
h248.startTimer startTimer Unsigned 32-bit integer DigitMapValue/startTimer
h248.statName statName Byte array
h248.statValue statValue No value StatisticsParameter/statValue
h248.statisticsDescriptor statisticsDescriptor No value AuditReturnParameter/statisticsDescriptor
h248.statsToken statsToken Boolean
h248.streamID streamID Unsigned 32-bit integer
h248.streamMode streamMode No value IndAudLocalControlDescriptor/streamMode
h248.streamParms streamParms No value IndAudStreamDescriptor/streamParms
h248.streams streams Unsigned 32-bit integer IndAudMediaDescriptor/streams
h248.sublist sublist Boolean ExtraInfo/sublist
h248.subtractReply subtractReply No value CommandReply/subtractReply
h248.subtractReq subtractReq No value Command/subtractReq
h248.t35CountryCode1 t35CountryCode1 Unsigned 32-bit integer H221NonStandard/t35CountryCode1
h248.t35CountryCode2 t35CountryCode2 Unsigned 32-bit integer H221NonStandard/t35CountryCode2
h248.t35Extension t35Extension Unsigned 32-bit integer H221NonStandard/t35Extension
h248.termList termList No value MuxDescriptor/termList
h248.termList_item Item No value MuxDescriptor/termList/_item
h248.termStateDescr termStateDescr No value IndAudMediaDescriptor/termStateDescr
h248.terminationAudit terminationAudit No value AmmsReply/terminationAudit
h248.terminationAuditResult terminationAuditResult No value AuditResult/terminationAuditResult
h248.terminationFrom terminationFrom No value TopologyRequest/terminationFrom
h248.terminationID terminationID No value
h248.terminationTo terminationTo No value TopologyRequest/terminationTo
h248.time time String TimeNotation/time
h248.timeNotation timeNotation No value ObservedEvent/timeNotation
h248.timeStamp timeStamp No value ServiceChangeParm/timeStamp
h248.timestamp timestamp No value ServiceChangeResParm/timestamp
h248.topology topology No value ContextAttrAuditRequest/topology
h248.topologyDirection topologyDirection Unsigned 32-bit integer TopologyRequest/topologyDirection
h248.topologyReq topologyReq No value ContextRequest/topologyReq
h248.topologyReq_item Item No value ContextRequest/topologyReq/_item
h248.transactionError transactionError No value TransactionReply/transactionResult/transactionError
h248.transactionId transactionId Unsigned 32-bit integer
h248.transactionPending transactionPending No value Transaction/transactionPending
h248.transactionReply transactionReply No value Transaction/transactionReply
h248.transactionRequest transactionRequest No value Transaction/transactionRequest
h248.transactionResponseAck transactionResponseAck No value Transaction/transactionResponseAck
h248.transactionResult transactionResult Unsigned 32-bit integer TransactionReply/transactionResult
h248.transactions transactions No value Message/messageBody/transactions
h248.transactions_item Item Unsigned 32-bit integer Message/messageBody/transactions/_item
h248.value value No value
h248.value_item Item Byte array PropertyParm/value/_item
h248.version version Unsigned 32-bit integer Message/version
h248.wildcard wildcard No value TerminationID/wildcard
h248.wildcardReturn wildcardReturn No value CommandRequest/wildcardReturn
h248.wildcard_item Item Byte array TerminationID/wildcard/_item
h235.algorithmOID algorithmOID String
h235.authenticationBES authenticationBES Unsigned 32-bit integer AuthenticationMechanism/authenticationBES
h235.base base No value
h235.certProtectedKey certProtectedKey No value H235Key/certProtectedKey
h235.certSign certSign No value AuthenticationMechanism/certSign
h235.certificate certificate Byte array TypedCertificate/certificate
h235.challenge challenge Byte array ClearToken/challenge
h235.clearSalt clearSalt Byte array Params/clearSalt
h235.clearSaltingKey clearSaltingKey Byte array V3KeySyncMaterial/clearSaltingKey
h235.cryptoEncryptedToken cryptoEncryptedToken No value CryptoToken/cryptoEncryptedToken
h235.cryptoHashedToken cryptoHashedToken No value CryptoToken/cryptoHashedToken
h235.cryptoPwdEncr cryptoPwdEncr No value CryptoToken/cryptoPwdEncr
h235.cryptoSignedToken cryptoSignedToken No value CryptoToken/cryptoSignedToken
h235.data data Unsigned 32-bit integer NonStandardParameter/data
h235.default default No value AuthenticationBES/default
h235.dhExch dhExch No value AuthenticationMechanism/dhExch
h235.dhkey dhkey No value ClearToken/dhkey
h235.eckasdh2 eckasdh2 No value ECKASDH/eckasdh2
h235.eckasdhkey eckasdhkey Unsigned 32-bit integer ClearToken/eckasdhkey
h235.eckasdhp eckasdhp No value ECKASDH/eckasdhp
h235.encryptedData encryptedData Byte array ENCRYPTEDxxx/encryptedData
h235.encryptedSaltingKey encryptedSaltingKey Byte array V3KeySyncMaterial/encryptedSaltingKey
h235.encryptedSessionKey encryptedSessionKey Byte array V3KeySyncMaterial/encryptedSessionKey
h235.fieldSize fieldSize Byte array ECKASDH/eckasdh2/fieldSize
h235.generalID generalID String
h235.generator generator Byte array DHset/generator
h235.h235Key h235Key Unsigned 32-bit integer ClearToken/h235Key
h235.halfkey halfkey Byte array DHset/halfkey
h235.hash hash Byte array HASHEDxxx/hash
h235.hashedVals hashedVals No value CryptoToken/cryptoHashedToken/hashedVals
h235.ipsec ipsec No value AuthenticationMechanism/ipsec
h235.iv iv Byte array Params/iv
h235.iv16 iv16 Byte array Params/iv16
h235.iv8 iv8 Byte array Params/iv8
h235.keyDerivationOID keyDerivationOID String V3KeySyncMaterial/keyDerivationOID
h235.modSize modSize Byte array DHset/modSize
h235.modulus modulus Byte array ECKASDH/eckasdhp/modulus
h235.nonStandard nonStandard No value
h235.nonStandardIdentifier nonStandardIdentifier String NonStandardParameter/nonStandardIdentifier
h235.paramS paramS No value
h235.paramSsalt paramSsalt No value V3KeySyncMaterial/paramSsalt
h235.password password String ClearToken/password
h235.public_key public-key No value
h235.pwdHash pwdHash No value AuthenticationMechanism/pwdHash
h235.pwdSymEnc pwdSymEnc No value AuthenticationMechanism/pwdSymEnc
h235.radius radius No value AuthenticationBES/radius
h235.ranInt ranInt Signed 32-bit integer Params/ranInt
h235.random random Signed 32-bit integer ClearToken/random
h235.secureChannel secureChannel Byte array H235Key/secureChannel
h235.secureSharedSecret secureSharedSecret No value H235Key/secureSharedSecret
h235.sendersID sendersID String ClearToken/sendersID
h235.sharedSecret sharedSecret No value H235Key/sharedSecret
h235.signature signature Byte array SIGNEDxxx/signature
h235.timeStamp timeStamp Date/Time stamp ClearToken/timeStamp
h235.tls tls No value AuthenticationMechanism/tls
h235.toBeSigned toBeSigned No value SIGNEDxxx/toBeSigned
h235.token token No value CryptoToken/cryptoEncryptedToken/token
h235.tokenOID tokenOID String
h235.type type String TypedCertificate/type
h235.weierstrassA weierstrassA Byte array
h235.weierstrassB weierstrassB Byte array
h235.x x Byte array ECpoint/x
h235.y y Byte array ECpoint/y
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
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 String 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.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
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.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.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.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.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
radiotap.antnoise SSI Noise Signed 32-bit integer
radiotap.antsignal SSI Signal Signed 32-bit integer
radiotap.channel.flags Channel type Unsigned 32-bit integer
radiotap.channel.freq Channel frequency Unsigned 32-bit integer
radiotap.datarate Data rate Unsigned 32-bit integer
radiotap.flags.preamble Preamble Unsigned 32-bit integer
radiotap.length Header length Unsigned 32-bit integer
radiotap.mactime MAC timestamp Unsigned 64-bit integer
radiotap.txpower Transmit power Signed 32-bit integer
radiotap.version Header revision Unsigned 32-bit integer
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.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 Radio channel
wlan.da Destination address 6-byte Hardware (MAC) Address Destination Hardware Address
wlan.data_rate Data Rate Unsigned 8-bit integer Data rate (.5 Mb/s units)
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.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 16-bit integer Type and subtype combined
wlan.fc.version Version Unsigned 8-bit integer MAC Protocol version
wlan.fc.wep WEP flag Boolean WEP flag
wlan.fcs Frame check sequence Unsigned 32-bit integer FCS
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.qos.ack Ack Policy Unsigned 16-bit integer Ack Policy
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.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 Unsigned 8-bit integer Key
wlan.wep.weakiv Weak IV Boolean Weak IV
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
wlan_mgt.fixed.auth.alg Authentication Algorithm Unsigned 16-bit integer
wlan_mgt.fixed.auth_seq Authentication SEQ Unsigned 16-bit integer Authentication sequence number
wlan_mgt.fixed.beacon Beacon Interval Double-precision floating point
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.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.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.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.category_code Category code Unsigned 16-bit integer Management action category
wlan_mgt.fixed.current_ap Current AP 6-byte Hardware (MAC) Address MAC address of current AP
wlan_mgt.fixed.dialog_token Dialog token Unsigned 16-bit integer Management action dialog token
wlan_mgt.fixed.listen_ival Listen Interval Unsigned 16-bit integer Listen Interval
wlan_mgt.fixed.reason_code Reason code Unsigned 16-bit integer Reason for unsolicited notification
wlan_mgt.fixed.status_code Status code Unsigned 16-bit integer Status of requested event
wlan_mgt.fixed.timestamp Timestamp String
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.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.tagged.all Tagged parameters Unsigned 16-bit integer
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
ieee802a.oui Organization Code Unsigned 24-bit integer
ieee802a.pid Protocol ID Unsigned 16-bit integer
inap.CallPartyHandlingResultsArg_item Item No value CallPartyHandlingResultsArg/_item
inap.Extensions_item Item No value Extensions/_item
inap.RequestNotificationChargingEvent_item Item No value RequestNotificationChargingEvent/_item
inap.RouteList_item Item Byte array RouteList/_item
inap.VariableParts_item Item Unsigned 32-bit integer VariableParts/_item
inap.aChBillingChargingCharacteristics aChBillingChargingCharacteristics Byte array ApplyChargingarg/aChBillingChargingCharacteristics
inap.absent absent No value InvokeId/absent
inap.accessCode accessCode Byte array
inap.additionalCallingPartyNumber additionalCallingPartyNumber Byte array InitialDP/additionalCallingPartyNumber
inap.addressAndService addressAndService No value FilteringCriteria/addressAndService
inap.aduration aduration Unsigned 32-bit integer ActivateServiceFilteringarg/filteringTimeOut/aduration
inap.alertingPattern alertingPattern Byte array
inap.allRequests allRequests No value Cancelarg/allRequests
inap.analyzedInfoSpecificInfo analyzedInfoSpecificInfo No value EventReportBCSM/eventSpecificInformationBCSM/analyzedInfoSpecificInfo
inap.applicationTimer applicationTimer Unsigned 32-bit integer RequestReportBCSMEvent/bcsmEvents/_item/dpSpecificCriteria/applicationTimer
inap.assistingSSPIPRoutingAddress assistingSSPIPRoutingAddress Byte array EstablishTemporaryConnection/assistingSSPIPRoutingAddress
inap.attributes attributes Byte array Text/attributes
inap.bcsmEventCorrelationID bcsmEventCorrelationID Byte array
inap.bcsmEvents bcsmEvents No value RequestReportBCSMEvent/bcsmEvents
inap.bcsmEvents_item Item No value RequestReportBCSMEvent/bcsmEvents/_item
inap.bearerCap bearerCap Byte array BearerCapability/bearerCap
inap.bearerCapability bearerCapability Unsigned 32-bit integer
inap.both both No value
inap.busyCause busyCause Byte array
inap.cGEncountered cGEncountered Unsigned 32-bit integer
inap.callAttemptElapsedTimeValue callAttemptElapsedTimeValue Unsigned 32-bit integer CallInformationReportarg/requestedInformationList/_item/requestedInformationValue/callAttemptElapsedTimeValue
inap.callConnectedElapsedTimeValue callConnectedElapsedTimeValue Unsigned 32-bit integer CallInformationReportarg/requestedInformationList/_item/requestedInformationValue/callConnectedElapsedTimeValue
inap.callID callID Signed 32-bit integer
inap.callStopTimeValue callStopTimeValue Byte array CallInformationReportarg/requestedInformationList/_item/requestedInformationValue/callStopTimeValue
inap.calledAddressAndService calledAddressAndService No value CallGaparg/gapCriteria/calledAddressAndService
inap.calledAddressValue calledAddressValue Byte array
inap.calledFacilityGroup calledFacilityGroup Unsigned 32-bit integer
inap.calledFacilityGroupMember calledFacilityGroupMember Signed 32-bit integer
inap.calledPartyBusinessGroupID calledPartyBusinessGroupID Byte array
inap.calledPartyNumber calledPartyNumber Byte array
inap.calledPartySubaddress calledPartySubaddress Byte array
inap.calledPartynumber calledPartynumber Byte array
inap.callingAddressAndService callingAddressAndService No value CallGaparg/gapCriteria/callingAddressAndService
inap.callingAddressValue callingAddressValue Byte array
inap.callingFacilityGroup callingFacilityGroup Unsigned 32-bit integer
inap.callingFacilityGroupMember callingFacilityGroupMember Signed 32-bit integer
inap.callingLineID callingLineID Byte array FilteringCriteria/callingLineID
inap.callingPartyBusinessGroupID callingPartyBusinessGroupID Byte array
inap.callingPartyNumber callingPartyNumber Byte array
inap.callingPartySubaddress callingPartySubaddress Byte array
inap.callingPartysCategory callingPartysCategory Byte array
inap.cancelDigit cancelDigit Byte array PromptAndCollectUserInformationarg/collectedInfo/collectedDigits/cancelDigit
inap.carrier carrier Byte array
inap.cgduration cgduration Unsigned 32-bit integer CallGaparg/gapIndicators/cgduration
inap.chargeNumber chargeNumber Byte array
inap.collectedDigits collectedDigits No value PromptAndCollectUserInformationarg/collectedInfo/collectedDigits
inap.collectedInfo collectedInfo Unsigned 32-bit integer PromptAndCollectUserInformationarg/collectedInfo
inap.collectedInfoSpecificInfo collectedInfoSpecificInfo No value EventReportBCSM/eventSpecificInformationBCSM/collectedInfoSpecificInfo
inap.connectTime connectTime Unsigned 32-bit integer
inap.controlType controlType Unsigned 32-bit integer CallGaparg/controlType
inap.correlationID correlationID Byte array
inap.correlationidentifier correlationidentifier Byte array
inap.counterID counterID Unsigned 32-bit integer ServiceFilteringResponse/countersValue/_item/counterID
inap.counterValue counterValue Unsigned 32-bit integer ServiceFilteringResponse/countersValue/_item/counterValue
inap.countersValue countersValue No value ServiceFilteringResponse/countersValue
inap.countersValue_item Item No value ServiceFilteringResponse/countersValue/_item
inap.criticality criticality Unsigned 32-bit integer Extensions/_item/criticality
inap.cutAndPaste cutAndPaste Unsigned 32-bit integer Connectarg/cutAndPaste
inap.date date Byte array VariableParts/_item/date
inap.destinationCallID destinationCallID Signed 32-bit integer AddPartyArg/destinationCallID
inap.destinationNumberRoutingAddress destinationNumberRoutingAddress Byte array SelectFacility/destinationNumberRoutingAddress
inap.destinationRoutingAddress destinationRoutingAddress No value
inap.destinationRoutingAddress_item Item Byte array
inap.dialledDigits dialledDigits Byte array
inap.dialledNumber dialledNumber Byte array FilteringCriteria/dialledNumber
inap.digitsResponse digitsResponse Byte array PromptAndCollectUserInformationres/digitsResponse
inap.disconnectFromIPForbidden disconnectFromIPForbidden Boolean
inap.displayInformation displayInformation String InformationToSend/displayInformation
inap.dpAssignment dpAssignment Unsigned 32-bit integer MiscCallInfo/dpAssignment
inap.dpCriteria dpCriteria Unsigned 32-bit integer CallGaparg/gapCriteria/gapOnService/dpCriteria
inap.dpSpecificCommonParameters dpSpecificCommonParameters No value
inap.dpSpecificCriteria dpSpecificCriteria Unsigned 32-bit integer RequestReportBCSMEvent/bcsmEvents/_item/dpSpecificCriteria
inap.elementaryMessageID elementaryMessageID Unsigned 32-bit integer
inap.elementaryMessageIDs elementaryMessageIDs No value MessageID/elementaryMessageIDs
inap.elementaryMessageIDs_item Item Unsigned 32-bit integer MessageID/elementaryMessageIDs/_item
inap.empty empty No value HoldCallInNetworkarg/empty
inap.endOfReplyDigit endOfReplyDigit Byte array PromptAndCollectUserInformationarg/collectedInfo/collectedDigits/endOfReplyDigit
inap.errorTreatment errorTreatment Unsigned 32-bit integer PromptAndCollectUserInformationarg/collectedInfo/collectedDigits/errorTreatment
inap.eventSpecificInformationBCSM eventSpecificInformationBCSM Unsigned 32-bit integer EventReportBCSM/eventSpecificInformationBCSM
inap.eventSpecificInformationCharging eventSpecificInformationCharging Byte array EventNotificationChargingarg/eventSpecificInformationCharging
inap.eventTypeBCSM eventTypeBCSM Unsigned 32-bit integer
inap.eventTypeCharging eventTypeCharging Byte array
inap.extensions extensions No value
inap.facilityGroupID facilityGroupID Unsigned 32-bit integer
inap.facilityGroupMemberID facilityGroupMemberID Signed 32-bit integer
inap.failureCause failureCause Byte array
inap.featureCode featureCode Byte array
inap.featureRequestIndicator featureRequestIndicator Unsigned 32-bit integer
inap.filteredCallTreatment filteredCallTreatment No value ActivateServiceFilteringarg/filteredCallTreatment
inap.filteringCharacteristics filteringCharacteristics Unsigned 32-bit integer ActivateServiceFilteringarg/filteringCharacteristics
inap.filteringCriteria filteringCriteria Unsigned 32-bit integer
inap.filteringTimeOut filteringTimeOut Unsigned 32-bit integer ActivateServiceFilteringarg/filteringTimeOut
inap.firstDigitTimeOut firstDigitTimeOut Unsigned 32-bit integer PromptAndCollectUserInformationarg/collectedInfo/collectedDigits/firstDigitTimeOut
inap.forwardCallIndicators forwardCallIndicators Byte array InitialDP/forwardCallIndicators
inap.forwardingCondition forwardingCondition Unsigned 32-bit integer Connectarg/forwardingCondition
inap.gapCriteria gapCriteria Unsigned 32-bit integer CallGaparg/gapCriteria
inap.gapIndicators gapIndicators No value CallGaparg/gapIndicators
inap.gapInterval gapInterval Unsigned 32-bit integer CallGaparg/gapIndicators/gapInterval
inap.gapOnService gapOnService No value CallGaparg/gapCriteria/gapOnService
inap.gapTreatment gapTreatment Unsigned 32-bit integer CallGaparg/gapTreatment
inap.heldLegID heldLegID Unsigned 32-bit integer ReconnectArg/heldLegID
inap.highLayerCompatibility highLayerCompatibility Byte array InitialDP/highLayerCompatibility
inap.holdcause holdcause Byte array HoldCallInNetworkarg/holdcause
inap.huntGroup huntGroup Byte array
inap.iA5Information iA5Information Boolean PromptAndCollectUserInformationarg/collectedInfo/iA5Information
inap.iA5Response iA5Response String PromptAndCollectUserInformationres/iA5Response
inap.iPAvailable iPAvailable Byte array
inap.iPSSPCapabilities iPSSPCapabilities Byte array
inap.iSDNAccessRelatedInformation iSDNAccessRelatedInformation Byte array
inap.inbandInfo inbandInfo No value InformationToSend/inbandInfo
inap.informationToSend informationToSend Unsigned 32-bit integer
inap.integer integer Unsigned 32-bit integer VariableParts/_item/integer
inap.interDigitTimeOut interDigitTimeOut Unsigned 32-bit integer PromptAndCollectUserInformationarg/collectedInfo/collectedDigits/interDigitTimeOut
inap.interruptableAnnInd interruptableAnnInd Boolean PromptAndCollectUserInformationarg/collectedInfo/collectedDigits/interruptableAnnInd
inap.interval interval Unsigned 32-bit integer
inap.invoke invoke No value INAPPDU/invoke
inap.invokeCmd invokeCmd Unsigned 32-bit integer InvokePDU/invokeCmd
inap.invokeID invokeID Unsigned 32-bit integer Cancelarg/invokeID
inap.invokeId invokeId Unsigned 32-bit integer InvokePDU/invokeId
inap.invokeid invokeid Signed 32-bit integer InvokeId/invokeid
inap.ipRoutingAddress ipRoutingAddress Byte array ConnectToResource/resourceAddress/ipRoutingAddress
inap.legID legID Unsigned 32-bit integer
inap.legStatus legStatus Unsigned 32-bit integer LegInformation/legStatus
inap.legToBeConnectedID legToBeConnectedID Byte array ChangePartiesArg/legToBeConnectedID
inap.legToBeDetached legToBeDetached Byte array DetachArg/legToBeDetached
inap.legToBeReleased legToBeReleased Unsigned 32-bit integer ReleaseCallPartyConnectionArg/legToBeReleased
inap.lineID lineID Byte array
inap.locationNumber locationNumber Byte array
inap.maximumNbOfDigits maximumNbOfDigits Unsigned 32-bit integer PromptAndCollectUserInformationarg/collectedInfo/collectedDigits/maximumNbOfDigits
inap.maximumNumberOfCounters maximumNumberOfCounters Signed 32-bit integer ActivateServiceFilteringarg/filteredCallTreatment/maximumNumberOfCounters
inap.mduration mduration Unsigned 32-bit integer InformationToSend/inbandInfo/mduration
inap.messageContent messageContent String Text/messageContent
inap.messageID messageID Unsigned 32-bit integer InformationToSend/inbandInfo/messageID
inap.messageType messageType Unsigned 32-bit integer MiscCallInfo/messageType
inap.minimumNbOfDigits minimumNbOfDigits Unsigned 32-bit integer PromptAndCollectUserInformationarg/collectedInfo/collectedDigits/minimumNbOfDigits
inap.miscCallInfo miscCallInfo No value
inap.monitorDuration monitorDuration Unsigned 32-bit integer
inap.monitorMode monitorMode Unsigned 32-bit integer
inap.newLegID newLegID Byte array AttachArg/newLegID
inap.none none No value ConnectToResource/resourceAddress/none
inap.number number Byte array VariableParts/_item/number
inap.numberOfCalls numberOfCalls Unsigned 32-bit integer ActivateServiceFilteringarg/filteringCharacteristics/numberOfCalls
inap.numberOfDigits numberOfDigits Unsigned 32-bit integer RequestReportBCSMEvent/bcsmEvents/_item/dpSpecificCriteria/numberOfDigits
inap.numberOfRepetitions numberOfRepetitions Unsigned 32-bit integer InformationToSend/inbandInfo/numberOfRepetitions
inap.numberingPlan numberingPlan Byte array CollectInformationarg/numberingPlan
inap.oAnswerSpecificInfo oAnswerSpecificInfo No value EventReportBCSM/eventSpecificInformationBCSM/oAnswerSpecificInfo
inap.oCalledPartyBusySpecificInfo oCalledPartyBusySpecificInfo No value EventReportBCSM/eventSpecificInformationBCSM/oCalledPartyBusySpecificInfo
inap.oDisconnectSpecificInfo oDisconnectSpecificInfo No value EventReportBCSM/eventSpecificInformationBCSM/oDisconnectSpecificInfo
inap.oMidCallSpecificInfo oMidCallSpecificInfo No value EventReportBCSM/eventSpecificInformationBCSM/oMidCallSpecificInfo
inap.oNoAnswerSpecificInfo oNoAnswerSpecificInfo No value EventReportBCSM/eventSpecificInformationBCSM/oNoAnswerSpecificInfo
inap.operation operation Unsigned 32-bit integer CancelFailed/operation
inap.originalCallID originalCallID Signed 32-bit integer AddPartyArg/originalCallID
inap.originalCalledPartyID originalCalledPartyID Byte array
inap.partyToCharge partyToCharge Unsigned 32-bit integer
inap.prefix prefix Byte array
inap.price price Byte array VariableParts/_item/price
inap.privateFacilityID privateFacilityID Signed 32-bit integer
inap.problem problem Unsigned 32-bit integer CancelFailed/problem
inap.receivingSideID receivingSideID Byte array
inap.redirectingPartyID redirectingPartyID Byte array
inap.redirectionInformation redirectionInformation Byte array
inap.releaseCause releaseCause Byte array
inap.releaseCauseValue releaseCauseValue Byte array CallInformationReportarg/requestedInformationList/_item/requestedInformationValue/releaseCauseValue
inap.reportCondition reportCondition Unsigned 32-bit integer StatusReport/reportCondition
inap.requestAnnouncementComplete requestAnnouncementComplete Boolean PlayAnnouncement/requestAnnouncementComplete
inap.requestedInformationList requestedInformationList No value CallInformationReportarg/requestedInformationList
inap.requestedInformationList_item Item No value CallInformationReportarg/requestedInformationList/_item
inap.requestedInformationType requestedInformationType Unsigned 32-bit integer CallInformationReportarg/requestedInformationList/_item/requestedInformationType
inap.requestedInformationTypeList requestedInformationTypeList No value CallInformationRequestarg/requestedInformationTypeList
inap.requestedInformationTypeList_item Item Unsigned 32-bit integer CallInformationRequestarg/requestedInformationTypeList/_item
inap.requestedInformationValue requestedInformationValue Unsigned 32-bit integer CallInformationReportarg/requestedInformationList/_item/requestedInformationValue
inap.resourceAddress resourceAddress Unsigned 32-bit integer ConnectToResource/resourceAddress
inap.resourceID resourceID Unsigned 32-bit integer
inap.resourceStatus resourceStatus Unsigned 32-bit integer
inap.responseCondition responseCondition Unsigned 32-bit integer ServiceFilteringResponse/responseCondition
inap.returnResult returnResult No value INAPPDU/returnResult
inap.routeIndex routeIndex Byte array
inap.routeList routeList No value
inap.routeSelectFailureSpecificInfo routeSelectFailureSpecificInfo No value EventReportBCSM/eventSpecificInformationBCSM/routeSelectFailureSpecificInfo
inap.sCIBillingChargingCharacteristics sCIBillingChargingCharacteristics Byte array SendChargingInformation/sCIBillingChargingCharacteristics
inap.sFBillingChargingCharacteristics sFBillingChargingCharacteristics Byte array ActivateServiceFilteringarg/filteredCallTreatment/sFBillingChargingCharacteristics
inap.scfID scfID Byte array
inap.sendingSideID sendingSideID Byte array
inap.serviceAddressInformation serviceAddressInformation No value DpSpecificCommonParameters/serviceAddressInformation
inap.serviceInteractionIndicators serviceInteractionIndicators Byte array
inap.serviceKey serviceKey Unsigned 32-bit integer
inap.serviceProfileIdentifier serviceProfileIdentifier Byte array
inap.servingAreaID servingAreaID Byte array DpSpecificCommonParameters/servingAreaID
inap.startDigit startDigit Byte array PromptAndCollectUserInformationarg/collectedInfo/collectedDigits/startDigit
inap.startTime startTime Byte array ActivateServiceFilteringarg/startTime
inap.stopTime stopTime Byte array ActivateServiceFilteringarg/filteringTimeOut/stopTime
inap.tAnswerSpecificInfo tAnswerSpecificInfo No value EventReportBCSM/eventSpecificInformationBCSM/tAnswerSpecificInfo
inap.tBusySpecificInfo tBusySpecificInfo No value EventReportBCSM/eventSpecificInformationBCSM/tBusySpecificInfo
inap.tDisconnectSpecificInfo tDisconnectSpecificInfo No value EventReportBCSM/eventSpecificInformationBCSM/tDisconnectSpecificInfo
inap.tMidCallSpecificInfo tMidCallSpecificInfo No value EventReportBCSM/eventSpecificInformationBCSM/tMidCallSpecificInfo
inap.tNoAnswerSpecificInfo tNoAnswerSpecificInfo No value EventReportBCSM/eventSpecificInformationBCSM/tNoAnswerSpecificInfo
inap.targetCallID targetCallID Signed 32-bit integer ChangePartiesArg/targetCallID
inap.tduration tduration Unsigned 32-bit integer Tone/tduration
inap.terminalType terminalType Unsigned 32-bit integer
inap.text text No value MessageID/text
inap.time time Byte array VariableParts/_item/time
inap.timerID timerID Unsigned 32-bit integer ResetTimer/timerID
inap.timervalue timervalue Unsigned 32-bit integer ResetTimer/timervalue
inap.tmr tmr Byte array BearerCapability/tmr
inap.tone tone No value InformationToSend/tone
inap.toneID toneID Unsigned 32-bit integer Tone/toneID
inap.travellingClassMark travellingClassMark Byte array
inap.triggerType triggerType Unsigned 32-bit integer
inap.trunkGroupID trunkGroupID Signed 32-bit integer
inap.type type Signed 32-bit integer Extensions/_item/type
inap.value value Byte array Extensions/_item/value
inap.variableMessage variableMessage No value MessageID/variableMessage
inap.variableParts variableParts No value VariableMessage/variableParts
inap.voiceBack voiceBack Boolean PromptAndCollectUserInformationarg/collectedInfo/collectedDigits/voiceBack
inap.voiceInformation voiceInformation Boolean PromptAndCollectUserInformationarg/collectedInfo/collectedDigits/voiceInformation
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 CPI Unsigned 16-bit integer
ipcomp.flags Flags Unsigned 8-bit integer
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_iid IID String
remunk_iids IIDs Unsigned 16-bit integer
remunk_int_refs InterfaceRefs Unsigned 32-bit integer
remunk_ipid IPID String
remunk_oid OID Unsigned 64-bit integer
remunk_opnum Operation Unsigned 16-bit integer Operation
remunk_oxid OXID Unsigned 64-bit integer
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
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 Signed 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
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.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.organization_identifier_subfield Organization identifier subfield 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 8-bit integer
isup.APM_Sequence_ind Sequence indicator (SI) Boolean
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 8-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.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.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_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_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.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_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.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.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.is_type Type of Intermediate System Unsigned 8-bit integer
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.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 COTP PDU Type Unsigned 8-bit integer COTP PDU Type
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
cltp.type CLTP PDU Type Unsigned 8-bit integer CLTP PDU Type
pres.context.management Context management Boolean Context management
pres.length Length Unsigned 16-bit integer
pres.mode.selector Mode selector Unsigned 8-bit integer Mode select
pres.protocol.version Protocol version Unsigned 16-bit integer Protocol version
pres.restoration Restoration Boolean Restoration
pres.sequence Sequence Unsigned 8-bit integer Mode select
pres.type PPDU Type Unsigned 8-bit integer
pres.value Value Unsigned 8-bit integer Value
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
ISystemActivator.opnum Operation Unsigned 16-bit integer
e164.called_party_number.digits E.164 Called party number digits String
e164.calling_party_number.digits E.164 Calling party number digits String
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.advanced_prediction Advanced prediction option Boolean Advanced Prediction option for current picture
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.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.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.pbframes p/b frame Boolean Optional PB-frames mode as defined by H.263 (MODE C)
h263.picture_coding_type Inter-coded frame Boolean Picture coding type, intra-coded (false) or inter-coded (true)
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 F Boolean Indicates the mode of the payload header (MODE A or B/C)
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.tr Temporal Reference for P frames Unsigned 8-bit integer Temporal Reference for the P frame as defined by H.263
h263.trb Temporal Reference for B frames Unsigned 8-bit integer Temporal Reference for the B frame as defined by H.263
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.
sflow.agent agent address IPv4 address sFlow Agent IP address
sflow.agent.v6 agent address IPv6 address sFlow Agent IPv6 address
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.nexthop Next Hop IPv4 address Next Hop address
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.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.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
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
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
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.Chasis Chasis Device Unsigned 8-bit integer Chasis 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.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.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.ARMBER LED Support ARMBER ? Unsigned 8-bit integer LED Support ARMBER ?
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.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.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.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.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.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.app_addr.sinzero Zero Byte array Zero
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 Signed 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.capability Actual codec capability Unsigned 32-bit integer
iax2.iax.cause Cause String
iax2.iax.cpe_adsi CPE ADSI capability Unsigned 16-bit integer
iax2.iax.dataformat Data call format Unsigned 32-bit integer
iax2.iax.dialplan_status Dialplan status Unsigned 16-bit integer
iax2.iax.dnid Originally dialed DNID String
iax2.iax.format Desired codec format 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.rdnis Referring DNIS String
iax2.iax.refresh When to refresh registration Signed 16-bit integer
iax2.iax.subclass IAX type Unsigned 8-bit integer IAX type gives the command number for IAX signalling packets
iax2.iax.transferid Transfer Request Identifier Unsigned 32-bit integer
iax2.iax.unknowndata data Unsigned 8-bit integer 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 recieved packet
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.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 Sub-class Unsigned 8-bit integer subclass
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 Packet type Unsigned 8-bit integer Full/minivoice/minivideo/meta packet
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 Subclass (compressed codec no) Unsigned 8-bit integer Subclass (compressed codec no)
iax2.voice.codec CODEC Unsigned 32-bit integer CODEC gives the codec used to encode audio data
iax2.voice.subclass Sub-class Unsigned 8-bit integer subclass
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
ib.opcode Opcode Unsigned 32-bit integer packet opcode
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 8-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.res Reserved Boolean Reserved
icmp.mip.reserved Reserved Unsigned 8-bit integer
icmp.mip.seq Sequence Number Unsigned 16-bit integer
icmp.mip.type Extension Type Unsigned 8-bit integer
icmp.mip.v VJ Comp Boolean Van Jacobson Header Compression Support
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.checksum Checksum Unsigned 16-bit integer
icmpv6.checksum_bad Bad Checksum Boolean
icmpv6.code Code Unsigned 8-bit integer
icmpv6.haad.ha_addrs Home Agent Addresses IPv6 address
icmpv6.type Type Unsigned 8-bit integer
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.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 Supress Router Side Processing
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
ip.addr Source or Destination Address IPv4 address
ip.checksum Header checksum Unsigned 16-bit integer
ip.checksum_bad Bad Header checksum Boolean
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.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
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.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.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 8-bit integer
ipv6.dst Destination IPv6 address Destination IPv6 Address
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.multipletails Multiple tail fragments found Boolean Several tails were found when defragmenting the packet
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.hlim Hop limit Unsigned 8-bit integer
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.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.src Source IPv6 address Source IPv6 Address
ipv6.version Version Unsigned 8-bit integer
irc.command Command String Command associated with request
irc.request Request Boolean TRUE if IRC request
irc.response Response Boolean TRUE if IRC response
ike.cert_authority_dn Certificate Authority Distinguished Name Unsigned 32-bit integer Certificate Authority Distinguished Name
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
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 JXTA Message Framing No value JXTA Message Framing Headers
jxta.framing.header Header No value JXTA Message Framing Header
jxta.framing.header.name Name String JXTA Message Framing Header Name
jxta.framing.header.namelen Name Length Unsigned 8-bit integer JXTA Message Framing Header Name Length
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 JXTA Message No value JXTA Message
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.encoding.length Element Type Length Unsigned 16-bit integer JXTA Message Element Encoding Length
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.name Element Name String JXTA Message Element Name
jxta.message.element.name.length Element Name Length Unsigned 16-bit integer JXTA Message Element Name Length
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.element.type.length Element Type Length Unsigned 16-bit integer JXTA Message Element Name Length
jxta.message.elements Element Count Unsigned 16-bit integer JXTA Message Element Count
jxta.message.namespace.len Namespace Name Length Unsigned 16-bit integer JXTA Message Namespace Name Length
jxta.message.namespace.name Namespace Name String JXTA Message Namespace Name
jxta.message.namespaces Namespace Count Unsigned 16-bit integer JXTA Message Namespaces
jxta.message.signature Signature String JXTA Message Signature
jxta.message.version Version Unsigned 8-bit integer JXTA Message Version
jxta.udp JXTA UDP Message No value JXTA UDP Message
jxta.udpsig Signature String JXTA UDP Signature
jxta.welcome Welcome Message No value JXTA Connection Welcome Message
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.atm1.cookie Cookie Unsigned 32-bit integer
juniper.atm2.cookie Cookie Unsigned 64-bit integer
juniper.direction Direction Unsigned 8-bit integer
juniper.l2hdr L2 header presence Unsigned 8-bit integer
juniper.magic-number Magic Number Unsigned 24-bit integer
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 checkSum 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.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.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_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.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.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.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.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.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.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.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.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.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.sname Server Name No value This is the name part server's identity
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
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
ldap.abandon.msgid Abandon Msg Id Unsigned 32-bit integer LDAP Abandon Msg Id
ldap.attribute Attribute String LDAP Attribute
ldap.bind.auth_type Auth Type Unsigned 8-bit integer LDAP Bind Auth Type
ldap.bind.credentials Credentials Byte array LDAP Bind Credentials
ldap.bind.dn DN String LDAP Bind Distinguished Name
ldap.bind.mechanism Mechanism String LDAP Bind Mechanism
ldap.bind.password Password String LDAP Bind Password
ldap.bind.server_credentials Server Credentials Byte array LDAP Bind Server Credentials
ldap.bind.version Version Unsigned 32-bit integer LDAP Bind Version
ldap.compare.test Test String LDAP Compare Test
ldap.controls.critical Control Critical Boolean LDAP Control Critical
ldap.controls.oid Control OID String LDAP Control OID
ldap.controls.value Control Value Byte array LDAP Control Value
ldap.dn Distinguished Name String LDAP Distinguished Name
ldap.length Length Unsigned 32-bit integer LDAP Length
ldap.message_id Message Id Unsigned 32-bit integer LDAP Message Id
ldap.message_length Message Length Unsigned 32-bit integer LDAP Message Length
ldap.message_type Message Type Unsigned 8-bit integer LDAP Message Type
ldap.modify.add Add String LDAP Add
ldap.modify.delete Delete String LDAP Delete
ldap.modify.replace Replace String LDAP Replace
ldap.modrdn.delete Delete Values Boolean LDAP Modify RDN - Delete original values
ldap.modrdn.name New Name String LDAP New Name
ldap.modrdn.superior New Location String LDAP Modify RDN - New Location
ldap.response_in Response In Frame number The response to this packet is in this frame
ldap.response_to Response To Frame number This is a response to the LDAP command in this frame
ldap.result.code Result Code Unsigned 8-bit integer LDAP Result Code
ldap.result.errormsg Error Message String LDAP Result Error Message
ldap.result.matcheddn Matched DN String LDAP Result Matched DN
ldap.result.referral Referral String LDAP Result Referral URL
ldap.sasl_buffer_length SASL Buffer Length Unsigned 32-bit integer SASL Buffer Length
ldap.search.basedn Base DN String LDAP Search Base Distinguished Name
ldap.search.dereference Dereference Unsigned 8-bit integer LDAP Search Dereference
ldap.search.filter Filter String LDAP Search Filter
ldap.search.reference Reference URL String LDAP Search Reference URL
ldap.search.scope Scope Unsigned 8-bit integer LDAP Search Scope
ldap.search.sizelimit Size Limit Unsigned 32-bit integer LDAP Search Size Limit
ldap.search.timelimit Time Limit Unsigned 32-bit integer LDAP Search Time Limit
ldap.search.typesonly Attributes Only Boolean LDAP Search Attributes Only
ldap.time Time Time duration The time between the Call and the Reply
ldap.value Value String LDAP Value
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 ethereal developers what this type is>
mscldap.netlogon.version Version Unsigned 32-bit integer Version of <please tell ethereal 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.cr C/R Unsigned 16-bit integer Command/Response bit
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
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.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 Local 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 Local 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 Local INTERFACE_ID No value
lmp.obj.linkid Local LINK_ID No value
lmp.obj.messageid MESSAGE_ID 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.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
sll.etype Protocol Unsigned 16-bit integer Ethernet 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.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
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.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.s S format Unsigned 16-bit integer Supervisory format S
llcgprs.s1s2 Supervisory function bits Unsigned 16-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.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
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
llc.dsap.ig IG Bit Boolean Individual/Group
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
llc.ssap.cr CR Bit Boolean Command/Response
llc.type Type Unsigned 16-bit integer
logotypecertextn.LogotypeExtn LogotypeExtn No value LogotypeExtn
logotypecertextn.audio audio No value LogotypeData/audio
logotypecertextn.audioDetails audioDetails No value LogotypeAudio/audioDetails
logotypecertextn.audioInfo audioInfo No value LogotypeAudio/audioInfo
logotypecertextn.audio_item Item No value LogotypeData/audio/_item
logotypecertextn.channels channels Signed 32-bit integer LogotypeAudioInfo/channels
logotypecertextn.communityLogos communityLogos No value LogotypeExtn/communityLogos
logotypecertextn.communityLogos_item Item Unsigned 32-bit integer LogotypeExtn/communityLogos/_item
logotypecertextn.direct direct No value LogotypeInfo/direct
logotypecertextn.fileSize fileSize Signed 32-bit integer
logotypecertextn.hashAlg hashAlg No value HashAlgAndValue/hashAlg
logotypecertextn.hashValue hashValue Byte array HashAlgAndValue/hashValue
logotypecertextn.image image No value LogotypeData/image
logotypecertextn.imageDetails imageDetails No value LogotypeImage/imageDetails
logotypecertextn.imageInfo imageInfo No value LogotypeImage/imageInfo
logotypecertextn.image_item Item No value LogotypeData/image/_item
logotypecertextn.indirect indirect No value LogotypeInfo/indirect
logotypecertextn.info info Unsigned 32-bit integer OtherLogotypeInfo/info
logotypecertextn.issuerLogo issuerLogo Unsigned 32-bit integer LogotypeExtn/issuerLogo
logotypecertextn.language language String
logotypecertextn.logotypeHash logotypeHash No value LogotypeDetails/logotypeHash
logotypecertextn.logotypeHash_item Item No value LogotypeDetails/logotypeHash/_item
logotypecertextn.logotypeType logotypeType String OtherLogotypeInfo/logotypeType
logotypecertextn.logotypeURI logotypeURI No value LogotypeDetails/logotypeURI
logotypecertextn.logotypeURI_item Item String LogotypeDetails/logotypeURI/_item
logotypecertextn.mediaType mediaType String LogotypeDetails/mediaType
logotypecertextn.numBits numBits Signed 32-bit integer LogotypeImageResolution/numBits
logotypecertextn.otherLogos otherLogos No value LogotypeExtn/otherLogos
logotypecertextn.otherLogos_item Item No value LogotypeExtn/otherLogos/_item
logotypecertextn.playTime playTime Signed 32-bit integer LogotypeAudioInfo/playTime
logotypecertextn.refStructHash refStructHash No value LogotypeReference/refStructHash
logotypecertextn.refStructHash_item Item No value LogotypeReference/refStructHash/_item
logotypecertextn.refStructURI refStructURI No value LogotypeReference/refStructURI
logotypecertextn.refStructURI_item Item String LogotypeReference/refStructURI/_item
logotypecertextn.resolution resolution Unsigned 32-bit integer LogotypeImageInfo/resolution
logotypecertextn.sampleRate sampleRate Signed 32-bit integer LogotypeAudioInfo/sampleRate
logotypecertextn.subjectLogo subjectLogo Unsigned 32-bit integer LogotypeExtn/subjectLogo
logotypecertextn.tableSize tableSize Signed 32-bit integer LogotypeImageResolution/tableSize
logotypecertextn.type type Signed 32-bit integer LogotypeImageInfo/type
logotypecertextn.xSize xSize Signed 32-bit integer LogotypeImageInfo/xSize
logotypecertextn.ySize ySize Signed 32-bit integer LogotypeImageInfo/ySize
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
MAP_DialoguePDU.applicationProcedureCancellation applicationProcedureCancellation Unsigned 32-bit integer MAP-UserAbortChoice/applicationProcedureCancellation
MAP_DialoguePDU.destinationReference destinationReference Byte array
MAP_DialoguePDU.map_ProviderAbortReason map-ProviderAbortReason Unsigned 32-bit integer
MAP_DialoguePDU.map_UserAbortChoice map-UserAbortChoice Unsigned 32-bit integer
MAP_DialoguePDU.map_accept map-accept No value MAP-DialoguePDU/map-accept
MAP_DialoguePDU.map_close map-close No value MAP-DialoguePDU/map-close
MAP_DialoguePDU.map_open map-open No value MAP-DialoguePDU/map-open
MAP_DialoguePDU.map_providerAbort map-providerAbort No value MAP-DialoguePDU/map-providerAbort
MAP_DialoguePDU.map_refuse map-refuse No value MAP-DialoguePDU/map-refuse
MAP_DialoguePDU.map_userAbort map-userAbort No value MAP-DialoguePDU/map-userAbort
MAP_DialoguePDU.originationReference originationReference Byte array
MAP_DialoguePDU.reason reason Unsigned 32-bit integer
MAP_DialoguePDU.resourceUnavailable resourceUnavailable Unsigned 32-bit integer MAP-UserAbortChoice/resourceUnavailable
MAP_DialoguePDU.userResourceLimitation userResourceLimitation No value MAP-UserAbortChoice/userResourceLimitation
MAP_DialoguePDU.userSpecificReason userSpecificReason No value MAP-UserAbortChoice/userSpecificReason
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
mime_multipart.header.content-disposition Content-Disposition String RFC 3261: Content-Disposition Header
mime_multipart.header.content-encoding Content-Encoding String RFC 3261: Content-Encoding Header
mime_multipart.header.content-language Content-Language String RFC 3261: Content-Language Header
mime_multipart.header.content-length Content-Length String RFC 3261: Content-Length Header
mime_multipart.header.content-type Content-Type String RFC 3261: Content-Type Header
mime_multipart.type Type String RFC 3261: MIME multipart encapsulation type
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 X-Mms-Reply-Charging-Deadline Unsigned 8-bit integer MMS-specific message reply charging deadline type.
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
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
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
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 DPC String
mtp3.chinese_dpc DPC String
mtp3.chinese_opc DPC String
mtp3.dpc DPC Unsigned 32-bit integer
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 OPC Unsigned 32-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.pc PC Unsigned 32-bit integer
mtp3.priority Priority Unsigned 8-bit integer
mtp3.service_indicator Service indicator Unsigned 8-bit integer
mtp3.sls Signalling Link Selector Unsigned 32-bit integer
mtp3.spare Spare Unsigned 8-bit integer
mtp3mg.ansi_apc Affected Point Code String
mtp3mg.apc Affected Point Code (ITU) Unsigned 8-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.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.status Status Unsigned 8-bit integer Congestion status
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.user User Unsigned 8-bit integer Unavailable user part
drsuapi.opnum Operation Unsigned 16-bit integer Operation
dfs.opnum Operation Unsigned 16-bit integer Operation
trksvr.opnum Operation Unsigned 16-bit integer
trksvr.rc Return code Unsigned 32-bit integer TRKSVR return code
efsrpc.cert_dn Certificate DN String Distinguished Name of EFS certificate
efsrpc.data_size Size of data structure Unsigned 32-bit integer Size of data structure
efsrpc.filename Filename String File name
efsrpc.flags Flags Unsigned 32-bit integer EFSRPC Flags
efsrpc.hnd Context Handle Byte array Context Handle
efsrpc.num_entries Number of entries Unsigned 32-bit integer Number of Entries
efsrpc.opnum Operation Unsigned 16-bit integer
efsrpc.rc Return code Unsigned 32-bit integer EFSRPC return code
efsrpc.reserved Reserved value Unsigned 32-bit integer Reserved value
eventlog.backup_file Backup filename String Eventlog backup file
eventlog.buf_size Buffer size Unsigned 32-bit integer Eventlog buffer size
eventlog.flags Eventlog flags Unsigned 32-bit integer Eventlog flags
eventlog.hnd Context Handle Byte array Eventlog context handle
eventlog.info_level Information level Unsigned 32-bit integer Eventlog information level
eventlog.name Eventlog name String Eventlog name
eventlog.offset Eventlog offset Unsigned 32-bit integer Eventlog offset
eventlog.oldest_record Oldest record Unsigned 32-bit integer Oldest record available in eventlog
eventlog.opnum Operation Unsigned 16-bit integer Operation
eventlog.rc Return code Unsigned 32-bit integer Eventlog return status code
eventlog.records Number of records Unsigned 32-bit integer Number of records in eventlog
eventlog.size Eventlog size Unsigned 32-bit integer Eventlog size
eventlog.unknown Unknown field Unsigned 32-bit integer Unknown field
eventlog.unknown_str Unknown string String Unknown string
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.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 ethereal developers.
mapi.unknown_short Unknown short Unsigned 16-bit integer Unknown short. If you know what this is, contact ethereal developers.
mapi.unknown_string Unknown string String Unknown string. If you know what this is, contact ethereal developers.
frsrpc.opnum Operation Unsigned 16-bit integer Operation
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 ethereal developers.
lsa.unknown.hyper Unknown hyper Unsigned 64-bit integer Unknown hyper. If you know what this is, contact ethereal developers.
lsa.unknown.long Unknown long Unsigned 32-bit integer Unknown long. If you know what this is, contact ethereal developers.
lsa.unknown.short Unknown short Unsigned 16-bit integer Unknown short. If you know what this is, contact ethereal developers.
lsa.unknown_string Unknown string String Unknown string. If you know what this is, contact ethereal developers.
nt.luid.high High Unsigned 32-bit integer LUID High component
nt.luid.low Low Unsigned 32-bit integer LUID Low component
ls_ads.op_status Operational status Unsigned 16-bit integer Current operational status
ls_ads.opnum Operation Unsigned 16-bit integer Operation
ls_ads.upgrading Upgrading Unsigned 32-bit integer Upgrade State
lsa_ds.dominfo.dnsname DNS name String DNS Domain Name
lsa_ds.dominfo.flags Flags Unsigned 32-bit integer Machine flags
lsa_ds.dominfo.forest Forest name String DNS Forest Name
lsa_ds.dominfo.level Level Unsigned 16-bit integer Information level of requested data
lsa_ds.dominfo.nbname Netbios name String Netbios Domain Name
lsa_ds.guid GUID String
lsa_ds.rc Return code Unsigned 32-bit integer LSA_DS return status code
lsa_ds.role Machine role Unsigned 16-bit integer Role of machine in domain
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 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.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 retruned server to be a NTP serveruns WindowsTimeServicer
netlogon.get_dcname.request.flags.writable_required Writable Required Boolean If we require that the return 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.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.unk Unknown Byte array Unknown
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.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 ethereal developers.
netlogon.unknown.long Unknown long Unsigned 32-bit integer Unknown long. If you know what this is, contact ethereal developers.
netlogon.unknown.short Unknown short Unsigned 16-bit integer Unknown short. If you know what this is, contact ethereal developers.
netlogon.unknown_string Unknown string String Unknown string. If you know what this is, contact ethereal 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.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
reg.access_mask Access mask Unsigned 32-bit integer Access mask
reg.data Key data Byte array Key data
reg.getversion.version Version Unsigned 32-bit integer Version
reg.hnd Context handle Byte array REG policy handle
reg.keyname Key name String Keyname
reg.offered Offered Unsigned 32-bit integer Offered
reg.openhklm.unknown1 Unknown 1 Unsigned 16-bit integer Unknown 1
reg.openhklm.unknown2 Unknown 2 Unsigned 16-bit integer Unknown 2
reg.openkey.unknown1 Unknown 1 Unsigned 32-bit integer Unknown 1
reg.opnum Operation Unsigned 16-bit integer Operation
reg.querykey.class Class String Class
reg.querykey.max_subkey_len Max subkey len Unsigned 32-bit integer Max subkey len
reg.querykey.max_valbuf_size Max valbuf size Unsigned 32-bit integer Max valbuf size
reg.querykey.max_valname_len Max valnum len Unsigned 32-bit integer Max valname len
reg.querykey.modtime Mod time Date/Time stamp Secdesc
reg.querykey.num_subkeys Num subkeys Unsigned 32-bit integer Num subkeys
reg.querykey.num_values Num values Unsigned 32-bit integer Num values
reg.querykey.reserved Reserved Unsigned 32-bit integer Reserved
reg.querykey.secdesc Secdesc Unsigned 32-bit integer Secdesc
reg.rc Return code Unsigned 32-bit integer REG return code
reg.reserved Reserved Unsigned 32-bit integer Reserved
reg.returned Returned Unsigned 32-bit integer Returned
reg.shutdown.force Force applications shut Unsigned 8-bit integer Force applications shut
reg.shutdown.message Message String Message
reg.shutdown.reason Reason Unsigned 32-bit integer Reason
reg.shutdown.reboot Reboot Unsigned 8-bit integer Reboot
reg.shutdown.seconds Seconds Unsigned 32-bit integer Seconds
reg.shutdown.server Server Unsigned 16-bit integer Server
reg.type Key type Unsigned 32-bit integer Key type
reg.unknown Unknown Unsigned 32-bit integer Unknown
rras.opnum Operation Unsigned 16-bit integer Operation
sam.sd_size Size Unsigned 32-bit integer Size of SAM security descriptor
samr.access Access Mask Unsigned 32-bit integer Access
samr.access_granted Access Granted Unsigned 32-bit integer Access Granted
samr.acct_desc Account Desc String Account Description
samr.acct_expiry_time Acct Expiry Date/Time stamp When this user account expires
samr.acct_name Account Name String Name of Account
samr.alias Alias Unsigned 32-bit integer Alias
samr.alias.desc Alias Desc String Alias (Local Group) Description
samr.alias.num_of_members Num of Members in Alias Unsigned 32-bit integer Number of members in Alias (Local Group)
samr.alias_name Alias Name String Name of Alias (Local Group)
samr.attr Attributes Unsigned 32-bit integer
samr.bad_pwd_count Bad Pwd Count Unsigned 16-bit integer Number of bad pwd entries for this user
samr.callback Callback String Callback for this user
samr.codepage Codepage Unsigned 16-bit integer Codepage setting for this user
samr.comment Account Comment String Account Comment
samr.count Count Unsigned 32-bit integer Number of elements in following array
samr.country Country Unsigned 16-bit integer Country setting for this user
samr.crypt_hash Hash Byte array Encrypted Hash
samr.crypt_password Password Byte array Encrypted Password
samr.dc DC String Name of Domain Controller
samr.domain Domain String Name of Domain
samr.entries Entries Unsigned 32-bit integer Number of entries to return
samr.full_name Full Name String Full Name of Account
samr.group Group Unsigned 32-bit integer Group
samr.group.desc Group Desc String Group Description
samr.group.num_of_members Num of Members in Group Unsigned 32-bit integer Number of members in Group
samr.group_name Group Name String Name of Group
samr.hnd Context Handle Byte array
samr.home Home String Home directory for this user
samr.home_drive Home Drive String Home drive for this user
samr.index Index Unsigned 32-bit integer Index
samr.info_type Info Type Unsigned 32-bit integer Information Type
samr.kickoff_time Kickoff Time Date/Time stamp Time when this user will be kicked off
samr.level Level Unsigned 16-bit integer Level requested/returned for Information
samr.lm_change LM Change Unsigned 8-bit integer LM Change value
samr.lm_passchange_block Encrypted Block Byte array Lan Manager Password Change Block
samr.lm_password_verifier Verifier Byte array Lan Manager Password Verifier
samr.lm_pwd_set LM Pwd Set Unsigned 8-bit integer Flag indicating whether the LanManager password has been set
samr.logoff_time Last Logoff Time Date/Time stamp Time for last time this user logged off
samr.logon_count Logon Count Unsigned 16-bit integer Number of logons for this user
samr.logon_time Last Logon Time Date/Time stamp Time for last time this user logged on
samr.max_entries Max Entries Unsigned 32-bit integer Maximum number of entries
samr.max_pwd_age Max Pwd Age Time duration Maximum Password Age before it expires
samr.min_pwd_age Min Pwd Age Time duration Minimum Password Age before it can be changed
samr.min_pwd_len Min Pwd Len Unsigned 16-bit integer Minimum Password Length
samr.nt_passchange_block Encrypted Block Byte array NT Password Change Block
samr.nt_passchange_block_decrypted Decrypted Block Byte array NT Password Change Decrypted Block
samr.nt_passchange_block_new_ntpassword New NT Password String New NT Password
samr.nt_passchange_block_new_ntpassword_len New NT Unicode Password length Unsigned 32-bit integer New NT Password Unicode Length
samr.nt_passchange_block_pseudorandom Pseudorandom data Byte array Pseudorandom data
samr.nt_password_verifier Verifier Byte array NT Password Verifier
samr.nt_pwd_set NT Pwd Set Unsigned 8-bit integer Flag indicating whether the NT password has been set
samr.num_aliases Num Aliases Unsigned 32-bit integer Number of aliases in this domain
samr.num_groups Num Groups Unsigned 32-bit integer Number of groups in this domain
samr.num_users Num Users Unsigned 32-bit integer Number of users in this domain
samr.opnum Operation Unsigned 16-bit integer Operation
samr.pref_maxsize Pref MaxSize Unsigned 32-bit integer Maximum Size of data to return
samr.primary_group_rid Primary group RID Unsigned 32-bit integer RID of the user primary group
samr.profile Profile String Profile for this user
samr.pwd_Expired Expired flag Unsigned 8-bit integer Flag indicating if the password for this account has expired or not
samr.pwd_can_change_time PWD Can Change Date/Time stamp When this users password may be changed
samr.pwd_history_len Pwd History Len Unsigned 16-bit integer Password History Length
samr.pwd_last_set_time PWD Last Set Date/Time stamp Last time this users password was changed
samr.pwd_must_change_time PWD Must Change Date/Time stamp When this users password must be changed
samr.rc Return code Unsigned 32-bit integer
samr.resume_hnd Resume Hnd Unsigned 32-bit integer Resume handle
samr.ret_size Returned Size Unsigned 32-bit integer Number of returned objects in this PDU
samr.revision Revision Unsigned 64-bit integer Revision number for this structure
samr.rid Rid Unsigned 32-bit integer RID
samr.rid.attrib Rid Attrib Unsigned 32-bit integer
samr.script Script String Login script for this user
samr.server Server String Name of Server
samr.start_idx Start Idx Unsigned 32-bit integer Start Index for returned Information
samr.total_size Total Size Unsigned 32-bit integer Total size of data
samr.type Type Unsigned 32-bit integer Type
samr.unknown.char Unknown char Unsigned 8-bit integer Unknown char. If you know what this is, contact ethereal developers.
samr.unknown.hyper Unknown hyper Unsigned 64-bit integer Unknown hyper. If you know what this is, contact ethereal developers.
samr.unknown.long Unknown long Unsigned 32-bit integer Unknown long. If you know what this is, contact ethereal developers.
samr.unknown.short Unknown short Unsigned 16-bit integer Unknown short. If you know what this is, contact ethereal developers.
samr.unknown_string Unknown string String Unknown string. If you know what this is, contact ethereal developers.
samr.unknown_time Unknown time Date/Time stamp Unknown NT TIME, contact ethereal developers if you know what this is
samr.workstations Workstations String
samr_access_mask.alias_add_member Add member Boolean Add member
samr_access_mask.alias_get_members Get members Boolean Get members
samr_access_mask.alias_lookup_info Lookup info Boolean Lookup info
samr_access_mask.alias_remove_member Remove member Boolean Remove member
samr_access_mask.alias_set_info Set info Boolean Set info
samr_access_mask.connect_connect_to_server Connect to server Boolean Connect to server
samr_access_mask.connect_create_domain Create domain Boolean Create domain
samr_access_mask.connect_enum_domains Enum domains Boolean Enum domains
samr_access_mask.connect_initialize_server Initialize server Boolean Initialize server
samr_access_mask.connect_open_domain Open domain Boolean Open domain
samr_access_mask.connect_shutdown_server Shutdown server Boolean Shutdown server
samr_access_mask.domain_create_alias Create alias Boolean Create alias
samr_access_mask.domain_create_group Create group Boolean Create group
samr_access_mask.domain_create_user Create user Boolean Create user
samr_access_mask.domain_enum_accounts Enum accounts Boolean Enum accounts
samr_access_mask.domain_lookup_alias_by_mem Lookup alias Boolean Lookup alias
samr_access_mask.domain_lookup_info1 Lookup info1 Boolean Lookup info1
samr_access_mask.domain_lookup_info2 Lookup info2 Boolean Lookup info2
samr_access_mask.domain_open_account Open account Boolean Open account
samr_access_mask.domain_set_info1 Set info1 Boolean Set info1
samr_access_mask.domain_set_info2 Set info2 Boolean Set info2
samr_access_mask.domain_set_info3 Set info3 Boolean Set info3
samr_access_mask.group_add_member Add member Boolean Add member
samr_access_mask.group_get_members Get members Boolean Get members
samr_access_mask.group_lookup_info Lookup info Boolean Lookup info
samr_access_mask.group_remove_member Remove member Boolean Remove member
samr_access_mask.group_set_info Get info Boolean Get info
samr_access_mask.user_change_group_membership Change group membership Boolean Change group membership
samr_access_mask.user_change_password Change password Boolean Change password
samr_access_mask.user_get_attributes Get attributes Boolean Get attributes
samr_access_mask.user_get_group_membership Get group membership Boolean Get group membership
samr_access_mask.user_get_groups Get groups Boolean Get groups
samr_access_mask.user_get_locale Get locale Boolean Get locale
samr_access_mask.user_get_logoninfo Get logon info Boolean Get logon info
samr_access_mask.user_get_name_etc Get name, etc Boolean Get name, etc
samr_access_mask.user_set_attributes Set attributes Boolean Set attributes
samr_access_mask.user_set_loc_com Set loc com Boolean Set loc com
samr_access_mask.user_set_password Set password Boolean Set password
srvsvc. Max Raw Buf Len Unsigned 32-bit integer Max Raw Buf Len
srvsvc.acceptdownlevelapis Accept Downlevel APIs Unsigned 32-bit integer Accept Downlevel APIs
srvsvc.accessalert Access Alerts Unsigned 32-bit integer Number of access alerts
srvsvc.activelocks Active Locks Unsigned 32-bit integer Active Locks
srvsvc.alerts Alerts String Alerts
srvsvc.alertsched Alert Sched Unsigned 32-bit integer Alert Schedule
srvsvc.alist_mtime Alist mtime Unsigned 32-bit integer Alist mtime
srvsvc.ann_delta Announce Delta Unsigned 32-bit integer Announce Delta
srvsvc.announce Announce Unsigned 32-bit integer Announce
srvsvc.auditedevents Audited Events Unsigned 32-bit integer Number of audited events
srvsvc.auditprofile Audit Profile Unsigned 32-bit integer Audit Profile
srvsvc.autopath Autopath String Autopath
srvsvc.chdevjobs Char Dev Jobs Unsigned 32-bit integer Number of Char Device Jobs
srvsvc.chdevqs Char Devqs Unsigned 32-bit integer Number of Char Device Queues
srvsvc.chdevs Char Devs Unsigned 32-bit integer Number of Char Devices
srvsvc.chrdev Char Device String Char Device Name
srvsvc.chrdev_opcode Opcode Unsigned 32-bit integer Opcode to apply to the Char Device
srvsvc.chrdev_status Status Unsigned 32-bit integer Char Device Status
srvsvc.chrdev_time Time Unsigned 32-bit integer Char Device Time?
srvsvc.chrdevq Device Queue String Char Device Queue Name
srvsvc.chrqdev_numahead Num Ahead Unsigned 32-bit integer
srvsvc.chrqdev_numusers Num Users Unsigned 32-bit integer Char QDevice Number Of Users
srvsvc.chrqdev_pri Priority Unsigned 32-bit integer Char QDevice Priority
srvsvc.client.type Client Type String Client Type
srvsvc.comment Comment String Comment
srvsvc.computer Computer String Computer Name
srvsvc.con_id Connection ID Unsigned 32-bit integer Connection ID
srvsvc.con_num_opens Num Opens Unsigned 32-bit integer Num Opens
srvsvc.con_time Connection Time Unsigned 32-bit integer Connection Time
srvsvc.con_type Connection Type Unsigned 32-bit integer Connection Type
srvsvc.connections Connections Unsigned 32-bit integer Number of Connections
srvsvc.cur_uses Current Uses Unsigned 32-bit integer Current Uses
srvsvc.dfs_root_flags DFS Root Flags Unsigned 32-bit integer DFS Root Flags. Contact ethereal developers if you know what the bits are
srvsvc.disc Disc Unsigned 32-bit integer
srvsvc.disk_info0_unknown1 Disk_Info0 unknown Unsigned 32-bit integer Disk Info 0 unknown uint32
srvsvc.disk_name Disk Name String Disk Name
srvsvc.disk_name_len Disk Name Length Unsigned 32-bit integer Length of Disk Name
srvsvc.diskalert Disk Alerts Unsigned 32-bit integer Number of disk alerts
srvsvc.diskspacetreshold Diskspace Treshold Unsigned 32-bit integer Diskspace Treshold
srvsvc.domain Domain String Domain
srvsvc.emulated_server Emulated Server String Emulated Server Name
srvsvc.enablefcbopens Enable FCB Opens Unsigned 32-bit integer Enable FCB Opens
srvsvc.enableforcedlogoff Enable Forced Logoff Unsigned 32-bit integer Enable Forced Logoff
srvsvc.enableoplockforceclose Enable Oplock Force Close Unsigned 32-bit integer Enable Oplock Force Close
srvsvc.enableoplocks Enable Oplocks Unsigned 32-bit integer Enable Oplocks
srvsvc.enableraw Enable RAW Unsigned 32-bit integer Enable RAW
srvsvc.enablesharednetdrives Enable Shared Net Drives Unsigned 32-bit integer Enable Shared Net Drives
srvsvc.enablesoftcompat Enable Soft Compat Unsigned 32-bit integer Enable Soft Compat
srvsvc.enum_hnd Enumeration handle Byte array Enumeration Handle
srvsvc.erroralert Error Alerts Unsigned 32-bit integer Number of error alerts
srvsvc.errortreshold Error Treshold Unsigned 32-bit integer Error Treshold
srvsvc.file_id File ID Unsigned 32-bit integer File ID
srvsvc.file_num_locks Num Locks Unsigned 32-bit integer Number of locks for file
srvsvc.glist_mtime Glist mtime Unsigned 32-bit integer Glist mtime
srvsvc.guest Guest Account String Guest Account
srvsvc.hidden Hidden Unsigned 32-bit integer Hidden
srvsvc.hnd Context Handle Byte array Context Handle
srvsvc.info.platform_id Platform ID Unsigned 32-bit integer Platform ID
srvsvc.initconntable Init Connection Table Unsigned 32-bit integer Init Connection Table
srvsvc.initfiletable Init File Table Unsigned 32-bit integer Init File Table
srvsvc.initsearchtable Init Search Table Unsigned 32-bit integer Init Search Table
srvsvc.initsesstable Init Session Table Unsigned 32-bit integer Init Session Table
srvsvc.initworkitems Init Workitems Unsigned 32-bit integer Workitems
srvsvc.irpstacksize Irp Stack Size Unsigned 32-bit integer Irp Stack Size
srvsvc.lanmask LANMask Unsigned 32-bit integer LANMask
srvsvc.licences Licences Unsigned 32-bit integer Licences
srvsvc.linkinfovalidtime Link Info Valid Time Unsigned 32-bit integer Link Info Valid Time
srvsvc.lmannounce LM Announce Unsigned 32-bit integer LM Announce
srvsvc.logonalert Logon Alerts Unsigned 32-bit integer Number of logon alerts
srvsvc.max_uses Max Uses Unsigned 32-bit integer Max Uses
srvsvc.maxaudits Max Audits Unsigned 32-bit integer Maximum number of audits
srvsvc.maxcopyreadlen Max Copy Read Len Unsigned 32-bit integer Max Copy Read Len
srvsvc.maxcopywritelen Max Copy Write Len Unsigned 32-bit integer Max Copy Write Len
srvsvc.maxfreeconnections Max Free Conenctions Unsigned 32-bit integer Max Free Connections
srvsvc.maxkeepcomplsearch Max Keep Compl Search Unsigned 32-bit integer Max Keep Compl Search
srvsvc.maxkeepsearch Max Keep Search Unsigned 32-bit integer Max Keep Search
srvsvc.maxlinkdelay Max Link Delay Unsigned 32-bit integer Max Link Delay
srvsvc.maxmpxct MaxMpxCt Unsigned 32-bit integer MaxMpxCt
srvsvc.maxnonpagedmemoryusage Max Non-Paged Memory Usage Unsigned 32-bit integer Max Non-Paged Memory Usage
srvsvc.maxpagedmemoryusage Max Paged Memory Usage Unsigned 32-bit integer Max Paged Memory Usage
srvsvc.maxworkitemidletime Max Workitem Idle Time Unsigned 32-bit integer Max Workitem Idle Time
srvsvc.maxworkitems Max Workitems Unsigned 32-bit integer Workitems
srvsvc.minfreeconnections Min Free Conenctions Unsigned 32-bit integer Min Free Connections
srvsvc.minfreeworkitems Min Free Workitems Unsigned 32-bit integer Min Free Workitems
srvsvc.minkeepcomplsearch Min Keep Compl Search Unsigned 32-bit integer Min Keep Compl Search
srvsvc.minkeepsearch Min Keep Search Unsigned 32-bit integer Min Keep Search
srvsvc.minlinkthroughput Min Link Throughput Unsigned 32-bit integer Min Link Throughput
srvsvc.minrcvqueue Min Rcv Queue Unsigned 32-bit integer Min Rcv Queue
srvsvc.netioalert Net I/O Alerts Unsigned 32-bit integer Number of Net I/O Alerts
srvsvc.networkerrortreshold Network Error Treshold Unsigned 32-bit integer Network Error Treshold
srvsvc.num_admins Num Admins Unsigned 32-bit integer Number of Administrators
srvsvc.numbigbufs Num Big Bufs Unsigned 32-bit integer Number of big buffers
srvsvc.numblockthreads Num Block Threads Unsigned 32-bit integer Num Block Threads
srvsvc.numfiletasks Num Filetasks Unsigned 32-bit integer Number of filetasks
srvsvc.openfiles Open Files Unsigned 32-bit integer Open Files
srvsvc.opensearch Open Search Unsigned 32-bit integer Open Search
srvsvc.oplockbreakresponsewait Oplock Break Response wait Unsigned 32-bit integer Oplock Break response Wait
srvsvc.oplockbreakwait Oplock Break Wait Unsigned 32-bit integer Oplock Break Wait
srvsvc.opnum Operation Unsigned 16-bit integer Operation
srvsvc.outbuflen OutBufLen Unsigned 32-bit integer Output Buffer Length
srvsvc.parm_error Parameter Error Unsigned 32-bit integer Parameter Error
srvsvc.path Path String Path
srvsvc.path_flags Flags Unsigned 32-bit integer Path flags
srvsvc.path_len Len Unsigned 32-bit integer Path len
srvsvc.path_type Type Unsigned 32-bit integer Path type
srvsvc.perm Permissions Unsigned 32-bit integer Permissions
srvsvc.policy Policy Unsigned 32-bit integer Policy
srvsvc.preferred_len Preferred length Unsigned 32-bit integer Preferred Length
srvsvc.prefix Prefix String Path Prefix
srvsvc.qualifier Qualifier String Connection Qualifier
srvsvc.rawworkitems Raw Workitems Unsigned 32-bit integer Workitems
srvsvc.rc Return code Unsigned 32-bit integer Return Code
srvsvc.reserved Reserved Unsigned 32-bit integer Announce
srvsvc.scavqosinfoupdatetime Scav QoS Info Update Time Unsigned 32-bit integer Scav QoS Info Update Time
srvsvc.scavtimeout Scav Timeout Unsigned 32-bit integer Scav Timeout
srvsvc.security Security Unsigned 32-bit integer Security
srvsvc.server Server String Server Name
srvsvc.server_stat.avresponse Avresponse Unsigned 32-bit integer
srvsvc.server_stat.bigbufneed Big Buf Need Unsigned 32-bit integer Number of big buffers needed?
srvsvc.server_stat.bytesrcvd Bytes Rcvd Unsigned 64-bit integer Number of bytes received
srvsvc.server_stat.bytessent Bytes Sent Unsigned 64-bit integer Number of bytes sent
srvsvc.server_stat.devopens Devopens Unsigned 32-bit integer Number of devopens
srvsvc.server_stat.fopens Fopens Unsigned 32-bit integer Number of fopens
srvsvc.server_stat.jobsqueued Jobs Queued Unsigned 32-bit integer Number of jobs queued
srvsvc.server_stat.permerrors Permerrors Unsigned 32-bit integer Number of permission errors
srvsvc.server_stat.pwerrors Pwerrors Unsigned 32-bit integer Number of password errors
srvsvc.server_stat.reqbufneed Req Buf Need Unsigned 32-bit integer Number of request buffers needed?
srvsvc.server_stat.serrorout Serrorout Unsigned 32-bit integer Number of serrorout
srvsvc.server_stat.sopens Sopens Unsigned 32-bit integer Number of sopens
srvsvc.server_stat.start Start Unsigned 32-bit integer
srvsvc.server_stat.stimeouts stimeouts Unsigned 32-bit integer Number of stimeouts
srvsvc.server_stat.syserrors Syserrors Unsigned 32-bit integer Number of system errors
srvsvc.service Service String Service
srvsvc.service_bits Service Bits Unsigned 32-bit integer Service Bits
srvsvc.service_bits_of_interest Service Bits Of Interest Unsigned 32-bit integer Service Bits Of Interest
srvsvc.service_options Options Unsigned 32-bit integer Service Options
srvsvc.session Session String Session Name
srvsvc.session.idle_time Idle Time Unsigned 32-bit integer Idle Time
srvsvc.session.num_opens Num Opens Unsigned 32-bit integer Num Opens
srvsvc.session.time Time Unsigned 32-bit integer Time
srvsvc.session.user_flags User Flags Unsigned 32-bit integer User Flags
srvsvc.sessopens Sessions Open Unsigned 32-bit integer Sessions Open
srvsvc.sessreqs Sessions Reqs Unsigned 32-bit integer Sessions Requests
srvsvc.sessvcs Sessions VCs Unsigned 32-bit integer Sessions VCs
srvsvc.share Share String Share
srvsvc.share.num_entries Number of entries Unsigned 32-bit integer Number of Entries
srvsvc.share.tot_entries Total entries Unsigned 32-bit integer Total Entries
srvsvc.share_alternate_name Alternate Name String Alternate name for this share
srvsvc.share_flags Flags Unsigned 32-bit integer Share flags
srvsvc.share_passwd Share Passwd String Password for this share
srvsvc.share_type Share Type Unsigned 32-bit integer Share Type
srvsvc.shares Shares Unsigned 32-bit integer Number of Shares
srvsvc.sizreqbufs Siz Req Bufs Unsigned 32-bit integer
srvsvc.srvheuristics Server Heuristics String Server Heuristics
srvsvc.threadcountadd Thread Count Add Unsigned 32-bit integer Thread Count Add
srvsvc.threadpriority Thread Priority Unsigned 32-bit integer Thread Priority
srvsvc.timesource Timesource Unsigned 32-bit integer Timesource
srvsvc.tod.day Day Unsigned 32-bit integer
srvsvc.tod.elapsed Elapsed Unsigned 32-bit integer
srvsvc.tod.hours Hours Unsigned 32-bit integer
srvsvc.tod.hunds Hunds Unsigned 32-bit integer
srvsvc.tod.mins Mins Unsigned 32-bit integer
srvsvc.tod.month Month Unsigned 32-bit integer
srvsvc.tod.msecs msecs Unsigned 32-bit integer
srvsvc.tod.secs Secs Unsigned 32-bit integer
srvsvc.tod.timezone Timezone Unsigned 32-bit integer
srvsvc.tod.tinterval Tinterval Unsigned 32-bit integer
srvsvc.tod.weekday Weekday Unsigned 32-bit integer
srvsvc.tod.year Year Unsigned 32-bit integer
srvsvc.transport Transport String Transport Name
srvsvc.transport.address Address Byte array Address of transport
srvsvc.transport.addresslen Address Len Unsigned 32-bit integer Length of transport address
srvsvc.transport.name Name String Name of transport
srvsvc.transport.networkaddress Network Address String Network address for transport
srvsvc.transport.num_vcs VCs Unsigned 32-bit integer Number of VCs for this transport
srvsvc.ulist_mtime Ulist mtime Unsigned 32-bit integer Ulist mtime
srvsvc.update_immediately Update Immediately Unsigned 32-bit integer Update Immediately
srvsvc.user User String User Name
srvsvc.user_path User Path String User Path
srvsvc.users Users Unsigned 32-bit integer User Count
srvsvc.version.major Major Version Unsigned 32-bit integer Major Version
srvsvc.version.minor Minor Version Unsigned 32-bit integer Minor Version
srvsvc.xactmemsize Xact Mem Size Unsigned 32-bit integer Xact Mem Size
svrsvc.info_level Info Level Unsigned 32-bit integer Info Level
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.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.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.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.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.parameters Parameters String Parameters
spoolss.portname Port name String Port name
spoolss.printer.action Action Unsigned 32-bit integer Action
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.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.major_version Major version Unsigned 16-bit integer Major version
spoolss.printer.printer_errors Printer errors Unsigned 32-bit integer Printer errors
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.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
atsvc.command Command String Command to execute
atsvc.enum_hnd Enumeration handle Byte array Enumeration Handle
atsvc.job.hnd Handle Byte array Context handle
atsvc.job_day_of_month Job day of the month Unsigned 32-bit integer Job day of the month
atsvc.job_day_of_week Job day of the week Unsigned 8-bit integer Job day of the week
atsvc.job_flags Job flags Unsigned 8-bit integer Job flags
atsvc.job_id Job ID Unsigned 32-bit integer Job ID
atsvc.job_time Job time Unsigned 32-bit integer Job time
atsvc.jobs.flags.add_current_date Job relative to current day of month Boolean Job relative to current day of month
atsvc.jobs.flags.exec_error Last job execution status Boolean Last job execution status
atsvc.jobs.flags.noninteractive Job interactive status Boolean Job interactive status
atsvc.jobs.flags.runs_today Job schedule Boolean Job schedule
atsvc.jobs.flags.type Job type Boolean Job type
atsvc.jobs_count Jobs count Unsigned 32-bit integer Number of jobs
atsvc.max_id Max job ID Unsigned 32-bit integer Max job ID
atsvc.min_id Min job ID Unsigned 32-bit integer Min job ID
atsvc.num.entries Returned entries Signed 32-bit integer Number of returned entries
atsvc.opnum Operation Unsigned 16-bit integer Operation
atsvc.pref.max.len Preferred max length Signed 32-bit integer Preferred max length
atsvc.rc Return code Unsigned 32-bit integer atsvc status code
atsvc.server Server String Server Name
atsvc.total.entries Total entries Signed 32-bit integer Total number of available entries
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 ethereal developers.
tapi.unknown.long Unknown long Unsigned 32-bit integer Unknown long. If you know what this is, contact ethereal developers.
tapi.unknown.string Unknown string String Unknown string. If you know what this is, contact ethereal 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.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_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.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_name Server Name String SMB NETLOGON Server 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.update Update Type Unsigned 16-bit integer SMB NETLOGON Update Type
smb_netlogon.user_name User Name String SMB NETLOGON User Name
wkssvc.alternate_computer_name Alternate computer name String Alternate computer name
wkssvc.alternate_operations_account Account used for alternate name operations String Account used for alternate name operations
wkssvc.buf.files.deny.write Buffer Files Deny Write Signed 32-bit integer Buffer Files Deny Write
wkssvc.buf.files.read.only Buffer Files Read Only Signed 32-bit integer Buffer Files Read Only
wkssvc.buffer.named.pipes Buffer Named Pipes Signed 32-bit integer Buffer Named Pipes
wkssvc.cache.file.timeout Cache File Timeout Signed 32-bit integer Cache File Timeout
wkssvc.char.wait Char Wait Signed 32-bit integer Char Wait
wkssvc.collection.time Collection Time Signed 32-bit integer Collection Time
wkssvc.crypt_password Encrypted password Byte array Encrypted Password
wkssvc.dormant.file.limit Dormant File Limit Signed 32-bit integer Dormant File Limit
wkssvc.entries.read Entries Read Signed 32-bit integer Entries Read
wkssvc.enum_hnd Enumeration handle Byte array Enumeration Handle
wkssvc.errlog.sz Error Log Size Signed 32-bit integer Error Log Size
wkssvc.force.core.create.mode Force Core Create Mode Signed 32-bit integer Force Core Create Mode
wkssvc.illegal.datagram.reset.frequency Illegal Datagram Event Reset Frequency Signed 32-bit integer Illegal Datagram Event Reset Frequency
wkssvc.info.platform_id Platform ID Unsigned 32-bit integer Platform ID
wkssvc.info_level Info Level Unsigned 32-bit integer Info Level
wkssvc.join.account_used Account used for join operations String Account used for join operations
wkssvc.join.computer_account_ou Organizational Unit (OU) for computer account String Organizational Unit (OU) for computer account
wkssvc.join.domain Domain or Workgroup to join String Domain or Workgroup to join
wkssvc.join.flags Domain join flags Unsigned 32-bit integer Domain join flags
wkssvc.join.options.account_create Computer account creation Boolean Computer account creation
wkssvc.join.options.defer_spn_set Defer SPN set Boolean Defer SPN set
wkssvc.join.options.domain_join_if_joined New domain join if already joined Boolean New domain join if already joined
wkssvc.join.options.insecure_join Unsecure join Boolean Unsecure join
wkssvc.join.options.join_type Join type Boolean Join type
wkssvc.join.options.machine_pwd_passed Machine pwd passed Boolean Machine pwd passed
wkssvc.join.options.win9x_upgrade Win9x upgrade Boolean Win9x upgrade
wkssvc.junk Junk Unsigned 32-bit integer Junk
wkssvc.keep.connection Keep Connection Signed 32-bit integer Keep Connection
wkssvc.lan.root Lan Root String Lan Root
wkssvc.lock.increment Lock Increment Signed 32-bit integer Lock Increment
wkssvc.lock.maximum Lock Maximum Signed 32-bit integer Lock Maximum
wkssvc.lock.quota Lock Quota Signed 32-bit integer Lock Quota
wkssvc.log.election.packets Log Election Packets Signed 32-bit integer Log Election Packets
wkssvc.logged.on.users Logged On Users Unsigned 32-bit integer Logged On Users
wkssvc.logon.domain Logon Domain String Logon Domain
wkssvc.logon.server Logon Server String Logon Server
wkssvc.max.illegal.datagram.events Max Illegal Datagram Events Signed 32-bit integer Max Illegal Datagram Events
wkssvc.maximum.collection.count Maximum Collection Count Signed 32-bit integer Maximum Collection Count
wkssvc.maximum.commands Maximum Commands Signed 32-bit integer Maximum Commands
wkssvc.maximum.threads Maximum Threads Signed 32-bit integer Maximum Threads
wkssvc.netgrp Net Group String Net Group
wkssvc.num.entries Num Entries Signed 32-bit integer Num Entries
wkssvc.num.mailslot.buffers Num Mailslot Buffers Signed 32-bit integer Num Mailslot Buffers
wkssvc.num.srv.announce.buffers Num Srv Announce Buffers Signed 32-bit integer Num Srv Announce Buffers
wkssvc.number.of.vcs Number Of VCs Signed 32-bit integer Number of VSs
wkssvc.opnum Operation Unsigned 16-bit integer
wkssvc.other.domains Other Domains String Other Domains
wkssvc.parm.err Parameter Error Offset Signed 32-bit integer Parameter Error Offset
wkssvc.pipe.increment Pipe Increment Signed 32-bit integer Pipe Increment
wkssvc.pipe.maximum Pipe Maximum Signed 32-bit integer Pipe Maximum
wkssvc.pref.max.len Preferred Max Len Signed 32-bit integer Preferred Max Len
wkssvc.print.buf.time Print Buf Time Signed 32-bit integer Print Buff Time
wkssvc.qos Quality Of Service Signed 32-bit integer Quality Of Service
wkssvc.rc Return code Unsigned 32-bit integer Return Code
wkssvc.read.ahead.throughput Read Ahead Throughput Signed 32-bit integer Read Ahead Throughput
wkssvc.rename.flags Machine rename flags Unsigned 32-bit integer Machine rename flags
wkssvc.reserved Reserved field Signed 32-bit integer Reserved field
wkssvc.server Server String Server Name
wkssvc.session.timeout Session Timeout Signed 32-bit integer Session Timeout
wkssvc.size.char.buff Character Buffer Size Signed 32-bit integer Character Buffer Size
wkssvc.total.entries Total Entries Signed 32-bit integer Total Entries
wkssvc.transport.address Transport Address String Transport Address
wkssvc.transport.name Transport Name String Transport Name
wkssvc.unjoin.account_used Account used for unjoin operations String Account used for unjoin operations
wkssvc.unjoin.flags Domain unjoin flags Unsigned 32-bit integer Domain unjoin flags
wkssvc.unjoin.options.account_delete Computer account deletion Boolean Computer account deletion
wkssvc.use.512.byte.max.transfer Use 512 Byte Max Transfer Signed 32-bit integer Use 512 Byte Maximum Transfer
wkssvc.use.close.behind Use Close Behind Signed 32-bit integer Use Close Behind
wkssvc.use.encryption Use Encryption Signed 32-bit integer Use Encryption
wkssvc.use.lock.behind Use Lock Behind Signed 32-bit integer Use Lock Behind
wkssvc.use.lock.read.unlock Use Lock Read Unlock Signed 32-bit integer Use Lock Read Unlock
wkssvc.use.oplocks Use Opportunistic Locking Signed 32-bit integer Use OpLocks
wkssvc.use.raw.read Use Raw Read Signed 32-bit integer Use Raw Read
wkssvc.use.raw.write Use Raw Write Signed 32-bit integer Use Raw Write
wkssvc.use.write.raw.data Use Write Raw Data Signed 32-bit integer Use Write Raw Data
wkssvc.user.name User Name String User Name
wkssvc.utilize.nt.caching Utilize NT Caching Signed 32-bit integer Utilize NT Caching
wkssvc.version.major Major Version Unsigned 32-bit integer Major Version
wkssvc.version.minor Minor Version Unsigned 32-bit integer Minor Version
wkssvc.wan.ish WAN ish Signed 32-bit integer WAN ish
wkssvc.wrk.heuristics Wrk Heuristics Signed 32-bit integer Wrk Heuristics
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-lcated 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.len Extension Length Unsigned 16-bit integer Mobile IP Extension Length.
mip.ext.type Extension Type Unsigned 8-bit integer Mobile IP Extension 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.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
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 Care-of nonce index
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.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.mhtype Mobility Header Type Unsigned 8-bit integer Mobility Header Type
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
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
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
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.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
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.caps Caps Unsigned 16-bit integer MySQL Capabilities
mysql.caps.CP Can use compression protocol Boolean
mysql.caps.cd Connect With Database Boolean
mysql.caps.cu Support the mysql_change_user() Boolean
mysql.caps.fr Found Rows Boolean
mysql.caps.ia an Interactive Client Boolean
mysql.caps.ii Ignore sigpipes Boolean
mysql.caps.is Ignore Spaces before ( Boolean
mysql.caps.lf Long Flag Boolean
mysql.caps.li Can Use LOAD DATA LOCAL Boolean
mysql.caps.lp Long Password Boolean
mysql.caps.ns Dont Allow database.table.column Boolean
mysql.caps.ob ODBC Client Boolean
mysql.caps.sl Switch to SSL after handshake Boolean
mysql.caps.ta Client knows about transactions Boolean
mysql.charset Charset Unsigned 8-bit integer MySQL Charset
mysql.error_code Error Code Unsigned 16-bit integer MySQL Error CODE
mysql.max_packet MAX Packet Unsigned 24-bit integer MySQL Max packet
mysql.opcode Command Unsigned 8-bit integer MySQL OPCODE
mysql.packet_length Packet Length Unsigned 24-bit integer MySQL packet length
mysql.packet_number Packet Number Unsigned 8-bit integer MySQL Packet Number
mysql.parameter Parameter String Parameter
mysql.password Password String Login Password
mysql.payload Payload String MySQL Payload
mysql.protocol Protocol Unsigned 8-bit integer MySQL Protocol
mysql.response_code Response Code Unsigned 8-bit integer MySQL Respone Code
mysql.salt Salt String Salt
mysql.status Status Unsigned 16-bit integer MySQL Status
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
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
nfsacl.status2 Status Unsigned 32-bit integer Status
nfsacl.status3 Status Unsigned 32-bit integer Status
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
nspi.opnum Operation Unsigned 16-bit integer Operation
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.negotiate00000800 Negotiate 0x00000800 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.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.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.hlen Header length Unsigned 8-bit integer
norm.payload Payload No value
norm.sequence Sequence Unsigned 16-bit integer
norm.source_id Source ID Unsigned 32-bit integer
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 Unsigned 8-bit integer NBDGM message type
nbns.count.add_rr Additional RRs Unsigned 16-bit integer Number of additional records in packet
nbns.count.answers Answer RRs Unsigned 16-bit integer Number of answers in packet
nbns.count.auth_rr Authority RRs Unsigned 16-bit integer Number of authoritative records in packet
nbns.count.queries Questions Unsigned 16-bit integer Number of queries in packet
nbns.flags Flags Unsigned 16-bit integer
nbns.flags.authoritative Authoritative Boolean Is the server is an authority for the domain?
nbns.flags.broadcast Broadcast Boolean Is this a broadcast packet?
nbns.flags.opcode Opcode Unsigned 16-bit integer Operation code
nbns.flags.rcode Reply code Unsigned 16-bit integer Reply code
nbns.flags.recavail Recursion available Boolean Can the server do recursive queries?
nbns.flags.recdesired Recursion desired Boolean Do query recursively?
nbns.flags.response Response Boolean Is the message a response?
nbns.flags.truncated Truncated Boolean Is the message truncated?
nbns.id Transaction ID Unsigned 16-bit integer Identification of transaction
nbss.flags Flags Unsigned 8-bit integer NBSS message flags
nbss.type Message Type Unsigned 8-bit integer NBSS message type
ns_cert_exts.BaseUrl BaseUrl String BaseUrl
ns_cert_exts.CaPolicyUrl CaPolicyUrl String CaPolicyUrl
ns_cert_exts.CaRevocationUrl CaRevocationUrl String CaRevocationUrl
ns_cert_exts.CertRenewalUrl CertRenewalUrl String CertRenewalUrl
ns_cert_exts.CertType CertType Byte array CertType
ns_cert_exts.Comment Comment String Comment
ns_cert_exts.RevocationUrl RevocationUrl String RevocationUrl
ns_cert_exts.SslServerName SslServerName String SslServerName
ns_cert_exts.ca ca Boolean
ns_cert_exts.client client Boolean
ns_cert_exts.server server Boolean
ncp.64_bit_flag 64 Bit Support Unsigned 8-bit integer
ncp.Service_type Service Type Unsigned 16-bit integer
ncp.abort_q_flag Abort Queue Flag Unsigned 8-bit integer
ncp.abs_min_time_since_file_delete Absolute Minimum Time Since File Delete Unsigned 32-bit integer
ncp.acc_mode_comp Compatibility Mode Boolean
ncp.acc_mode_deny_read Deny Read Access Boolean
ncp.acc_mode_deny_write Deny Write Access Boolean
ncp.acc_mode_read Read Access Boolean
ncp.acc_mode_write Write Access Boolean
ncp.acc_priv_create Create Privileges (files only) Boolean
ncp.acc_priv_delete Delete Privileges (files only) Boolean
ncp.acc_priv_modify Modify File Status Flags Privileges (files and directories) Boolean
ncp.acc_priv_open Open Privileges (files only) Boolean
ncp.acc_priv_parent Parental Privileges (directories only for creating, deleting, and renaming) Boolean
ncp.acc_priv_read Read Privileges (files only) Boolean
ncp.acc_priv_search Search Privileges (directories only) Boolean
ncp.acc_priv_write Write Privileges (files only) Boolean
ncp.acc_rights1_create Create Rights Boolean
ncp.acc_rights1_delete Delete Rights Boolean
ncp.acc_rights1_modify Modify Rights Boolean
ncp.acc_rights1_open Open Rights Boolean
ncp.acc_rights1_parent Parental Rights Boolean
ncp.acc_rights1_read Read Rights Boolean
ncp.acc_rights1_search Search Rights Boolean
ncp.acc_rights1_supervisor Supervisor Access Rights Boolean
ncp.acc_rights1_write Write Rights Boolean
ncp.acc_rights_create Create Rights Boolean
ncp.acc_rights_delete Delete Rights Boolean
ncp.acc_rights_modify Modify Rights Boolean
ncp.acc_rights_open Open Rights Boolean
ncp.acc_rights_parent Parental Rights Boolean
ncp.acc_rights_read Read Rights Boolean
ncp.acc_rights_search Search Rights Boolean
ncp.acc_rights_write Write Rights Boolean
ncp.accel_cache_node_write Accelerate Cache Node Write Count Unsigned 32-bit integer
ncp.accepted_max_size Accepted Max Size Unsigned 16-bit integer
ncp.access_control Access Control Unsigned 8-bit integer
ncp.access_date Access Date Unsigned 16-bit integer
ncp.access_mode Access Mode Unsigned 8-bit integer
ncp.access_privileges Access Privileges Unsigned 8-bit integer
ncp.access_rights_mask Access Rights Unsigned 8-bit integer
ncp.access_rights_mask_word Access Rights Unsigned 16-bit integer
ncp.account_balance Account Balance Unsigned 32-bit integer
ncp.acct_version Acct Version Unsigned 8-bit integer
ncp.ack_seqno ACK Sequence Number Unsigned 16-bit integer Next expected burst sequence number
ncp.act_flag_create Create Boolean
ncp.act_flag_open Open Boolean
ncp.act_flag_replace Replace Boolean
ncp.action_flag Action Flag Unsigned 8-bit integer
ncp.active_conn_bit_list Active Connection List String
ncp.active_indexed_files Active Indexed Files Unsigned 16-bit integer
ncp.actual_max_bindery_objects Actual Max Bindery Objects Unsigned 16-bit integer
ncp.actual_max_indexed_files Actual Max Indexed Files Unsigned 16-bit integer
ncp.actual_max_open_files Actual Max Open Files Unsigned 16-bit integer
ncp.actual_max_sim_trans Actual Max Simultaneous Transactions Unsigned 16-bit integer
ncp.actual_max_used_directory_entries Actual Max Used Directory Entries Unsigned 16-bit integer
ncp.actual_max_used_routing_buffers Actual Max Used Routing Buffers Unsigned 16-bit integer
ncp.actual_response_count Actual Response Count Unsigned 16-bit integer
ncp.add_nm_spc_and_vol Add Name Space and Volume String
ncp.address Address
ncp.aes_event_count AES Event Count Unsigned 32-bit integer
ncp.afp_entry_id AFP Entry ID Unsigned 32-bit integer
ncp.alloc_avail_byte Bytes Available for Allocation Unsigned 32-bit integer
ncp.alloc_blck Allocate Block Count Unsigned 32-bit integer
ncp.alloc_blck_already_wait Allocate Block Already Waiting Unsigned 32-bit integer
ncp.alloc_blck_frm_avail Allocate Block From Available Count Unsigned 32-bit integer
ncp.alloc_blck_frm_lru Allocate Block From LRU Count Unsigned 32-bit integer
ncp.alloc_blck_i_had_to_wait Allocate Block I Had To Wait Count Unsigned 32-bit integer
ncp.alloc_blck_i_had_to_wait_for Allocate Block I Had To Wait For Someone Count Unsigned 32-bit integer
ncp.alloc_free_count Reclaimable Free Bytes Unsigned 32-bit integer
ncp.alloc_waiting Allocate Waiting Count Unsigned 32-bit integer
ncp.allocate_mode Allocate Mode Unsigned 16-bit integer
ncp.allocation_block_size Allocation Block Size Unsigned 32-bit integer
ncp.already_doing_realloc Already Doing Re-Allocate Count Unsigned 32-bit integer
ncp.application_number Application Number Unsigned 16-bit integer
ncp.archived_date Archived Date Unsigned 16-bit integer
ncp.archived_time Archived Time Unsigned 16-bit integer
ncp.archiver_id Archiver ID Unsigned 32-bit integer
ncp.associated_name_space Associated Name Space Unsigned 8-bit integer
ncp.async_internl_dsk_get Async Internal Disk Get Count Unsigned 32-bit integer
ncp.async_internl_dsk_get_need_to_alloc Async Internal Disk Get Need To Alloc Unsigned 32-bit integer
ncp.async_internl_dsk_get_someone_beat Async Internal Disk Get Someone Beat Me Unsigned 32-bit integer
ncp.async_read_error Async Read Error Count Unsigned 32-bit integer
ncp.att_def16_archive Archive Boolean
ncp.att_def16_execute Execute Boolean
ncp.att_def16_hidden Hidden Boolean
ncp.att_def16_read_audit Read Audit Boolean
ncp.att_def16_ro Read Only Boolean
ncp.att_def16_shareable Shareable Boolean
ncp.att_def16_sub_only Subdirectory Boolean
ncp.att_def16_system System Boolean
ncp.att_def16_transaction Transactional Boolean
ncp.att_def16_write_audit Write Audit Boolean
ncp.att_def32_archive Archive Boolean
ncp.att_def32_execute Execute Boolean
ncp.att_def32_hidden Hidden Boolean
ncp.att_def32_read_audit Read Audit Boolean
ncp.att_def32_ro Read Only Boolean
ncp.att_def32_shareable Shareable Boolean
ncp.att_def32_sub_only Subdirectory Boolean
ncp.att_def32_system System Boolean
ncp.att_def32_transaction Transactional Boolean
ncp.att_def32_write_audit Write Audit Boolean
ncp.att_def_archive Archive Boolean
ncp.att_def_comp Compressed Boolean
ncp.att_def_cpyinhibit Copy Inhibit Boolean
ncp.att_def_delinhibit Delete Inhibit Boolean
ncp.att_def_execute Execute Boolean
ncp.att_def_hidden Hidden Boolean
ncp.att_def_im_comp Immediate Compress Boolean
ncp.att_def_purge Purge Boolean
ncp.att_def_reninhibit Rename Inhibit Boolean
ncp.att_def_ro Read Only Boolean
ncp.att_def_shareable Shareable Boolean
ncp.att_def_sub_only Subdirectory Boolean
ncp.att_def_system System Boolean
ncp.attach_during_processing Attach During Processing Unsigned 16-bit integer
ncp.attach_while_processing_attach Attach While Processing Attach Unsigned 16-bit integer
ncp.attached_indexed_files Attached Indexed Files Unsigned 8-bit integer
ncp.attr_def Attributes Unsigned 8-bit integer
ncp.attr_def_16 Attributes Unsigned 16-bit integer
ncp.attr_def_32 Attributes Unsigned 32-bit integer
ncp.attribute_valid_flag Attribute Valid Flag Unsigned 32-bit integer
ncp.attributes Attributes Unsigned 32-bit integer
ncp.audit_enable_flag Auditing Enabled Flag Unsigned 16-bit integer
ncp.audit_file_max_size Audit File Maximum Size Unsigned 32-bit integer
ncp.audit_file_size Audit File Size Unsigned 32-bit integer
ncp.audit_file_size_threshold Audit File Size Threshold Unsigned 32-bit integer
ncp.audit_file_ver_date Audit File Version Date Unsigned 16-bit integer
ncp.audit_flag Audit Flag Unsigned 8-bit integer
ncp.audit_handle Audit File Handle Unsigned 32-bit integer
ncp.audit_id Audit ID Unsigned 32-bit integer
ncp.audit_id_type Audit ID Type Unsigned 16-bit integer
ncp.audit_record_count Audit Record Count Unsigned 32-bit integer
ncp.audit_ver_date Auditing Version Date Unsigned 16-bit integer
ncp.auditing_flags Auditing Flags Unsigned 32-bit integer
ncp.avail_space Available Space Unsigned 32-bit integer
ncp.available_blocks Available Blocks Unsigned 32-bit integer
ncp.available_clusters Available Clusters Unsigned 16-bit integer
ncp.available_dir_entries Available Directory Entries Unsigned 32-bit integer
ncp.available_directory_slots Available Directory Slots Unsigned 16-bit integer
ncp.available_indexed_files Available Indexed Files Unsigned 16-bit integer
ncp.background_aged_writes Background Aged Writes Unsigned 32-bit integer
ncp.background_dirty_writes Background Dirty Writes Unsigned 32-bit integer
ncp.bad_logical_connection_count Bad Logical Connection Count Unsigned 16-bit integer
ncp.banner_name Banner Name String
ncp.base_directory_id Base Directory ID Unsigned 32-bit integer
ncp.being_aborted Being Aborted Count Unsigned 32-bit integer
ncp.being_processed Being Processed Count Unsigned 32-bit integer
ncp.big_forged_packet Big Forged Packet Count Unsigned 32-bit integer
ncp.big_invalid_packet Big Invalid Packet Count Unsigned 32-bit integer
ncp.big_invalid_slot Big Invalid Slot Count Unsigned 32-bit integer
ncp.big_read_being_torn_down Big Read Being Torn Down Count Unsigned 32-bit integer
ncp.big_read_do_it_over Big Read Do It Over Count Unsigned 32-bit integer
ncp.big_read_invalid_mess Big Read Invalid Message Number Count Unsigned 32-bit integer
ncp.big_read_no_data_avail Big Read No Data Available Count Unsigned 32-bit integer
ncp.big_read_phy_read_err Big Read Physical Read Error Count Unsigned 32-bit integer
ncp.big_read_trying_to_read Big Read Trying To Read Too Much Count Unsigned 32-bit integer
ncp.big_repeat_the_file_read Big Repeat the File Read Count Unsigned 32-bit integer
ncp.big_return_abort_mess Big Return Abort Message Count Unsigned 32-bit integer
ncp.big_send_extra_cc_count Big Send Extra CC Count Unsigned 32-bit integer
ncp.big_still_transmitting Big Still Transmitting Count Unsigned 32-bit integer
ncp.big_write_being_abort Big Write Being Aborted Count Unsigned 32-bit integer
ncp.big_write_being_torn_down Big Write Being Torn Down Count Unsigned 32-bit integer
ncp.big_write_inv_message_num Big Write Invalid Message Number Count Unsigned 32-bit integer
ncp.bindery_context Bindery Context String
ncp.bit10acflags Write Managed Boolean
ncp.bit10cflags Not Defined Boolean
ncp.bit10eflags Temporary Reference Boolean
ncp.bit10infoflagsh Not Defined Boolean
ncp.bit10infoflagsl Revision Count Boolean
ncp.bit10l1flagsh Not Defined Boolean
ncp.bit10l1flagsl Not Defined Boolean
ncp.bit10lflags Not Defined Boolean
ncp.bit10nflags Not Defined Boolean
ncp.bit10outflags Not Defined Boolean
ncp.bit10pingflags1 Not Defined Boolean
ncp.bit10pingflags2 Not Defined Boolean
ncp.bit10pingpflags1 Not Defined Boolean
ncp.bit10pingvflags1 Not Defined Boolean
ncp.bit10rflags Not Defined Boolean
ncp.bit10siflags Not Defined Boolean
ncp.bit10vflags Not Defined Boolean
ncp.bit11acflags Per Replica Boolean
ncp.bit11cflags Not Defined Boolean
ncp.bit11eflags Audited Boolean
ncp.bit11infoflagsh Not Defined Boolean
ncp.bit11infoflagsl Replica Type Boolean
ncp.bit11l1flagsh Not Defined Boolean
ncp.bit11l1flagsl Not Defined Boolean
ncp.bit11lflags Not Defined Boolean
ncp.bit11nflags Not Defined Boolean
ncp.bit11outflags Not Defined Boolean
ncp.bit11pingflags1 Not Defined Boolean
ncp.bit11pingflags2 Not Defined Boolean
ncp.bit11pingpflags1 Not Defined Boolean
ncp.bit11pingvflags1 Not Defined Boolean
ncp.bit11rflags Not Defined Boolean
ncp.bit11siflags Not Defined Boolean
ncp.bit11vflags Not Defined Boolean
ncp.bit12acflags Never Schedule Synchronization Boolean
ncp.bit12cflags Not Defined Boolean
ncp.bit12eflags Entry Not Present Boolean
ncp.bit12infoflagshs Not Defined Boolean
ncp.bit12infoflagsl Base Class Boolean
ncp.bit12l1flagsh Not Defined Boolean
ncp.bit12l1flagsl Not Defined Boolean
ncp.bit12lflags Not Defined Boolean
ncp.bit12nflags Not Defined Boolean
ncp.bit12outflags Not Defined Boolean
ncp.bit12pingflags1 Not Defined Boolean
ncp.bit12pingflags2 Not Defined Boolean
ncp.bit12pingpflags1 Not Defined Boolean
ncp.bit12pingvflags1 Not Defined Boolean
ncp.bit12rflags Not Defined Boolean
ncp.bit12siflags Not Defined Boolean
ncp.bit12vflags Not Defined Boolean
ncp.bit13acflags Operational Boolean
ncp.bit13cflags Not Defined Boolean
ncp.bit13eflags Entry Verify CTS Boolean
ncp.bit13infoflagsh Not Defined Boolean
ncp.bit13infoflagsl Relative Distinguished Name Boolean
ncp.bit13l1flagsh Not Defined Boolean
ncp.bit13l1flagsl Not Defined Boolean
ncp.bit13lflags Not Defined Boolean
ncp.bit13nflags Not Defined Boolean
ncp.bit13outflags Not Defined Boolean
ncp.bit13pingflags1 Not Defined Boolean
ncp.bit13pingflags2 Not Defined Boolean
ncp.bit13pingpflags1 Not Defined Boolean
ncp.bit13pingvflags1 Not Defined Boolean
ncp.bit13rflags Not Defined Boolean
ncp.bit13siflags Not Defined Boolean
ncp.bit13vflags Not Defined Boolean
ncp.bit14acflags Not Defined Boolean
ncp.bit14cflags Not Defined Boolean
ncp.bit14eflags Entry Damaged Boolean
ncp.bit14infoflagsh Not Defined Boolean
ncp.bit14infoflagsl Distinguished Name Boolean
ncp.bit14l1flagsh Not Defined Boolean
ncp.bit14l1flagsl Not Defined Boolean
ncp.bit14lflags Not Defined Boolean
ncp.bit14nflags Prefer Referrals Boolean
ncp.bit14outflags Not Defined Boolean
ncp.bit14pingflags1 Not Defined Boolean
ncp.bit14pingflags2 Not Defined Boolean
ncp.bit14pingpflags1 Not Defined Boolean
ncp.bit14pingvflags1 Not Defined Boolean
ncp.bit14rflags Not Defined Boolean
ncp.bit14siflags Not Defined Boolean
ncp.bit14vflags Not Defined Boolean
ncp.bit15acflags Not Defined Boolean
ncp.bit15cflags Not Defined Boolean
ncp.bit15infoflagsh Not Defined Boolean
ncp.bit15infoflagsl Root Distinguished Name Boolean
ncp.bit15l1flagsh Not Defined Boolean
ncp.bit15l1flagsl Not Defined Boolean
ncp.bit15lflags Not Defined Boolean
ncp.bit15nflags Prefer Only Referrals Boolean
ncp.bit15outflags Not Defined Boolean
ncp.bit15pingflags1 Not Defined Boolean
ncp.bit15pingflags2 Not Defined Boolean
ncp.bit15pingpflags1 Not Defined Boolean
ncp.bit15pingvflags1 Not Defined Boolean
ncp.bit15rflags Not Defined Boolean
ncp.bit15siflags Not Defined Boolean
ncp.bit15vflags Not Defined Boolean
ncp.bit16acflags Not Defined Boolean
ncp.bit16cflags Not Defined Boolean
ncp.bit16infoflagsh Not Defined Boolean
ncp.bit16infoflagsl Parent Distinguished Name Boolean
ncp.bit16l1flagsh Not Defined Boolean
ncp.bit16l1flagsl Not Defined Boolean
ncp.bit16lflags Not Defined Boolean
ncp.bit16nflags Not Defined Boolean
ncp.bit16outflags Not Defined Boolean
ncp.bit16pingflags1 Not Defined Boolean
ncp.bit16pingflags2 Not Defined Boolean
ncp.bit16pingpflags1 Not Defined Boolean
ncp.bit16pingvflags1 Not Defined Boolean
ncp.bit16rflags Not Defined Boolean
ncp.bit16siflags Not Defined Boolean
ncp.bit16vflags Not Defined Boolean
ncp.bit1acflags Single Valued Boolean
ncp.bit1cflags Ambiguous Containment Boolean
ncp.bit1eflags Alias Entry Boolean
ncp.bit1infoflagsh Purge Time Boolean
ncp.bit1infoflagsl Output Flags Boolean
ncp.bit1l1flagsh Not Defined Boolean
ncp.bit1l1flagsl Output Flags Boolean
ncp.bit1lflags List Typeless Boolean
ncp.bit1nflags Entry ID Boolean
ncp.bit1outflags Output Flags Boolean
ncp.bit1pingflags1 Supported Fields Boolean
ncp.bit1pingflags2 Sap Name Boolean
ncp.bit1pingpflags1 Root Most Master Replica Boolean
ncp.bit1pingvflags1 Checksum Boolean
ncp.bit1rflags Typeless Boolean
ncp.bit1siflags Names Boolean
ncp.bit1vflags Naming Boolean
ncp.bit2acflags Sized Boolean
ncp.bit2cflags Ambiguous Naming Boolean
ncp.bit2eflags Partition Root Boolean
ncp.bit2infoflagsh Dereference Base Class Boolean
ncp.bit2infoflagsl Entry ID Boolean
ncp.bit2l1flagsh Not Defined Boolean
ncp.bit2l1flagsl Entry ID Boolean
ncp.bit2lflags List Containers Boolean
ncp.bit2nflags Readable Boolean
ncp.bit2outflags Entry ID Boolean
ncp.bit2pingflags1 Depth Boolean
ncp.bit2pingflags2 Tree Name Boolean
ncp.bit2pingpflags1 Time Synchronized Boolean
ncp.bit2pingvflags1 CRC32 Boolean
ncp.bit2rflags Slashed Boolean
ncp.bit2siflags Names and Values Boolean
ncp.bit2vflags Base Class Boolean
ncp.bit3acflags Non-Removable Boolean
ncp.bit3cflags Class Definition Cannot be Removed Boolean
ncp.bit3eflags Container Entry Boolean
ncp.bit3infoflagsh Not Defined Boolean
ncp.bit3infoflagsl Entry Flags Boolean
ncp.bit3l1flagsh Not Defined Boolean
ncp.bit3l1flagsl Replica State Boolean
ncp.bit3lflags List Slashed Boolean
ncp.bit3nflags Writeable Boolean
ncp.bit3outflags Replica State Boolean
ncp.bit3pingflags1 Revision Boolean
ncp.bit3pingflags2 OS Name Boolean
ncp.bit3pingpflags1 Not Defined Boolean
ncp.bit3pingvflags1 Not Defined Boolean
ncp.bit3rflags Dotted Boolean
ncp.bit3siflags Effective Privileges Boolean
ncp.bit3vflags Present Boolean
ncp.bit4acflags Read Only Boolean
ncp.bit4cflags Effective Class Boolean
ncp.bit4eflags Container Alias Boolean
ncp.bit4infoflagsh Not Defined Boolean
ncp.bit4infoflagsl Subordinate Count Boolean
ncp.bit4l1flagsh Not Defined Boolean
ncp.bit4l1flagsl Modification Timestamp Boolean
ncp.bit4lflags List Dotted Boolean
ncp.bit4nflags Master Boolean
ncp.bit4outflags Modification Timestamp Boolean
ncp.bit4pingflags1 Flags Boolean
ncp.bit4pingflags2 Hardware Name Boolean
ncp.bit4pingpflags1 Not Defined Boolean
ncp.bit4pingvflags1 Not Defined Boolean
ncp.bit4rflags Tuned Boolean
ncp.bit4siflags Value Info Boolean
ncp.bit4vflags Value Damaged Boolean
ncp.bit5acflags Hidden Boolean
ncp.bit5cflags Container Class Boolean
ncp.bit5eflags Matches List Filter Boolean
ncp.bit5infoflagsh Not Defined Boolean
ncp.bit5infoflagsl Modification Time Boolean
ncp.bit5l1flagsh Not Defined Boolean
ncp.bit5l1flagsl Purge Time Boolean
ncp.bit5lflags Dereference Alias Boolean
ncp.bit5nflags Create ID Boolean
ncp.bit5outflags Purge Time Boolean
ncp.bit5pingflags1 Verification Flags Boolean
ncp.bit5pingflags2 Vendor Name Boolean
ncp.bit5pingpflags1 Not Defined Boolean
ncp.bit5pingvflags1 Not Defined Boolean
ncp.bit5rflags Not Defined Boolean
ncp.bit5siflags Abbreviated Value Boolean
ncp.bit5vflags Not Defined Boolean
ncp.bit6acflags String Boolean
ncp.bit6cflags Not Defined Boolean
ncp.bit6eflags Reference Entry Boolean
ncp.bit6infoflagsh Not Defined Boolean
ncp.bit6infoflagsl Modification Timestamp Boolean
ncp.bit6l1flagsh Not Defined Boolean
ncp.bit6l1flagsl Local Partition ID Boolean
ncp.bit6lflags List All Containers Boolean
ncp.bit6nflags Walk Tree Boolean
ncp.bit6outflags Local Partition ID Boolean
ncp.bit6pingflags1 Letter Version Boolean
ncp.bit6pingflags2 Not Defined Boolean
ncp.bit6pingpflags1 Not Defined Boolean
ncp.bit6pingvflags1 Not Defined Boolean
ncp.bit6rflags Not Defined Boolean
ncp.bit6siflags Not Defined Boolean
ncp.bit6vflags Not Defined Boolean
ncp.bit7acflags Synchronize Immediate Boolean
ncp.bit7cflags Not Defined Boolean
ncp.bit7eflags 40x Reference Entry Boolean
ncp.bit7infoflagsh Not Defined Boolean
ncp.bit7infoflagsl Creation Timestamp Boolean
ncp.bit7l1flagsh Not Defined Boolean
ncp.bit7l1flagsl Distinguished Name Boolean
ncp.bit7lflags List Obsolete Boolean
ncp.bit7nflags Dereference Alias Boolean
ncp.bit7outflags Distinguished Name Boolean
ncp.bit7pingflags1 OS Version Boolean
ncp.bit7pingflags2 Not Defined Boolean
ncp.bit7pingpflags1 Not Defined Boolean
ncp.bit7pingvflags1 Not Defined Boolean
ncp.bit7rflags Not Defined Boolean
ncp.bit7siflags Not Defined Boolean
ncp.bit7vflags Not Defined Boolean
ncp.bit8acflags Public Read Boolean
ncp.bit8cflags Not Defined Boolean
ncp.bit8eflags Back Linked Boolean
ncp.bit8infoflagsh Not Defined Boolean
ncp.bit8infoflagsl Partition Root ID Boolean
ncp.bit8l1flagsh Not Defined Boolean
ncp.bit8l1flagsl Replica Type Boolean
ncp.bit8lflags List Tuned Output Boolean
ncp.bit8nflags Not Defined Boolean
ncp.bit8outflags Replica Type Boolean
ncp.bit8pingflags1 License Flags Boolean
ncp.bit8pingflags2 Not Defined Boolean
ncp.bit8pingpflags1 Not Defined Boolean
ncp.bit8pingvflags1 Not Defined Boolean
ncp.bit8rflags Not Defined Boolean
ncp.bit8siflags Not Defined Boolean
ncp.bit8vflags Not Defined Boolean
ncp.bit9acflags Server Read Boolean
ncp.bit9cflags Not Defined Boolean
ncp.bit9eflags New Entry Boolean
ncp.bit9infoflagsh Not Defined Boolean
ncp.bit9infoflagsl Parent ID Boolean
ncp.bit9l1flagsh Not Defined Boolean
ncp.bit9l1flagsl Partition Busy Boolean
ncp.bit9lflags List External Reference Boolean
ncp.bit9nflags Not Defined Boolean
ncp.bit9outflags Partition Busy Boolean
ncp.bit9pingflags1 DS Time Boolean
ncp.bit9pingflags2 Not Defined Boolean
ncp.bit9pingpflags1 Not Defined Boolean
ncp.bit9pingvflags1 Not Defined Boolean
ncp.bit9rflags Not Defined Boolean
ncp.bit9siflags Expanded Class Boolean
ncp.bit9vflags Not Defined Boolean
ncp.bit_map Bit Map Byte array
ncp.block_number Block Number Unsigned 32-bit integer
ncp.block_size Block Size Unsigned 16-bit integer
ncp.block_size_in_sectors Block Size in Sectors Unsigned 32-bit integer
ncp.board_installed Board Installed Unsigned 8-bit integer
ncp.board_number Board Number Unsigned 32-bit integer
ncp.board_numbers Board Numbers Unsigned 32-bit integer
ncp.buffer_size Buffer Size Unsigned 16-bit integer
ncp.bumped_out_of_order Bumped Out Of Order Write Count Unsigned 32-bit integer
ncp.burst_command Burst Command Unsigned 32-bit integer Packet Burst Command
ncp.burst_len Burst Length Unsigned 32-bit integer Total length of data in this burst
ncp.burst_offset Burst Offset Unsigned 32-bit integer Offset of data in the burst
ncp.burst_reserved Reserved Byte array
ncp.burst_seqno Burst Sequence Number Unsigned 16-bit integer Sequence number of this packet in the burst
ncp.bus_string Bus String String
ncp.bus_type Bus Type Unsigned 8-bit integer
ncp.bytes_actually_transferred Bytes Actually Transferred Unsigned 32-bit integer
ncp.bytes_read Bytes Read String
ncp.bytes_to_copy Bytes to Copy Unsigned 32-bit integer
ncp.bytes_written Bytes Written String
ncp.cache_allocations Cache Allocations Unsigned 32-bit integer
ncp.cache_block_scrapped Cache Block Scrapped Unsigned 16-bit integer
ncp.cache_buffer_count Cache Buffer Count Unsigned 16-bit integer
ncp.cache_buffer_size Cache Buffer Size Unsigned 16-bit integer
ncp.cache_byte_to_block Cache Byte To Block Shift Factor Unsigned 32-bit integer
ncp.cache_dirty_block_thresh Cache Dirty Block Threshold Unsigned 32-bit integer
ncp.cache_dirty_wait_time Cache Dirty Wait Time Unsigned 32-bit integer
ncp.cache_full_write_requests Cache Full Write Requests Unsigned 32-bit integer
ncp.cache_get_requests Cache Get Requests Unsigned 32-bit integer
ncp.cache_hit_on_unavailable_block Cache Hit On Unavailable Block Unsigned 16-bit integer
ncp.cache_hits Cache Hits Unsigned 32-bit integer
ncp.cache_max_concur_writes Cache Maximum Concurrent Writes Unsigned 32-bit integer
ncp.cache_misses Cache Misses Unsigned 32-bit integer
ncp.cache_partial_write_requests Cache Partial Write Requests Unsigned 32-bit integer
ncp.cache_read_requests Cache Read Requests Unsigned 32-bit integer
ncp.cache_used_while_check Cache Used While Checking Unsigned 32-bit integer
ncp.cache_write_requests Cache Write Requests Unsigned 32-bit integer
ncp.category_name Category Name String
ncp.cc_file_handle File Handle Unsigned 32-bit integer
ncp.cc_function OP-Lock Flag Unsigned 8-bit integer
ncp.cfg_max_simultaneous_transactions Configured Max Simultaneous Transactions Unsigned 16-bit integer
ncp.change_bits Change Bits Unsigned 16-bit integer
ncp.change_bits_acc_date Access Date Boolean
ncp.change_bits_adate Archive Date Boolean
ncp.change_bits_aid Archiver ID Boolean
ncp.change_bits_atime Archive Time Boolean
ncp.change_bits_cdate Creation Date Boolean
ncp.change_bits_ctime Creation Time Boolean
ncp.change_bits_fatt File Attributes Boolean
ncp.change_bits_max_acc_mask Maximum Access Mask Boolean
ncp.change_bits_max_space Maximum Space Boolean
ncp.change_bits_modify Modify Name Boolean
ncp.change_bits_owner Owner ID Boolean
ncp.change_bits_udate Update Date Boolean
ncp.change_bits_uid Update ID Boolean
ncp.change_bits_utime Update Time Boolean
ncp.channel_state Channel State Unsigned 8-bit integer
ncp.channel_synchronization_state Channel Synchronization State Unsigned 8-bit integer
ncp.charge_amount Charge Amount Unsigned 32-bit integer
ncp.charge_information Charge Information Unsigned 32-bit integer
ncp.checksum_error_count Checksum Error Count Unsigned 32-bit integer
ncp.checksuming Checksumming Boolean
ncp.client_comp_flag Completion Flag Unsigned 16-bit integer
ncp.client_id_number Client ID Number Unsigned 32-bit integer
ncp.client_list Client List Unsigned 32-bit integer
ncp.client_list_cnt Client List Count Unsigned 16-bit integer
ncp.client_list_len Client List Length Unsigned 8-bit integer
ncp.client_name Client Name String
ncp.client_record_area Client Record Area String
ncp.client_station Client Station Unsigned 8-bit integer
ncp.client_station_long Client Station Unsigned 32-bit integer
ncp.client_task_number Client Task Number Unsigned 8-bit integer
ncp.client_task_number_long Client Task Number Unsigned 32-bit integer
ncp.cluster_count Cluster Count Unsigned 16-bit integer
ncp.clusters_used_by_directories Clusters Used by Directories Unsigned 32-bit integer
ncp.clusters_used_by_extended_dirs Clusters Used by Extended Directories Unsigned 32-bit integer
ncp.clusters_used_by_fat Clusters Used by FAT Unsigned 32-bit integer
ncp.cmd_flags_advanced Advanced Boolean
ncp.cmd_flags_hidden Hidden Boolean
ncp.cmd_flags_later Restart Server Required to Take Effect Boolean
ncp.cmd_flags_secure Console Secured Boolean
ncp.cmd_flags_startup_only Startup.ncf Only Boolean
ncp.cmpbyteincount Compress Byte In Count Unsigned 32-bit integer
ncp.cmpbyteoutcnt Compress Byte Out Count Unsigned 32-bit integer
ncp.cmphibyteincnt Compress High Byte In Count Unsigned 32-bit integer
ncp.cmphibyteoutcnt Compress High Byte Out Count Unsigned 32-bit integer
ncp.cmphitickcnt Compress High Tick Count Unsigned 32-bit integer
ncp.cmphitickhigh Compress High Tick Unsigned 32-bit integer
ncp.co_proc_string CoProcessor String String
ncp.co_processor_flag CoProcessor Present Flag Unsigned 32-bit integer
ncp.com_cnts Communication Counters Unsigned 16-bit integer
ncp.comment Comment String
ncp.comment_type Comment Type Unsigned 16-bit integer
ncp.complete_signatures Complete Signatures Boolean
ncp.completion_code Completion Code Unsigned 8-bit integer
ncp.compress_volume Volume Compression Unsigned 32-bit integer
ncp.compressed_data_streams_count Compressed Data Streams Count Unsigned 32-bit integer
ncp.compressed_limbo_data_streams_count Compressed Limbo Data Streams Count Unsigned 32-bit integer
ncp.compressed_sectors Compressed Sectors Unsigned 32-bit integer
ncp.compression_ios_limit Compression IOs Limit Unsigned 32-bit integer
ncp.compression_lower_limit Compression Lower Limit Unsigned 32-bit integer
ncp.compression_stage Compression Stage Unsigned 32-bit integer
ncp.config_major_vn Configuration Major Version Number Unsigned 8-bit integer
ncp.config_minor_vn Configuration Minor Version Number Unsigned 8-bit integer
ncp.configuration_description Configuration Description String
ncp.configuration_text Configuration Text String
ncp.configured_max_bindery_objects Configured Max Bindery Objects Unsigned 16-bit integer
ncp.configured_max_open_files Configured Max Open Files Unsigned 16-bit integer
ncp.configured_max_routing_buffers Configured Max Routing Buffers Unsigned 16-bit integer
ncp.conn_being_aborted Connection Being Aborted Count Unsigned 32-bit integer
ncp.conn_ctrl_bits Connection Control Unsigned 8-bit integer
ncp.conn_list Connection List Unsigned 32-bit integer
ncp.conn_list_count Connection List Count Unsigned 32-bit integer
ncp.conn_list_len Connection List Length Unsigned 8-bit integer
ncp.conn_number_byte Connection Number Unsigned 8-bit integer
ncp.conn_number_word Connection Number Unsigned 16-bit integer
ncp.connected_lan LAN Adapter Unsigned 32-bit integer
ncp.connection Connection Number Unsigned 16-bit integer
ncp.connection_list Connection List Unsigned 32-bit integer
ncp.connection_number Connection Number Unsigned 32-bit integer
ncp.connection_number_list Connection Number List String
ncp.connection_service_type Connection Service Type Unsigned 8-bit integer
ncp.connection_status Connection Status Unsigned 8-bit integer
ncp.connection_type Connection Type Unsigned 8-bit integer
ncp.connections_in_use Connections In Use Unsigned 16-bit integer
ncp.connections_max_used Connections Max Used Unsigned 16-bit integer
ncp.connections_supported_max Connections Supported Max Unsigned 16-bit integer
ncp.control_being_torn_down Control Being Torn Down Count Unsigned 32-bit integer
ncp.control_code Control Code Unsigned 8-bit integer
ncp.control_flags Control Flags Unsigned 8-bit integer
ncp.control_invalid_message_number Control Invalid Message Number Count Unsigned 32-bit integer
ncp.controller_drive_number Controller Drive Number Unsigned 8-bit integer
ncp.controller_number Controller Number Unsigned 8-bit integer
ncp.controller_type Controller Type Unsigned 8-bit integer
ncp.cookie_1 Cookie 1 Unsigned 32-bit integer
ncp.cookie_2 Cookie 2 Unsigned 32-bit integer
ncp.copies Copies Unsigned 8-bit integer
ncp.copyright Copyright String
ncp.counter_mask Counter Mask Unsigned 8-bit integer
ncp.cpu_number CPU Number Unsigned 32-bit integer
ncp.cpu_string CPU String String
ncp.cpu_type CPU Type Unsigned 8-bit integer
ncp.creation_date Creation Date Unsigned 16-bit integer
ncp.creation_time Creation Time Unsigned 16-bit integer
ncp.creator_id Creator ID Unsigned 32-bit integer
ncp.creator_name_space_number Creator Name Space Number Unsigned 8-bit integer
ncp.credit_limit Credit Limit Unsigned 32-bit integer
ncp.ctl_bad_ack_frag_list Control Bad ACK Fragment List Count Unsigned 32-bit integer
ncp.ctl_no_data_read Control No Data Read Count Unsigned 32-bit integer
ncp.ctrl_flags Control Flags Unsigned 16-bit integer
ncp.cur_blk_being_dcompress Current Block Being Decompressed Unsigned 32-bit integer
ncp.cur_comp_blks Current Compression Blocks Unsigned 32-bit integer
ncp.cur_initial_blks Current Initial Blocks Unsigned 32-bit integer
ncp.cur_inter_blks Current Intermediate Blocks Unsigned 32-bit integer
ncp.cur_num_of_r_tags Current Number of Resource Tags Unsigned 32-bit integer
ncp.curr_num_cache_buff Current Number Of Cache Buffers Unsigned 32-bit integer
ncp.curr_ref_id Current Reference ID Unsigned 16-bit integer
ncp.current_changed_fats Current Changed FAT Entries Unsigned 16-bit integer
ncp.current_entries Current Entries Unsigned 32-bit integer
ncp.current_form_type Current Form Type Unsigned 8-bit integer
ncp.current_lfs_counters Current LFS Counters Unsigned 32-bit integer
ncp.current_open_files Current Open Files Unsigned 16-bit integer
ncp.current_server_time Time Elapsed Since Server Was Brought Up Unsigned 32-bit integer
ncp.current_servers Current Servers Unsigned 32-bit integer
ncp.current_space Current Space Unsigned 32-bit integer
ncp.current_trans_count Current Transaction Count Unsigned 32-bit integer
ncp.current_used_bindery_objects Current Used Bindery Objects Unsigned 16-bit integer
ncp.currently_used_routing_buffers Currently Used Routing Buffers Unsigned 16-bit integer
ncp.custom_cnts Custom Counters Unsigned 32-bit integer
ncp.custom_count Custom Count Unsigned 32-bit integer
ncp.custom_counters Custom Counters Unsigned 32-bit integer
ncp.custom_string Custom String String
ncp.custom_var_value Custom Variable Value Unsigned 32-bit integer
ncp.data Data String
ncp.data_bytes Data Bytes Unsigned 16-bit integer Number of data bytes in this packet
ncp.data_fork_first_fat Data Fork First FAT Entry Unsigned 32-bit integer
ncp.data_fork_len Data Fork Len Unsigned 32-bit integer
ncp.data_fork_size Data Fork Size Unsigned 32-bit integer
ncp.data_offset Data Offset Unsigned 32-bit integer Offset of this packet
ncp.data_size Data Size Unsigned 32-bit integer
ncp.data_stream Data Stream Unsigned 8-bit integer
ncp.data_stream_name Data Stream Name String
ncp.data_stream_number Data Stream Number Unsigned 8-bit integer
ncp.data_stream_size Size Unsigned 32-bit integer
ncp.data_stream_space_alloc Space Allocated for Data Stream Unsigned 32-bit integer
ncp.data_streams_count Data Streams Count Unsigned 32-bit integer
ncp.dc_dirty_wait_time DC Dirty Wait Time Unsigned 32-bit integer
ncp.dc_double_read_flag DC Double Read Flag Unsigned 32-bit integer
ncp.dc_max_concurrent_writes DC Maximum Concurrent Writes Unsigned 32-bit integer
ncp.dc_min_non_ref_time DC Minimum Non-Referenced Time Unsigned 32-bit integer
ncp.dc_wait_time_before_new_buff DC Wait Time Before New Buffer Unsigned 32-bit integer
ncp.dead_mirror_table Dead Mirror Table Byte array
ncp.dealloc_being_proc De-Allocate Being Processed Count Unsigned 32-bit integer
ncp.dealloc_forged_packet De-Allocate Forged Packet Count Unsigned 32-bit integer
ncp.dealloc_invalid_slot De-Allocate Invalid Slot Count Unsigned 32-bit integer
ncp.dealloc_still_transmit De-Allocate Still Transmitting Count Unsigned 32-bit integer
ncp.decpbyteincount DeCompress Byte In Count Unsigned 32-bit integer
ncp.decpbyteoutcnt DeCompress Byte Out Count Unsigned 32-bit integer
ncp.decphibyteincnt DeCompress High Byte In Count Unsigned 32-bit integer
ncp.decphibyteoutcnt DeCompress High Byte Out Count Unsigned 32-bit integer
ncp.decphitickcnt DeCompress High Tick Count Unsigned 32-bit integer
ncp.decphitickhigh DeCompress High Tick Unsigned 32-bit integer
ncp.defined_data_streams Defined Data Streams Unsigned 8-bit integer
ncp.defined_name_spaces Defined Name Spaces Unsigned 8-bit integer
ncp.delay_time Delay Time Unsigned 32-bit integer Delay time between consecutive packet sends (100 us increments)
ncp.delete_existing_file_flag Delete Existing File Flag Unsigned 8-bit integer
ncp.delete_id Deleted ID Unsigned 32-bit integer
ncp.deleted_date Deleted Date Unsigned 16-bit integer
ncp.deleted_file_time Deleted File Time Unsigned 32-bit integer
ncp.deleted_time Deleted Time Unsigned 16-bit integer
ncp.deny_read_count Deny Read Count Unsigned 16-bit integer
ncp.deny_write_count Deny Write Count Unsigned 16-bit integer
ncp.description_string Description String
ncp.desired_access_rights Desired Access Rights Unsigned 16-bit integer
ncp.desired_response_count Desired Response Count Unsigned 16-bit integer
ncp.dest_component_count Destination Path Component Count Unsigned 8-bit integer
ncp.dest_dir_handle Destination Directory Handle Unsigned 8-bit integer
ncp.dest_name_space Destination Name Space Unsigned 8-bit integer
ncp.dest_path Destination Path String
ncp.detach_during_processing Detach During Processing Unsigned 16-bit integer
ncp.detach_for_bad_connection_number Detach For Bad Connection Number Unsigned 16-bit integer
ncp.dir_base Directory Base Unsigned 32-bit integer
ncp.dir_count Directory Count Unsigned 16-bit integer
ncp.dir_handle Directory Handle Unsigned 8-bit integer
ncp.dir_handle_long Directory Handle Unsigned 32-bit integer
ncp.dir_handle_name Handle Name Unsigned 8-bit integer
ncp.directory_access_rights Directory Access Rights Unsigned 8-bit integer
ncp.directory_attributes Directory Attributes Unsigned 8-bit integer
ncp.directory_entry_number Directory Entry Number Unsigned 32-bit integer
ncp.directory_entry_number_word Directory Entry Number Unsigned 16-bit integer
ncp.directory_id Directory ID Unsigned 16-bit integer
ncp.directory_name Directory Name String
ncp.directory_name_14 Directory Name String
ncp.directory_name_len Directory Name Length Unsigned 8-bit integer
ncp.directory_number Directory Number Unsigned 32-bit integer
ncp.directory_path Directory Path String
ncp.directory_services_object_id Directory Services Object ID Unsigned 32-bit integer
ncp.directory_stamp Directory Stamp (0xD1D1) Unsigned 16-bit integer
ncp.dirty_cache_buffers Dirty Cache Buffers Unsigned 16-bit integer
ncp.disable_brdcasts Disable Broadcasts Boolean
ncp.disable_personal_brdcasts Disable Personal Broadcasts Boolean
ncp.disable_wdog_messages Disable Watchdog Message Boolean
ncp.disk_channel_number Disk Channel Number Unsigned 8-bit integer
ncp.disk_channel_table Disk Channel Table Unsigned 8-bit integer
ncp.disk_space_limit Disk Space Limit Unsigned 32-bit integer
ncp.dm_flags DM Flags Unsigned 8-bit integer
ncp.dm_info_entries DM Info Entries Unsigned 32-bit integer
ncp.dm_info_level DM Info Level Unsigned 8-bit integer
ncp.dm_major_version DM Major Version Unsigned 32-bit integer
ncp.dm_minor_version DM Minor Version Unsigned 32-bit integer
ncp.dm_present_flag Data Migration Present Flag Unsigned 8-bit integer
ncp.dma_channels_used DMA Channels Used Unsigned 32-bit integer
ncp.dos_directory_base DOS Directory Base Unsigned 32-bit integer
ncp.dos_directory_entry DOS Directory Entry Unsigned 32-bit integer
ncp.dos_directory_entry_number DOS Directory Entry Number Unsigned 32-bit integer
ncp.dos_file_attributes DOS File Attributes Unsigned 8-bit integer
ncp.dos_parent_directory_entry DOS Parent Directory Entry Unsigned 32-bit integer
ncp.dos_sequence DOS Sequence Unsigned 32-bit integer
ncp.drive_cylinders Drive Cylinders Unsigned 16-bit integer
ncp.drive_definition_string Drive Definition String
ncp.drive_heads Drive Heads Unsigned 8-bit integer
ncp.drive_mapping_table Drive Mapping Table Byte array
ncp.drive_mirror_table Drive Mirror Table Byte array
ncp.drive_removable_flag Drive Removable Flag Unsigned 8-bit integer
ncp.drive_size Drive Size Unsigned 32-bit integer
ncp.driver_board_name Driver Board Name String
ncp.driver_log_name Driver Logical Name String
ncp.driver_short_name Driver Short Name String
ncp.dsired_acc_rights_compat Compatibility Boolean
ncp.dsired_acc_rights_del_file_cls Delete File Close Boolean
ncp.dsired_acc_rights_deny_r Deny Read Boolean
ncp.dsired_acc_rights_deny_w Deny Write Boolean
ncp.dsired_acc_rights_read_o Read Only Boolean
ncp.dsired_acc_rights_w_thru File Write Through Boolean
ncp.dsired_acc_rights_write_o Write Only Boolean
ncp.dst_connection Destination Connection ID Unsigned 32-bit integer The server's connection identification number
ncp.dst_ea_flags Destination EA Flags Unsigned 16-bit integer
ncp.dst_ns_indicator Destination Name Space Indicator Unsigned 16-bit integer
ncp.dst_queue_id Destination Queue ID Unsigned 32-bit integer
ncp.dup_is_being_sent Duplicate Is Being Sent Already Count Unsigned 32-bit integer
ncp.duplicate_replies_sent Duplicate Replies Sent Unsigned 16-bit integer
ncp.dyn_mem_struct_cur Current Used Dynamic Space Unsigned 32-bit integer
ncp.dyn_mem_struct_max Max Used Dynamic Space Unsigned 32-bit integer
ncp.dyn_mem_struct_total Total Dynamic Space Unsigned 32-bit integer
ncp.ea_access_flag EA Access Flag Unsigned 16-bit integer
ncp.ea_bytes_written Bytes Written Unsigned 32-bit integer
ncp.ea_count Count Unsigned 32-bit integer
ncp.ea_data_size Data Size Unsigned 32-bit integer
ncp.ea_data_size_duplicated Data Size Duplicated Unsigned 32-bit integer
ncp.ea_deep_freeze Deep Freeze Boolean
ncp.ea_delete_privileges Delete Privileges Boolean
ncp.ea_duplicate_count Duplicate Count Unsigned 32-bit integer
ncp.ea_error_codes EA Error Codes Unsigned 16-bit integer
ncp.ea_flags EA Flags Unsigned 16-bit integer
ncp.ea_handle EA Handle Unsigned 32-bit integer
ncp.ea_handle_or_netware_handle_or_volume EAHandle or NetWare Handle or Volume (see EAFlags) Unsigned 32-bit integer
ncp.ea_header_being_enlarged Header Being Enlarged Boolean
ncp.ea_in_progress In Progress Boolean
ncp.ea_key EA Key String
ncp.ea_key_size Key Size Unsigned 32-bit integer
ncp.ea_key_size_duplicated Key Size Duplicated Unsigned 32-bit integer
ncp.ea_need_bit_flag EA Need Bit Flag Boolean
ncp.ea_new_tally_used New Tally Used Boolean
ncp.ea_permanent_memory Permanent Memory Boolean
ncp.ea_read_privileges Read Privileges Boolean
ncp.ea_score_card_present Score Card Present Boolean
ncp.ea_system_ea_only System EA Only Boolean
ncp.ea_tally_need_update Tally Need Update Boolean
ncp.ea_value EA Value String
ncp.ea_value_length Value Length Unsigned 16-bit integer
ncp.ea_value_rep EA Value String
ncp.ea_write_in_progress Write In Progress Boolean
ncp.ea_write_privileges Write Privileges Boolean
ncp.ecb_cxl_fails ECB Cancel Failures Unsigned 32-bit integer
ncp.echo_socket Echo Socket Unsigned 16-bit integer
ncp.effective_rights Effective Rights Unsigned 8-bit integer
ncp.effective_rights_create Create Rights Boolean
ncp.effective_rights_delete Delete Rights Boolean
ncp.effective_rights_modify Modify Rights Boolean
ncp.effective_rights_open Open Rights Boolean
ncp.effective_rights_parental Parental Rights Boolean
ncp.effective_rights_read Read Rights Boolean
ncp.effective_rights_search Search Rights Boolean
ncp.effective_rights_write Write Rights Boolean
ncp.enable_brdcasts Enable Broadcasts Boolean
ncp.enable_personal_brdcasts Enable Personal Broadcasts Boolean
ncp.enable_wdog_messages Enable Watchdog Message Boolean
ncp.encryption Encryption Boolean
ncp.enqueued_send_cnt Enqueued Send Count Unsigned 32-bit integer
ncp.enum_info_account Accounting Information Boolean
ncp.enum_info_auth Authentication Information Boolean
ncp.enum_info_lock Lock Information Boolean
ncp.enum_info_mask Return Information Mask Unsigned 8-bit integer
ncp.enum_info_name Name Information Boolean
ncp.enum_info_print Print Information Boolean
ncp.enum_info_stats Statistical Information Boolean
ncp.enum_info_time Time Information Boolean
ncp.enum_info_transport Transport Information Boolean
ncp.err_doing_async_read Error Doing Async Read Count Unsigned 32-bit integer
ncp.error_read_last_fat Error Reading Last FAT Count Unsigned 32-bit integer
ncp.event_offset Event Offset Byte array
ncp.event_time Event Time Unsigned 32-bit integer
ncp.exc_nds_ver Exclude NDS Version Unsigned 32-bit integer
ncp.expiration_time Expiration Time Unsigned 32-bit integer
ncp.ext_info Extended Return Information Unsigned 16-bit integer
ncp.ext_info_64_bit_fs 64 Bit File Sizes Boolean
ncp.ext_info_access Last Access Boolean
ncp.ext_info_dos_name DOS Name Boolean
ncp.ext_info_effective Effective Boolean
ncp.ext_info_flush Flush Boolean
ncp.ext_info_mac_date MAC Date Boolean
ncp.ext_info_mac_finder MAC Finder Boolean
ncp.ext_info_newstyle New Style Boolean
ncp.ext_info_parental Parental Boolean
ncp.ext_info_sibling Sibling Boolean
ncp.ext_info_update Update Boolean
ncp.ext_router_active_flag External Router Active Flag Boolean
ncp.extended_attribute_extants_used Extended Attribute Extants Used Unsigned 32-bit integer
ncp.extended_attributes_defined Extended Attributes Defined Unsigned 32-bit integer
ncp.extra_extra_use_count_node_count Errors allocating an additional use count node for TTS Unsigned 32-bit integer
ncp.extra_use_count_node_count Errors allocating a use count node for TTS Unsigned 32-bit integer
ncp.f_size_64bit 64bit File Size Byte array
ncp.failed_alloc_req Failed Alloc Request Count Unsigned 32-bit integer
ncp.fat_moved Number of times the OS has move the location of FAT Unsigned 32-bit integer
ncp.fat_scan_errors FAT Scan Errors Unsigned 16-bit integer
ncp.fat_write_err Number of write errors in both original and mirrored copies of FAT Unsigned 32-bit integer
ncp.fat_write_errors FAT Write Errors Unsigned 16-bit integer
ncp.fatal_fat_write_errors Fatal FAT Write Errors Unsigned 16-bit integer
ncp.fields_len_table Fields Len Table Byte array
ncp.file_count File Count Unsigned 16-bit integer
ncp.file_date File Date Unsigned 16-bit integer
ncp.file_dir_win File/Dir Window Unsigned 16-bit integer
ncp.file_execute_type File Execute Type Unsigned 8-bit integer
ncp.file_ext_attr File Extended Attributes Unsigned 8-bit integer
ncp.file_flags File Flags Unsigned 32-bit integer
ncp.file_handle Burst File Handle Unsigned 32-bit integer Packet Burst File Handle
ncp.file_limbo File Limbo Unsigned 32-bit integer
ncp.file_list_count File List Count Unsigned 32-bit integer
ncp.file_lock_count File Lock Count Unsigned 16-bit integer
ncp.file_mode File Mode Unsigned 8-bit integer
ncp.file_name Filename String
ncp.file_name_12 Filename String
ncp.file_name_14 Filename String
ncp.file_name_len Filename Length Unsigned 8-bit integer
ncp.file_offset File Offset Unsigned 32-bit integer
ncp.file_path File Path String
ncp.file_size File Size Unsigned 32-bit integer
ncp.file_system_id File System ID Unsigned 8-bit integer
ncp.file_time File Time Unsigned 16-bit integer
ncp.file_write_flags File Write Flags Unsigned 8-bit integer
ncp.file_write_state File Write State Unsigned 8-bit integer
ncp.filler Filler Unsigned 8-bit integer
ncp.finder_attr Finder Info Attributes Unsigned 16-bit integer
ncp.finder_attr_bundle Object Has Bundle Boolean
ncp.finder_attr_desktop Object on Desktop Boolean
ncp.finder_attr_invisible Object is Invisible Boolean
ncp.first_packet_isnt_a_write First Packet Isn't A Write Count Unsigned 32-bit integer
ncp.fixed_bit_mask Fixed Bit Mask Unsigned 32-bit integer
ncp.fixed_bits_defined Fixed Bits Defined Unsigned 16-bit integer
ncp.flag_bits Flag Bits Unsigned 8-bit integer
ncp.flags Flags Unsigned 8-bit integer
ncp.flags_def Flags Unsigned 16-bit integer
ncp.flush_time Flush Time Unsigned 32-bit integer
ncp.folder_flag Folder Flag Unsigned 8-bit integer
ncp.force_flag Force Server Down Flag Unsigned 8-bit integer
ncp.forged_detached_requests Forged Detached Requests Unsigned 16-bit integer
ncp.forged_packet Forged Packet Count Unsigned 32-bit integer
ncp.fork_count Fork Count Unsigned 8-bit integer
ncp.fork_indicator Fork Indicator Unsigned 8-bit integer
ncp.form_type Form Type Unsigned 16-bit integer
ncp.form_type_count Form Types Count Unsigned 32-bit integer
ncp.found_some_mem Found Some Memory Unsigned 32-bit integer
ncp.fractional_time Fractional Time in Seconds Unsigned 32-bit integer
ncp.fragger_handle Fragment Handle Unsigned 32-bit integer
ncp.fragger_hndl Fragment Handle Unsigned 16-bit integer
ncp.fragment_write_occurred Fragment Write Occurred Unsigned 16-bit integer
ncp.free_blocks Free Blocks Unsigned 32-bit integer
ncp.free_directory_entries Free Directory Entries Unsigned 16-bit integer
ncp.freeable_limbo_sectors Freeable Limbo Sectors Unsigned 32-bit integer
ncp.freed_clusters Freed Clusters Unsigned 32-bit integer
ncp.fs_engine_flag FS Engine Flag Boolean
ncp.full_name Full Name String
ncp.func Function Unsigned 8-bit integer
ncp.generic_block_size Block Size Unsigned 32-bit integer
ncp.generic_capacity Capacity Unsigned 32-bit integer
ncp.generic_cartridge_type Cartridge Type Unsigned 32-bit integer
ncp.generic_child_count Child Count Unsigned 32-bit integer
ncp.generic_ctl_mask Control Mask Unsigned 32-bit integer
ncp.generic_func_mask Function Mask Unsigned 32-bit integer
ncp.generic_ident_time Identification Time Unsigned 32-bit integer
ncp.generic_ident_type Identification Type Unsigned 32-bit integer
ncp.generic_label Label String
ncp.generic_media_slot Media Slot Unsigned 32-bit integer
ncp.generic_media_type Media Type Unsigned 32-bit integer
ncp.generic_name Name String
ncp.generic_object_uniq_id Unique Object ID Unsigned 32-bit integer
ncp.generic_parent_count Parent Count Unsigned 32-bit integer
ncp.generic_pref_unit_size Preferred Unit Size Unsigned 32-bit integer
ncp.generic_sib_count Sibling Count Unsigned 32-bit integer
ncp.generic_spec_info_sz Specific Information Size Unsigned 32-bit integer
ncp.generic_status Status Unsigned 32-bit integer
ncp.generic_type Type Unsigned 32-bit integer
ncp.generic_unit_size Unit Size Unsigned 32-bit integer
ncp.get_ecb_buf Get ECB Buffers Unsigned 32-bit integer
ncp.get_ecb_fails Get ECB Failures Unsigned 32-bit integer
ncp.get_set_flag Get Set Flag Unsigned 8-bit integer
ncp.guid GUID Byte array
ncp.had_an_out_of_order Had An Out Of Order Write Count Unsigned 32-bit integer
ncp.handle_flag Handle Flag Unsigned 8-bit integer
ncp.handle_info_level Handle Info Level Unsigned 8-bit integer
ncp.hardware_rx_mismatch_count Hardware Receive Mismatch Count Unsigned 32-bit integer
ncp.held_bytes_read Held Bytes Read Byte array
ncp.held_bytes_write Held Bytes Written Byte array
ncp.held_conn_time Held Connect Time in Minutes Unsigned 32-bit integer
ncp.hold_amount Hold Amount Unsigned 32-bit integer
ncp.hold_cancel_amount Hold Cancel Amount Unsigned 32-bit integer
ncp.hold_time Hold Time Unsigned 32-bit integer
ncp.holder_id Holder ID Unsigned 32-bit integer
ncp.hops_to_net Hop Count Unsigned 16-bit integer
ncp.horiz_location Horizontal Location Unsigned 16-bit integer
ncp.host_address Host Address Byte array
ncp.hot_fix_blocks_available Hot Fix Blocks Available Unsigned 16-bit integer
ncp.hot_fix_disabled Hot Fix Disabled Unsigned 8-bit integer
ncp.hot_fix_table_size Hot Fix Table Size Unsigned 16-bit integer
ncp.hot_fix_table_start Hot Fix Table Start Unsigned 32-bit integer
ncp.huge_bit_mask Huge Bit Mask Unsigned 32-bit integer
ncp.huge_bits_defined Huge Bits Defined Unsigned 16-bit integer
ncp.huge_data Huge Data String
ncp.huge_data_used Huge Data Used Unsigned 32-bit integer
ncp.huge_state_info Huge State Info Byte array
ncp.i_ran_out_someone_else_did_it_0 I Ran Out Someone Else Did It Count 0 Unsigned 32-bit integer
ncp.i_ran_out_someone_else_did_it_1 I Ran Out Someone Else Did It Count 1 Unsigned 32-bit integer
ncp.i_ran_out_someone_else_did_it_2 I Ran Out Someone Else Did It Count 2 Unsigned 32-bit integer
ncp.id_get_no_read_no_wait ID Get No Read No Wait Count Unsigned 32-bit integer
ncp.id_get_no_read_no_wait_alloc ID Get No Read No Wait Allocate Count Unsigned 32-bit integer
ncp.id_get_no_read_no_wait_buffer ID Get No Read No Wait No Buffer Count Unsigned 32-bit integer
ncp.id_get_no_read_no_wait_no_alloc ID Get No Read No Wait No Alloc Count Unsigned 32-bit integer
ncp.id_get_no_read_no_wait_no_alloc_alloc ID Get No Read No Wait No Alloc Allocate Count Unsigned 32-bit integer
ncp.id_get_no_read_no_wait_no_alloc_sema ID Get No Read No Wait No Alloc Semaphored Count Unsigned 32-bit integer
ncp.id_get_no_read_no_wait_sema ID Get No Read No Wait Semaphored Count Unsigned 32-bit integer
ncp.identification_number Identification Number Unsigned 32-bit integer
ncp.ignored_rx_pkts Ignored Receive Packets Unsigned 32-bit integer
ncp.in_use Bytes in Use Unsigned 32-bit integer
ncp.inc_nds_ver Include NDS Version Unsigned 32-bit integer
ncp.incoming_packet_discarded_no_dgroup Incoming Packet Discarded No DGroup Unsigned 16-bit integer
ncp.index_number Index Number Unsigned 8-bit integer
ncp.info_count Info Count Unsigned 16-bit integer
ncp.info_flags Info Flags Unsigned 32-bit integer
ncp.info_flags_all_attr All Attributes Boolean
ncp.info_flags_all_dirbase_num All Directory Base Numbers Boolean
ncp.info_flags_dos_attr DOS Attributes Boolean
ncp.info_flags_dos_time DOS Time Boolean
ncp.info_flags_ds_sizes Data Stream Sizes Boolean
ncp.info_flags_ea_present EA Present Flag Boolean
ncp.info_flags_effect_rights Effective Rights Boolean
ncp.info_flags_flags Return Object Flags Boolean
ncp.info_flags_flush_time Flush Time Boolean
ncp.info_flags_ids ID's Boolean
ncp.info_flags_mac_finder Mac Finder Information Boolean
ncp.info_flags_mac_time Mac Time Boolean
ncp.info_flags_max_access_mask Maximum Access Mask Boolean
ncp.info_flags_name Return Object Name Boolean
ncp.info_flags_ns_attr Name Space Attributes Boolean
ncp.info_flags_prnt_base_id Parent Base ID Boolean
ncp.info_flags_ref_count Reference Count Boolean
ncp.info_flags_security Return Object Security Boolean
ncp.info_flags_sibling_cnt Sibling Count Boolean
ncp.info_flags_type Return Object Type Boolean
ncp.info_level_num Information Level Number Unsigned 8-bit integer
ncp.info_mask Information Mask Unsigned 32-bit integer
ncp.info_mask_c_name_space Creator Name Space & Name Boolean
ncp.info_mask_dosname DOS Name Boolean
ncp.info_mask_name Name Boolean
ncp.inh_revoke_create Create Rights Boolean
ncp.inh_revoke_delete Delete Rights Boolean
ncp.inh_revoke_modify Modify Rights Boolean
ncp.inh_revoke_open Open Rights Boolean
ncp.inh_revoke_parent Change Access Boolean
ncp.inh_revoke_read Read Rights Boolean
ncp.inh_revoke_search See Files Flag Boolean
ncp.inh_revoke_supervisor Supervisor Boolean
ncp.inh_revoke_write Write Rights Boolean
ncp.inh_rights_create Create Rights Boolean
ncp.inh_rights_delete Delete Rights Boolean
ncp.inh_rights_modify Modify Rights Boolean
ncp.inh_rights_open Open Rights Boolean
ncp.inh_rights_parent Change Access Boolean
ncp.inh_rights_read Read Rights Boolean
ncp.inh_rights_search See Files Flag Boolean
ncp.inh_rights_supervisor Supervisor Boolean
ncp.inh_rights_write Write Rights Boolean
ncp.inheritance_revoke_mask Revoke Rights Mask Unsigned 16-bit integer
ncp.inherited_rights_mask Inherited Rights Mask Unsigned 16-bit integer
ncp.initial_semaphore_value Initial Semaphore Value Unsigned 8-bit integer
ncp.inspect_size Inspect Size Unsigned 32-bit integer
ncp.internet_bridge_version Internet Bridge Version Unsigned 8-bit integer
ncp.internl_dsk_get Internal Disk Get Count Unsigned 32-bit integer
ncp.internl_dsk_get_need_to_alloc Internal Disk Get Need To Allocate Count Unsigned 32-bit integer
ncp.internl_dsk_get_no_read Internal Disk Get No Read Count Unsigned 32-bit integer
ncp.internl_dsk_get_no_read_alloc Internal Disk Get No Read Allocate Count Unsigned 32-bit integer
ncp.internl_dsk_get_no_read_someone_beat Internal Disk Get No Read Someone Beat Me Count Unsigned 32-bit integer
ncp.internl_dsk_get_no_wait Internal Disk Get No Wait Count Unsigned 32-bit integer
ncp.internl_dsk_get_no_wait_need Internal Disk Get No Wait Need To Allocate Count Unsigned 32-bit integer
ncp.internl_dsk_get_no_wait_no_blk Internal Disk Get No Wait No Block Count Unsigned 32-bit integer
ncp.internl_dsk_get_part_read Internal Disk Get Partial Read Count Unsigned 32-bit integer
ncp.internl_dsk_get_read_err Internal Disk Get Read Error Count Unsigned 32-bit integer
ncp.internl_dsk_get_someone_beat Internal Disk Get Someone Beat My Count Unsigned 32-bit integer
ncp.internl_dsk_write Internal Disk Write Count Unsigned 32-bit integer
ncp.internl_dsk_write_alloc Internal Disk Write Allocate Count Unsigned 32-bit integer
ncp.internl_dsk_write_someone_beat Internal Disk Write Someone Beat Me Count Unsigned 32-bit integer
ncp.interrupt_numbers_used Interrupt Numbers Used Unsigned 32-bit integer
ncp.invalid_control_req Invalid Control Request Count Unsigned 32-bit integer
ncp.invalid_req_type Invalid Request Type Count Unsigned 32-bit integer
ncp.invalid_sequence_number Invalid Sequence Number Count Unsigned 32-bit integer
ncp.invalid_slot Invalid Slot Count Unsigned 32-bit integer
ncp.io_addresses_used IO Addresses Used Byte array
ncp.io_engine_flag IO Engine Flag Boolean
ncp.io_error_count IO Error Count Unsigned 16-bit integer
ncp.io_flag IO Flag Unsigned 32-bit integer
ncp.ip.length NCP over IP length Unsigned 32-bit integer
ncp.ip.packetsig NCP over IP Packet Signature Byte array
ncp.ip.replybufsize NCP over IP Reply Buffer Size Unsigned 32-bit integer
ncp.ip.signature NCP over IP signature Unsigned 32-bit integer
ncp.ip.version NCP over IP Version Unsigned 32-bit integer
ncp.ipref Address Referral IPv4 address
ncp.ipx_aes_event IPX AES Event Count Unsigned 32-bit integer
ncp.ipx_ecb_cancel_fail IPX ECB Cancel Fail Count Unsigned 16-bit integer
ncp.ipx_get_ecb_fail IPX Get ECB Fail Count Unsigned 32-bit integer
ncp.ipx_get_ecb_req IPX Get ECB Request Count Unsigned 32-bit integer
ncp.ipx_get_lcl_targ_fail IPX Get Local Target Fail Count Unsigned 16-bit integer
ncp.ipx_listen_ecb IPX Listen ECB Count Unsigned 32-bit integer
ncp.ipx_malform_pkt IPX Malformed Packet Count Unsigned 16-bit integer
ncp.ipx_max_conf_sock IPX Max Configured Socket Count Unsigned 16-bit integer
ncp.ipx_max_open_sock IPX Max Open Socket Count Unsigned 16-bit integer
ncp.ipx_not_my_network IPX Not My Network Unsigned 16-bit integer
ncp.ipx_open_sock_fail IPX Open Socket Fail Count Unsigned 16-bit integer
ncp.ipx_postponed_aes IPX Postponed AES Count Unsigned 16-bit integer
ncp.ipx_send_pkt IPX Send Packet Count Unsigned 32-bit integer
ncp.items_changed Items Changed Unsigned 32-bit integer
ncp.items_checked Items Checked Unsigned 32-bit integer
ncp.items_count Items Count Unsigned 32-bit integer
ncp.items_in_list Items in List Unsigned 32-bit integer
ncp.items_in_packet Items in Packet Unsigned 32-bit integer
ncp.job_control1_file_open File Open Boolean
ncp.job_control1_job_recovery Job Recovery Boolean
ncp.job_control1_operator_hold Operator Hold Boolean
ncp.job_control1_reservice ReService Job Boolean
ncp.job_control1_user_hold User Hold Boolean
ncp.job_control_file_open File Open Boolean
ncp.job_control_flags Job Control Flags Unsigned 8-bit integer
ncp.job_control_flags_word Job Control Flags Unsigned 16-bit integer
ncp.job_control_job_recovery Job Recovery Boolean
ncp.job_control_operator_hold Operator Hold Boolean
ncp.job_control_reservice ReService Job Boolean
ncp.job_control_user_hold User Hold Boolean
ncp.job_count Job Count Unsigned 32-bit integer
ncp.job_file_handle Job File Handle Byte array
ncp.job_file_handle_long Job File Handle Unsigned 32-bit integer
ncp.job_file_name Job File Name String
ncp.job_number Job Number Unsigned 16-bit integer
ncp.job_number_long Job Number Unsigned 32-bit integer
ncp.job_position Job Position Unsigned 8-bit integer
ncp.job_position_word Job Position Unsigned 16-bit integer
ncp.job_type Job Type Unsigned 16-bit integer
ncp.lan_driver_number LAN Driver Number Unsigned 8-bit integer
ncp.lan_drv_bd_inst LAN Driver Board Instance Unsigned 16-bit integer
ncp.lan_drv_bd_num LAN Driver Board Number Unsigned 16-bit integer
ncp.lan_drv_card_id LAN Driver Card ID Unsigned 16-bit integer
ncp.lan_drv_card_name LAN Driver Card Name String
ncp.lan_drv_dma_usage1 Primary DMA Channel Unsigned 8-bit integer
ncp.lan_drv_dma_usage2 Secondary DMA Channel Unsigned 8-bit integer
ncp.lan_drv_flags LAN Driver Flags Unsigned 16-bit integer
ncp.lan_drv_interrupt1 Primary Interrupt Vector Unsigned 8-bit integer
ncp.lan_drv_interrupt2 Secondary Interrupt Vector Unsigned 8-bit integer
ncp.lan_drv_io_ports_and_ranges_1 Primary Base I/O Port Unsigned 16-bit integer
ncp.lan_drv_io_ports_and_ranges_2 Number of I/O Ports Unsigned 16-bit integer
ncp.lan_drv_io_ports_and_ranges_3 Secondary Base I/O Port Unsigned 16-bit integer
ncp.lan_drv_io_ports_and_ranges_4 Number of I/O Ports Unsigned 16-bit integer
ncp.lan_drv_io_reserved LAN Driver IO Reserved Byte array
ncp.lan_drv_line_speed LAN Driver Line Speed Unsigned 16-bit integer
ncp.lan_drv_link LAN Driver Link Unsigned 32-bit integer
ncp.lan_drv_log_name LAN Driver Logical Name Byte array
ncp.lan_drv_major_ver LAN Driver Major Version Unsigned 8-bit integer
ncp.lan_drv_max_rcv_size LAN Driver Maximum Receive Size Unsigned 32-bit integer
ncp.lan_drv_max_size LAN Driver Maximum Size Unsigned 32-bit integer
ncp.lan_drv_media_id LAN Driver Media ID Unsigned 16-bit integer
ncp.lan_drv_mem_decode_0 LAN Driver Memory Decode 0 Unsigned 32-bit integer
ncp.lan_drv_mem_decode_1 LAN Driver Memory Decode 1 Unsigned 32-bit integer
ncp.lan_drv_mem_length_0 LAN Driver Memory Length 0 Unsigned 16-bit integer
ncp.lan_drv_mem_length_1 LAN Driver Memory Length 1 Unsigned 16-bit integer
ncp.lan_drv_minor_ver LAN Driver Minor Version Unsigned 8-bit integer
ncp.lan_drv_rcv_size LAN Driver Receive Size Unsigned 32-bit integer
ncp.lan_drv_reserved LAN Driver Reserved Unsigned 16-bit integer
ncp.lan_drv_share LAN Driver Sharing Flags Unsigned 16-bit integer
ncp.lan_drv_slot LAN Driver Slot Unsigned 16-bit integer
ncp.lan_drv_snd_retries LAN Driver Send Retries Unsigned 16-bit integer
ncp.lan_drv_src_route LAN Driver Source Routing Unsigned 32-bit integer
ncp.lan_drv_trans_time LAN Driver Transport Time Unsigned 16-bit integer
ncp.lan_dvr_cfg_major_vrs LAN Driver Config - Major Version Unsigned 8-bit integer
ncp.lan_dvr_cfg_minor_vrs LAN Driver Config - Minor Version Unsigned 8-bit integer
ncp.lan_dvr_mode_flags LAN Driver Mode Flags Unsigned 8-bit integer
ncp.lan_dvr_node_addr LAN Driver Node Address Byte array
ncp.large_internet_packets Large Internet Packets (LIP) Disabled Boolean
ncp.last_access_date Last Accessed Date Unsigned 16-bit integer
ncp.last_access_time Last Accessed Time Unsigned 16-bit integer
ncp.last_garbage_collect Last Garbage Collection Unsigned 32-bit integer
ncp.last_instance Last Instance Unsigned 32-bit integer
ncp.last_record_seen Last Record Seen Unsigned 16-bit integer
ncp.last_search_index Search Index Unsigned 16-bit integer
ncp.last_seen Last Seen Unsigned 32-bit integer
ncp.last_sequence_number Sequence Number Unsigned 16-bit integer
ncp.last_time_rx_buff_was_alloc Last Time a Receive Buffer was Allocated Unsigned 32-bit integer
ncp.length Packet Length Unsigned 16-bit integer
ncp.length_64bit 64bit Length Byte array
ncp.level Level Unsigned 8-bit integer
ncp.lfs_counters LFS Counters Unsigned 32-bit integer
ncp.limb_count Limb Count Unsigned 32-bit integer
ncp.limbo_data_streams_count Limbo Data Streams Count Unsigned 32-bit integer
ncp.limbo_used Limbo Used Unsigned 32-bit integer
ncp.lip_echo Large Internet Packet Echo String
ncp.loaded_name_spaces Loaded Name Spaces Unsigned 8-bit integer
ncp.local_connection_id Local Connection ID Unsigned 32-bit integer
ncp.local_login_info_ccode Local Login Info C Code Unsigned 8-bit integer
ncp.local_max_packet_size Local Max Packet Size Unsigned 32-bit integer
ncp.local_max_recv_size Local Max Recv Size Unsigned 32-bit integer
ncp.local_max_send_size Local Max Send Size Unsigned 32-bit integer
ncp.local_target_socket Local Target Socket Unsigned 32-bit integer
ncp.lock_area_len Lock Area Length Unsigned 32-bit integer
ncp.lock_areas_start_offset Lock Areas Start Offset Unsigned 32-bit integer
ncp.lock_flag Lock Flag Unsigned 8-bit integer
ncp.lock_name Lock Name String
ncp.lock_status Lock Status Unsigned 8-bit integer
ncp.lock_timeout Lock Timeout Unsigned 16-bit integer
ncp.lock_type Lock Type Unsigned 8-bit integer
ncp.locked Locked Flag Unsigned 8-bit integer
ncp.log_file_flag_high Log File Flag (byte 2) Unsigned 8-bit integer
ncp.log_file_flag_low Log File Flag Unsigned 8-bit integer
ncp.log_flag_call_back Call Back Requested Boolean
ncp.log_flag_lock_file Lock File Immediately Boolean
ncp.log_ttl_rx_pkts Total Received Packets Unsigned 32-bit integer
ncp.log_ttl_tx_pkts Total Transmitted Packets Unsigned 32-bit integer
ncp.logged_count Logged Count Unsigned 16-bit integer
ncp.logged_object_id Logged in Object ID Unsigned 32-bit integer
ncp.logical_connection_number Logical Connection Number Unsigned 16-bit integer
ncp.logical_drive_count Logical Drive Count Unsigned 8-bit integer
ncp.logical_drive_number Logical Drive Number Unsigned 8-bit integer
ncp.logical_lock_threshold LogicalLockThreshold Unsigned 8-bit integer
ncp.logical_record_name Logical Record Name String
ncp.login_expiration_time Login Expiration Time Unsigned 32-bit integer
ncp.login_key Login Key Byte array
ncp.login_name Login Name String
ncp.long_name Long Name String
ncp.lru_block_was_dirty LRU Block Was Dirty Unsigned 16-bit integer
ncp.lru_sit_time LRU Sitting Time Unsigned 32-bit integer
ncp.mac_attr Attributes Unsigned 16-bit integer
ncp.mac_attr_archive Archive Boolean
ncp.mac_attr_execute_only Execute Only Boolean
ncp.mac_attr_hidden Hidden Boolean
ncp.mac_attr_index Index Boolean
ncp.mac_attr_r_audit Read Audit Boolean
ncp.mac_attr_r_only Read Only Boolean
ncp.mac_attr_share Shareable File Boolean
ncp.mac_attr_smode1 Search Mode Boolean
ncp.mac_attr_smode2 Search Mode Boolean
ncp.mac_attr_smode3 Search Mode Boolean
ncp.mac_attr_subdirectory Subdirectory Boolean
ncp.mac_attr_system System Boolean
ncp.mac_attr_transaction Transaction Boolean
ncp.mac_attr_w_audit Write Audit Boolean
ncp.mac_backup_date Mac Backup Date Unsigned 16-bit integer
ncp.mac_backup_time Mac Backup Time Unsigned 16-bit integer
ncp.mac_base_directory_id Mac Base Directory ID Unsigned 32-bit integer
ncp.mac_create_date Mac Create Date Unsigned 16-bit integer
ncp.mac_create_time Mac Create Time Unsigned 16-bit integer
ncp.mac_destination_base_id Mac Destination Base ID Unsigned 32-bit integer
ncp.mac_finder_info Mac Finder Information Byte array
ncp.mac_last_seen_id Mac Last Seen ID Unsigned 32-bit integer
ncp.mac_root_ids MAC Root IDs Unsigned 32-bit integer
ncp.mac_source_base_id Mac Source Base ID Unsigned 32-bit integer
ncp.major_version Major Version Unsigned 32-bit integer
ncp.map_hash_node_count Map Hash Node Count Unsigned 32-bit integer
ncp.max_byte_cnt Maximum Byte Count Unsigned 32-bit integer
ncp.max_bytes Maximum Number of Bytes Unsigned 16-bit integer
ncp.max_data_streams Maximum Data Streams Unsigned 32-bit integer
ncp.max_dir_depth Maximum Directory Depth Unsigned 32-bit integer
ncp.max_dirty_time Maximum Dirty Time Unsigned 32-bit integer
ncp.max_num_of_conn Maximum Number of Connections Unsigned 32-bit integer
ncp.max_num_of_dir_cache_buff Maximum Number Of Directory Cache Buffers Unsigned 32-bit integer
ncp.max_num_of_lans Maximum Number Of LAN's Unsigned 32-bit integer
ncp.max_num_of_media_types Maximum Number of Media Types Unsigned 32-bit integer
ncp.max_num_of_medias Maximum Number Of Media's Unsigned 32-bit integer
ncp.max_num_of_nme_sps Maximum Number Of Name Spaces Unsigned 32-bit integer
ncp.max_num_of_protocols Maximum Number of Protocols Unsigned 32-bit integer
ncp.max_num_of_spool_pr Maximum Number Of Spool Printers Unsigned 32-bit integer
ncp.max_num_of_stacks Maximum Number Of Stacks Unsigned 32-bit integer
ncp.max_num_of_users Maximum Number Of Users Unsigned 32-bit integer
ncp.max_num_of_vol Maximum Number of Volumes Unsigned 32-bit integer
ncp.max_phy_packet_size Maximum Physical Packet Size Unsigned 32-bit integer
ncp.max_space Maximum Space Unsigned 16-bit integer
ncp.maxspace Maximum Space Unsigned 32-bit integer
ncp.may_had_out_of_order Maybe Had Out Of Order Writes Count Unsigned 32-bit integer
ncp.media_list Media List Unsigned 32-bit integer
ncp.media_list_count Media List Count Unsigned 32-bit integer
ncp.media_name Media Name String
ncp.media_number Media Number Unsigned 32-bit integer
ncp.media_object_type Object Type Unsigned 8-bit integer
ncp.member_name Member Name String
ncp.member_type Member Type Unsigned 16-bit integer
ncp.message_language NLM Language Unsigned 32-bit integer
ncp.migrated_files Migrated Files Unsigned 32-bit integer
ncp.migrated_sectors Migrated Sectors Unsigned 32-bit integer
ncp.min_cache_report_thresh Minimum Cache Report Threshold Unsigned 32-bit integer
ncp.min_nds_version Minimum NDS Version Unsigned 32-bit integer
ncp.min_num_of_cache_buff Minimum Number Of Cache Buffers Unsigned 32-bit integer
ncp.min_num_of_dir_cache_buff Minimum Number Of Directory Cache Buffers Unsigned 32-bit integer
ncp.min_time_since_file_delete Minimum Time Since File Delete Unsigned 32-bit integer
ncp.minor_version Minor Version Unsigned 32-bit integer
ncp.missing_data_count Missing Data Count Unsigned 16-bit integer Number of bytes of missing data
ncp.missing_data_offset Missing Data Offset Unsigned 32-bit integer Offset of beginning of missing data
ncp.missing_fraglist_count Missing Fragment List Count Unsigned 16-bit integer Number of missing fragments reported
ncp.mixed_mode_path_flag Mixed Mode Path Flag Unsigned 8-bit integer
ncp.modified_counter Modified Counter Unsigned 32-bit integer
ncp.modified_date Modified Date Unsigned 16-bit integer
ncp.modified_time Modified Time Unsigned 16-bit integer
ncp.modifier_id Modifier ID Unsigned 32-bit integer
ncp.modify_dos_create Creator ID Boolean
ncp.modify_dos_delete Archive Date Boolean
ncp.modify_dos_info_mask Modify DOS Info Mask Unsigned 16-bit integer
ncp.modify_dos_inheritance Inheritance Boolean
ncp.modify_dos_laccess Last Access Boolean
ncp.modify_dos_max_space Maximum Space Boolean
ncp.modify_dos_mdate Modify Date Boolean
ncp.modify_dos_mid Modifier ID Boolean
ncp.modify_dos_mtime Modify Time Boolean
ncp.modify_dos_open Creation Time Boolean
ncp.modify_dos_parent Archive Time Boolean
ncp.modify_dos_read Attributes Boolean
ncp.modify_dos_search Archiver ID Boolean
ncp.modify_dos_write Creation Date Boolean
ncp.more_flag More Flag Unsigned 8-bit integer
ncp.more_properties More Properties Unsigned 8-bit integer
ncp.move_cache_node Move Cache Node Count Unsigned 32-bit integer
ncp.move_cache_node_from_avai Move Cache Node From Avail Count Unsigned 32-bit integer
ncp.moved_the_ack_bit_dn Moved The ACK Bit Down Count Unsigned 32-bit integer
ncp.mv_string Attribute Name String
ncp.name Name String
ncp.name12 Name String
ncp.name_len Name Space Length Unsigned 8-bit integer
ncp.name_length Name Length Unsigned 8-bit integer
ncp.name_list Name List Unsigned 32-bit integer
ncp.name_space Name Space Unsigned 8-bit integer
ncp.name_space_name Name Space Name String
ncp.name_type nameType Unsigned 32-bit integer
ncp.ncompletion_code Completion Code Unsigned 32-bit integer
ncp.ncp_data_size NCP Data Size Unsigned 32-bit integer
ncp.ncp_extension_major_version NCP Extension Major Version Unsigned 8-bit integer
ncp.ncp_extension_minor_version NCP Extension Minor Version Unsigned 8-bit integer
ncp.ncp_extension_name NCP Extension Name String
ncp.ncp_extension_number NCP Extension Number Unsigned 32-bit integer
ncp.ncp_extension_numbers NCP Extension Numbers Unsigned 32-bit integer
ncp.ncp_extension_revision_number NCP Extension Revision Number Unsigned 8-bit integer
ncp.ncp_peak_sta_in_use Peak Number of Connections since Server was brought up Unsigned 32-bit integer
ncp.ncp_sta_in_use Number of Workstations Connected to Server Unsigned 32-bit integer
ncp.ndirty_blocks Number of Dirty Blocks Unsigned 32-bit integer
ncp.nds_acflags Attribute Constraint Flags Unsigned 32-bit integer
ncp.nds_acl_add Access Control Lists to Add Unsigned 32-bit integer
ncp.nds_acl_del Access Control Lists to Delete Unsigned 32-bit integer
ncp.nds_all_attr All Attributes Unsigned 32-bit integer Return all Attributes?
ncp.nds_asn1 ASN.1 ID Byte array
ncp.nds_att_add Attribute to Add Unsigned 32-bit integer
ncp.nds_att_del Attribute to Delete Unsigned 32-bit integer
ncp.nds_attribute_dn Attribute Name String
ncp.nds_attributes Attributes Unsigned 32-bit integer
ncp.nds_base Base Class String
ncp.nds_base_class Base Class String
ncp.nds_bit1 Typeless Boolean
ncp.nds_bit10 Not Defined Boolean
ncp.nds_bit11 Not Defined Boolean
ncp.nds_bit12 Not Defined Boolean
ncp.nds_bit13 Not Defined Boolean
ncp.nds_bit14 Not Defined Boolean
ncp.nds_bit15 Not Defined Boolean
ncp.nds_bit16 Not Defined Boolean
ncp.nds_bit2 All Containers Boolean
ncp.nds_bit3 Slashed Boolean
ncp.nds_bit4 Dotted Boolean
ncp.nds_bit5 Tuned Boolean
ncp.nds_bit6 Not Defined Boolean
ncp.nds_bit7 Not Defined Boolean
ncp.nds_bit8 Not Defined Boolean
ncp.nds_bit9 Not Defined Boolean
ncp.nds_cflags Class Flags Unsigned 32-bit integer
ncp.nds_child_part_id Child Partition Root ID Unsigned 32-bit integer
ncp.nds_class_def_type Class Definition Type String
ncp.nds_class_filter Class Filter String
ncp.nds_classes Classes Unsigned 32-bit integer
ncp.nds_comm_trans Communications Transport Unsigned 32-bit integer
ncp.nds_compare_results Compare Results String
ncp.nds_crc CRC Unsigned 32-bit integer
ncp.nds_delim Delimeter String
ncp.nds_depth Distance object is from Root Unsigned 32-bit integer
ncp.nds_deref_base Dereference Base Class String
ncp.nds_ds_time DS Time Unsigned 32-bit integer
ncp.nds_eflags Entry Flags Unsigned 32-bit integer
ncp.nds_eid NDS EID Unsigned 32-bit integer
ncp.nds_entry_info Entry Information Unsigned 32-bit integer
ncp.nds_es Input Entry Specifier Unsigned 32-bit integer
ncp.nds_es_rdn_count RDN Count Unsigned 32-bit integer
ncp.nds_es_seconds Seconds Unsigned 32-bit integer
ncp.nds_es_type Entry Specifier Type String
ncp.nds_es_value Entry Specifier Value Unsigned 32-bit integer
ncp.nds_event_num Event Number Unsigned 16-bit integer
ncp.nds_file_handle File Handle Unsigned 32-bit integer
ncp.nds_file_size File Size Unsigned 32-bit integer
ncp.nds_flags NDS Return Flags Unsigned 32-bit integer
ncp.nds_info_type Info Type String
ncp.nds_iteration Iteration Handle Unsigned 32-bit integer
ncp.nds_keep Delete Original RDN Boolean
ncp.nds_letter_ver Letter Version Unsigned 32-bit integer
ncp.nds_lic_flags License Flags Unsigned 32-bit integer
ncp.nds_local_partition Local Partition ID Unsigned 32-bit integer
ncp.nds_lower Lower Limit Value Unsigned 32-bit integer
ncp.nds_master_part_id Master Partition Root ID Unsigned 32-bit integer
ncp.nds_name Name String
ncp.nds_name_filter Name Filter String
ncp.nds_name_type Name Type String
ncp.nds_nested_out_es Nested Output Entry Specifier Type Unsigned 32-bit integer
ncp.nds_new_part_id New Partition Root ID Unsigned 32-bit integer
ncp.nds_new_rdn New Relative Distinguished Name String
ncp.nds_nflags Flags Unsigned 32-bit integer
ncp.nds_num_objects Number of Objects to Search Unsigned 32-bit integer
ncp.nds_number_of_changes Number of Attribute Changes Unsigned 32-bit integer
ncp.nds_os_ver OS Version Unsigned 32-bit integer
ncp.nds_out_delimiter Output Delimiter String
ncp.nds_out_es Output Entry Specifier Unsigned 32-bit integer
ncp.nds_out_es_type Output Entry Specifier Type Unsigned 32-bit integer
ncp.nds_parent Parent ID Unsigned 32-bit integer
ncp.nds_parent_dn Parent Distinguished Name String
ncp.nds_partition_busy Partition Busy Boolean
ncp.nds_partition_root_id Partition Root ID Unsigned 32-bit integer
ncp.nds_ping_version Ping Version Unsigned 32-bit integer
ncp.nds_privileges Privileges Unsigned 32-bit integer
ncp.nds_purge Purge Time Unsigned 32-bit integer
ncp.nds_rdn RDN String
ncp.nds_referrals Referrals Unsigned 32-bit integer
ncp.nds_relative_dn Relative Distinguished Name String
ncp.nds_replica_num Replica Number Unsigned 16-bit integer
ncp.nds_replicas Replicas Unsigned 32-bit integer
ncp.nds_reply_buf NDS Reply Buffer Size Unsigned 32-bit integer
ncp.nds_req_flags Request Flags Unsigned 32-bit integer
ncp.nds_request_flags NDS Request Flags Unsigned 16-bit integer
ncp.nds_request_flags_alias_ref Alias Referral Boolean
ncp.nds_request_flags_dn_ref Down Referral Boolean
ncp.nds_request_flags_local_entry Local Entry Boolean
ncp.nds_request_flags_no_such_entry No Such Entry Boolean
ncp.nds_request_flags_output Output Fields Boolean
ncp.nds_request_flags_reply_data_size Reply Data Size Boolean
ncp.nds_request_flags_req_cnt Request Count Boolean
ncp.nds_request_flags_req_data_size Request Data Size Boolean
ncp.nds_request_flags_trans_ref Transport Referral Boolean
ncp.nds_request_flags_trans_ref2 Transport Referral Boolean
ncp.nds_request_flags_type_ref Type Referral Boolean
ncp.nds_request_flags_up_ref Up Referral Boolean
ncp.nds_result_flags Result Flags Unsigned 32-bit integer
ncp.nds_return_all_classes All Classes String Return all Classes?
ncp.nds_rev_count Revision Count Unsigned 32-bit integer
ncp.nds_rflags Request Flags Unsigned 16-bit integer
ncp.nds_root_dn Root Distinguished Name String
ncp.nds_root_name Root Most Object Name String
ncp.nds_scope Scope Unsigned 32-bit integer
ncp.nds_search_scope Search Scope String
ncp.nds_status NDS Status Unsigned 32-bit integer
ncp.nds_stream_flags Streams Flags Unsigned 32-bit integer
ncp.nds_stream_name Stream Name String
ncp.nds_super Super Class String
ncp.nds_syntax Attribute Syntax String
ncp.nds_tags Tags String
ncp.nds_target_dn Target Server Name String
ncp.nds_time_delay Time Delay Unsigned 32-bit integer
ncp.nds_time_filter Time Filter Unsigned 32-bit integer
ncp.nds_tree_name Tree Name String
ncp.nds_tree_trans Tree Walker Transport Unsigned 32-bit integer
ncp.nds_trustee_dn Trustee Distinguished Name String
ncp.nds_upper Upper Limit Value Unsigned 32-bit integer
ncp.nds_ver NDS Version Unsigned 32-bit integer
ncp.nds_version NDS Version Unsigned 32-bit integer
ncp.nds_vflags Value Flags Unsigned 32-bit integer
ncp.nds_vlength Value Length Unsigned 32-bit integer
ncp.ndsdepth Distance from Root Unsigned 32-bit integer
ncp.ndsflag Flags Unsigned 32-bit integer
ncp.ndsflags Flags Unsigned 32-bit integer
ncp.ndsfrag NDS Fragment Handle Unsigned 32-bit integer
ncp.ndsfragsize NDS Fragment Size Unsigned 32-bit integer
ncp.ndsmessagesize Message Size Unsigned 32-bit integer
ncp.ndsnet Network IPX network or server name
ncp.ndsnode Node 6-byte Hardware (MAC) Address
ncp.ndsport Port Unsigned 16-bit integer
ncp.ndsreplyerror NDS Error Unsigned 32-bit integer
ncp.ndsrev NDS Revision Unsigned 32-bit integer
ncp.ndssocket Socket Unsigned 16-bit integer
ncp.ndsverb NDS Verb Unsigned 8-bit integer
ncp.net_id_number Net ID Number Unsigned 32-bit integer
ncp.net_status Network Status Unsigned 16-bit integer
ncp.netbios_broadcast_was_propogated NetBIOS Broadcast Was Propogated Unsigned 32-bit integer
ncp.netbios_progated NetBIOS Propagated Count Unsigned 32-bit integer
ncp.netware_access_handle NetWare Access Handle Byte array
ncp.network_address Network Address Unsigned 32-bit integer
ncp.network_node_address Network Node Address Byte array
ncp.network_number Network Number Unsigned 32-bit integer
ncp.network_socket Network Socket Unsigned 16-bit integer
ncp.new_access_rights_create Create Boolean
ncp.new_access_rights_delete Delete Boolean
ncp.new_access_rights_mask New Access Rights Unsigned 16-bit integer
ncp.new_access_rights_modify Modify Boolean
ncp.new_access_rights_open Open Boolean
ncp.new_access_rights_parental Parental Boolean
ncp.new_access_rights_read Read Boolean
ncp.new_access_rights_search Search Boolean
ncp.new_access_rights_supervisor Supervisor Boolean
ncp.new_access_rights_write Write Boolean
ncp.new_directory_id New Directory ID Unsigned 32-bit integer
ncp.new_ea_handle New EA Handle Unsigned 32-bit integer
ncp.new_file_name New File Name String
ncp.new_file_name_len New File Name String
ncp.new_file_size New File Size Unsigned 32-bit integer
ncp.new_object_name New Object Name String
ncp.new_password New Password String
ncp.new_path New Path String
ncp.new_position New Position Unsigned 8-bit integer
ncp.next_cnt_block Next Count Block Unsigned 32-bit integer
ncp.next_huge_state_info Next Huge State Info Byte array
ncp.next_limb_scan_num Next Limb Scan Number Unsigned 32-bit integer
ncp.next_object_id Next Object ID Unsigned 32-bit integer
ncp.next_record Next Record Unsigned 32-bit integer
ncp.next_request_record Next Request Record Unsigned 16-bit integer
ncp.next_search_index Next Search Index Unsigned 16-bit integer
ncp.next_search_number Next Search Number Unsigned 16-bit integer
ncp.next_starting_number Next Starting Number Unsigned 32-bit integer
ncp.next_trustee_entry Next Trustee Entry Unsigned 32-bit integer
ncp.next_volume_number Next Volume Number Unsigned 32-bit integer
ncp.nlm_count NLM Count Unsigned 32-bit integer
ncp.nlm_flags Flags Unsigned 8-bit integer
ncp.nlm_flags_multiple Can Load Multiple Times Boolean
ncp.nlm_flags_pseudo PseudoPreemption Boolean
ncp.nlm_flags_reentrant ReEntrant Boolean
ncp.nlm_flags_synchronize Synchronize Start Boolean
ncp.nlm_load_options NLM Load Options Unsigned 32-bit integer
ncp.nlm_name_stringz NLM Name String
ncp.nlm_number NLM Number Unsigned 32-bit integer
ncp.nlm_numbers NLM Numbers Unsigned 32-bit integer
ncp.nlm_start_num NLM Start Number Unsigned 32-bit integer
ncp.nlm_type NLM Type Unsigned 8-bit integer
ncp.nlms_in_list NLM's in List Unsigned 32-bit integer
ncp.no_avail_conns No Available Connections Count Unsigned 32-bit integer
ncp.no_ecb_available_count No ECB Available Count Unsigned 32-bit integer
ncp.no_mem_for_station No Memory For Station Control Count Unsigned 32-bit integer
ncp.no_more_mem_avail No More Memory Available Count Unsigned 32-bit integer
ncp.no_receive_buff No Receive Buffers Unsigned 16-bit integer
ncp.no_space_for_service No Space For Service Unsigned 16-bit integer
ncp.node Node Byte array
ncp.node_flags Node Flags Unsigned 32-bit integer
ncp.non_ded_flag Non Dedicated Flag Boolean
ncp.non_freeable_avail_sub_alloc_sectors Non Freeable Available Sub Alloc Sectors Unsigned 32-bit integer
ncp.non_freeable_limbo_sectors Non Freeable Limbo Sectors Unsigned 32-bit integer
ncp.not_my_network Not My Network Unsigned 16-bit integer
ncp.not_supported_mask Bit Counter Supported Boolean
ncp.not_usable_sub_alloc_sectors Not Usable Sub Alloc Sectors Unsigned 32-bit integer
ncp.not_yet_purgeable_blocks Not Yet Purgeable Blocks Unsigned 32-bit integer
ncp.ns_info_mask Names Space Info Mask Unsigned 16-bit integer
ncp.ns_info_mask_acc_date Access Date Boolean
ncp.ns_info_mask_adate Archive Date Boolean
ncp.ns_info_mask_aid Archiver ID Boolean
ncp.ns_info_mask_atime Archive Time Boolean
ncp.ns_info_mask_cdate Creation Date Boolean
ncp.ns_info_mask_ctime Creation Time Boolean
ncp.ns_info_mask_fatt File Attributes Boolean
ncp.ns_info_mask_max_acc_mask Inheritance Boolean
ncp.ns_info_mask_max_space Maximum Space Boolean
ncp.ns_info_mask_modify Modify Name Boolean
ncp.ns_info_mask_owner Owner ID Boolean
ncp.ns_info_mask_udate Update Date Boolean
ncp.ns_info_mask_uid Update ID Boolean
ncp.ns_info_mask_utime Update Time Boolean
ncp.ns_specific_info Name Space Specific Info String
ncp.num_bytes Number of Bytes Unsigned 16-bit integer
ncp.num_dir_cache_buff Number Of Directory Cache Buffers Unsigned 32-bit integer
ncp.num_of_allocs Number of Allocations Unsigned 32-bit integer
ncp.num_of_cache_check_no_wait Number Of Cache Check No Wait Unsigned 32-bit integer
ncp.num_of_cache_checks Number Of Cache Checks Unsigned 32-bit integer
ncp.num_of_cache_dirty_checks Number Of Cache Dirty Checks Unsigned 32-bit integer
ncp.num_of_cache_hits Number Of Cache Hits Unsigned 32-bit integer
ncp.num_of_cache_hits_no_wait Number Of Cache Hits No Wait Unsigned 32-bit integer
ncp.num_of_cc_in_pkt Number of Custom Counters in Packet Unsigned 32-bit integer
ncp.num_of_checks Number of Checks Unsigned 32-bit integer
ncp.num_of_dir_cache_buff Number Of Directory Cache Buffers Unsigned 32-bit integer
ncp.num_of_dirty_cache_checks Number Of Dirty Cache Checks Unsigned 32-bit integer
ncp.num_of_entries Number of Entries Unsigned 32-bit integer
ncp.num_of_files_migrated Number Of Files Migrated Unsigned 32-bit integer
ncp.num_of_garb_coll Number of Garbage Collections Unsigned 32-bit integer
ncp.num_of_ncp_reqs Number of NCP Requests since Server was brought up Unsigned 32-bit integer
ncp.num_of_ref_publics Number of Referenced Public Symbols Unsigned 32-bit integer
ncp.num_of_segments Number of Segments Unsigned 32-bit integer
ncp.number_of_attributes Number of Attributes Unsigned 32-bit integer
ncp.number_of_cpus Number of CPU's Unsigned 32-bit integer
ncp.number_of_data_streams Number of Data Streams Unsigned 16-bit integer
ncp.number_of_dynamic_memory_areas Number Of Dynamic Memory Areas Unsigned 16-bit integer
ncp.number_of_entries Number of Entries Unsigned 8-bit integer
ncp.number_of_locks Number of Locks Unsigned 8-bit integer
ncp.number_of_minutes_to_delay Number of Minutes to Delay Unsigned 32-bit integer
ncp.number_of_ncp_extensions Number Of NCP Extensions Unsigned 32-bit integer
ncp.number_of_ns_loaded Number Of Name Spaces Loaded Unsigned 16-bit integer
ncp.number_of_protocols Number of Protocols Unsigned 8-bit integer
ncp.number_of_records Number of Records Unsigned 16-bit integer
ncp.number_of_semaphores Number Of Semaphores Unsigned 16-bit integer
ncp.number_of_service_processes Number Of Service Processes Unsigned 8-bit integer
ncp.number_of_set_categories Number Of Set Categories Unsigned 32-bit integer
ncp.number_of_sms Number Of Storage Medias Unsigned 32-bit integer
ncp.number_of_stations Number of Stations Unsigned 8-bit integer
ncp.nxt_search_num Next Search Number Unsigned 32-bit integer
ncp.o_c_ret_flags Open Create Return Flags Unsigned 8-bit integer
ncp.object_count Object Count Unsigned 32-bit integer
ncp.object_flags Object Flags Unsigned 8-bit integer
ncp.object_has_properites Object Has Properties Unsigned 8-bit integer
ncp.object_id Object ID Unsigned 32-bit integer
ncp.object_id_count Object ID Count Unsigned 16-bit integer
ncp.object_id_info Object Information Unsigned 32-bit integer
ncp.object_info_rtn_count Object Information Count Unsigned 32-bit integer
ncp.object_name Object Name String
ncp.object_name_len Object Name String
ncp.object_name_stringz Object Name String
ncp.object_number Object Number Unsigned 32-bit integer
ncp.object_security Object Security Unsigned 8-bit integer
ncp.object_type Object Type Unsigned 16-bit integer
ncp.old_file_name Old File Name Byte array
ncp.old_file_size Old File Size Unsigned 32-bit integer
ncp.oldest_deleted_file_age_in_ticks Oldest Deleted File Age in Ticks Unsigned 32-bit integer
ncp.open_count Open Count Unsigned 16-bit integer
ncp.open_create_action Open Create Action Unsigned 8-bit integer
ncp.open_create_action_compressed Compressed Boolean
ncp.open_create_action_created Created Boolean
ncp.open_create_action_opened Opened Boolean
ncp.open_create_action_read_only Read Only Boolean
ncp.open_create_action_replaced Replaced Boolean
ncp.open_create_mode Open Create Mode Unsigned 8-bit integer
ncp.open_create_mode_create Create new file or subdirectory (file or subdirectory cannot exist) Boolean
ncp.open_create_mode_open Open existing file (file must exist) Boolean
ncp.open_create_mode_oplock Open Callback (Op-Lock) Boolean
ncp.open_create_mode_replace Replace existing file Boolean
ncp.open_for_read_count Open For Read Count Unsigned 16-bit integer
ncp.open_for_write_count Open For Write Count Unsigned 16-bit integer
ncp.open_rights Open Rights Unsigned 8-bit integer
ncp.open_rights_compat Compatibility Boolean
ncp.open_rights_deny_read Deny Read Boolean
ncp.open_rights_deny_write Deny Write Boolean
ncp.open_rights_read_only Read Only Boolean
ncp.open_rights_write_only Write Only Boolean
ncp.open_rights_write_thru Write Through Boolean
ncp.oplock_flag Oplock Flag Unsigned 8-bit integer
ncp.oplock_handle File Handle Unsigned 16-bit integer
ncp.option_number Option Number Unsigned 8-bit integer
ncp.orig_num_cache_buff Original Number Of Cache Buffers Unsigned 32-bit integer
ncp.original_size Original Size Unsigned 32-bit integer
ncp.os_language_id OS Language ID Unsigned 8-bit integer
ncp.os_major_version OS Major Version Unsigned 8-bit integer
ncp.os_minor_version OS Minor Version Unsigned 8-bit integer
ncp.os_revision OS Revision Unsigned 8-bit integer
ncp.other_file_fork_fat Other File Fork FAT Entry Unsigned 32-bit integer
ncp.other_file_fork_size Other File Fork Size Unsigned 32-bit integer
ncp.outgoing_packet_discarded_no_turbo_buffer Outgoing Packet Discarded No Turbo Buffer Unsigned 16-bit integer
ncp.outstanding_compression_ios Outstanding Compression IOs Unsigned 32-bit integer
ncp.outstanding_ios Outstanding IOs Unsigned 32-bit integer
ncp.p1type NDS Parameter Type Unsigned 8-bit integer
ncp.packet_rs_too_small_count Receive Packet Too Small Count Unsigned 32-bit integer
ncp.packet_rx_misc_error_count Receive Packet Misc Error Count Unsigned 32-bit integer
ncp.packet_rx_overflow_count Receive Packet Overflow Count Unsigned 32-bit integer
ncp.packet_rx_too_big_count Receive Packet Too Big Count Unsigned 32-bit integer
ncp.packet_seqno Packet Sequence Number Unsigned 32-bit integer Sequence number of this packet in a burst
ncp.packet_tx_misc_error_count Transmit Packet Misc Error Count Unsigned 32-bit integer
ncp.packet_tx_too_big_count Transmit Packet Too Big Count Unsigned 32-bit integer
ncp.packet_tx_too_small_count Transmit Packet Too Small Count Unsigned 32-bit integer
ncp.packets_discarded_by_hop_count Packets Discarded By Hop Count Unsigned 16-bit integer
ncp.packets_discarded_unknown_net Packets Discarded Unknown Net Unsigned 16-bit integer
ncp.packets_from_invalid_connection Packets From Invalid Connection Unsigned 16-bit integer
ncp.packets_received_during_processing Packets Received During Processing Unsigned 16-bit integer
ncp.packets_with_bad_request_type Packets With Bad Request Type Unsigned 16-bit integer
ncp.packets_with_bad_sequence_number Packets With Bad Sequence Number Unsigned 16-bit integer
ncp.page_table_owner_flag Page Table Owner Unsigned 32-bit integer
ncp.parent_base_id Parent Base ID Unsigned 32-bit integer
ncp.parent_directory_base Parent Directory Base Unsigned 32-bit integer
ncp.parent_dos_directory_base Parent DOS Directory Base Unsigned 32-bit integer
ncp.parent_id Parent ID Unsigned 32-bit integer
ncp.parent_object_number Parent Object Number Unsigned 32-bit integer
ncp.password Password String
ncp.path Path String
ncp.path_and_name Path and Name String
ncp.path_base Path Base Unsigned 8-bit integer
ncp.path_component_count Path Component Count Unsigned 16-bit integer
ncp.path_component_size Path Component Size Unsigned 16-bit integer
ncp.path_cookie_flags Path Cookie Flags Unsigned 16-bit integer
ncp.path_count Path Count Unsigned 8-bit integer
ncp.pending_io_commands Pending IO Commands Unsigned 16-bit integer
ncp.percent_of_vol_used_by_dirs Percent Of Volume Used By Directories Unsigned 32-bit integer
ncp.physical_disk_channel Physical Disk Channel Unsigned 8-bit integer
ncp.physical_disk_number Physical Disk Number Unsigned 8-bit integer
ncp.physical_drive_count Physical Drive Count Unsigned 8-bit integer
ncp.physical_drive_type Physical Drive Type Unsigned 8-bit integer
ncp.physical_lock_threshold Physical Lock Threshold Unsigned 8-bit integer
ncp.physical_read_errors Physical Read Errors Unsigned 16-bit integer
ncp.physical_read_requests Physical Read Requests Unsigned 32-bit integer
ncp.physical_write_errors Physical Write Errors Unsigned 16-bit integer
ncp.physical_write_requests Physical Write Requests Unsigned 32-bit integer
ncp.ping_version NDS Version Unsigned 16-bit integer
ncp.poll_abort_conn Poller Aborted The Connnection Count Unsigned 32-bit integer
ncp.poll_rem_old_out_of_order Poller Removed Old Out Of Order Count Unsigned 32-bit integer
ncp.positive_acknowledges_sent Positive Acknowledges Sent Unsigned 16-bit integer
ncp.post_poned_events Postponed Events Unsigned 32-bit integer
ncp.pre_compressed_sectors Precompressed Sectors Unsigned 32-bit integer
ncp.previous_control_packet Previous Control Packet Count Unsigned 32-bit integer
ncp.previous_record Previous Record Unsigned 32-bit integer
ncp.primary_entry Primary Entry Unsigned 32-bit integer
ncp.print_flags Print Flags Unsigned 8-bit integer
ncp.print_flags_banner Print Banner Page Boolean
ncp.print_flags_cr Create Boolean
ncp.print_flags_del_spool Delete Spool File after Printing Boolean
ncp.print_flags_exp_tabs Expand Tabs in the File Boolean
ncp.print_flags_ff Suppress Form Feeds Boolean
ncp.print_server_version Print Server Version Unsigned 8-bit integer
ncp.print_to_file_flag Print to File Flag Boolean
ncp.printer_halted Printer Halted Unsigned 8-bit integer
ncp.printer_offline Printer Off-Line Unsigned 8-bit integer
ncp.priority Priority Unsigned 32-bit integer
ncp.privileges Login Privileges Unsigned 32-bit integer
ncp.pro_dos_info Pro DOS Info Byte array
ncp.processor_type Processor Type Unsigned 8-bit integer
ncp.product_major_version Product Major Version Unsigned 16-bit integer
ncp.product_minor_version Product Minor Version Unsigned 16-bit integer
ncp.product_revision_version Product Revision Version Unsigned 8-bit integer
ncp.projected_comp_size Projected Compression Size Unsigned 32-bit integer
ncp.property_data Property Data Byte array
ncp.property_has_more_segments Property Has More Segments Unsigned 8-bit integer
ncp.property_name Property Name String
ncp.property_name_16 Property Name String
ncp.property_segment Property Segment Unsigned 8-bit integer
ncp.property_type Property Type Unsigned 8-bit integer
ncp.property_value Property Value String
ncp.proposed_max_size Proposed Max Size Unsigned 16-bit integer
ncp.protocol_board_num Protocol Board Number Unsigned 32-bit integer
ncp.protocol_flags Protocol Flags Unsigned 32-bit integer
ncp.protocol_id Protocol ID Byte array
ncp.protocol_name Protocol Name String
ncp.protocol_number Protocol Number Unsigned 16-bit integer
ncp.purge_c_code Purge Completion Code Unsigned 32-bit integer
ncp.purge_count Purge Count Unsigned 32-bit integer
ncp.purge_flags Purge Flags Unsigned 16-bit integer
ncp.purge_list Purge List Unsigned 32-bit integer
ncp.purgeable_blocks Purgeable Blocks Unsigned 32-bit integer
ncp.qms_version QMS Version Unsigned 8-bit integer
ncp.queue_id Queue ID Unsigned 32-bit integer
ncp.queue_name Queue Name String
ncp.queue_start_position Queue Start Position Unsigned 32-bit integer
ncp.queue_status Queue Status Unsigned 8-bit integer
ncp.queue_status_new_jobs Operator does not want to add jobs to the queue Boolean
ncp.queue_status_pserver Operator does not want additional servers attaching Boolean
ncp.queue_status_svc_jobs Operator does not want servers to service jobs Boolean
ncp.queue_type Queue Type Unsigned 16-bit integer
ncp.r_tag_num Resource Tag Number Unsigned 32-bit integer
ncp.re_mirror_current_offset ReMirror Current Offset Unsigned 32-bit integer
ncp.re_mirror_drive_number ReMirror Drive Number Unsigned 8-bit integer
ncp.read_beyond_write Read Beyond Write Unsigned 16-bit integer
ncp.read_exist_blck Read Existing Block Count Unsigned 32-bit integer
ncp.read_exist_part_read Read Existing Partial Read Count Unsigned 32-bit integer
ncp.read_exist_read_err Read Existing Read Error Count Unsigned 32-bit integer
ncp.read_exist_write_wait Read Existing Write Wait Count Unsigned 32-bit integer
ncp.realloc_slot Re-Allocate Slot Count Unsigned 32-bit integer
ncp.realloc_slot_came_too_soon Re-Allocate Slot Came Too Soon Count Unsigned 32-bit integer
ncp.rec_lock_count Record Lock Count Unsigned 16-bit integer
ncp.record_end Record End Unsigned 32-bit integer
ncp.record_in_use Record in Use Unsigned 16-bit integer
ncp.record_start Record Start Unsigned 32-bit integer
ncp.redirected_printer Redirected Printer Unsigned 8-bit integer
ncp.reexecute_request Re-Execute Request Count Unsigned 32-bit integer
ncp.ref_addcount Address Count Unsigned 32-bit integer
ncp.ref_rec Referral Record Unsigned 32-bit integer
ncp.reference_count Reference Count Unsigned 32-bit integer
ncp.relations_count Relations Count Unsigned 16-bit integer
ncp.rem_cache_node Remove Cache Node Count Unsigned 32-bit integer
ncp.rem_cache_node_from_avail Remove Cache Node From Avail Count Unsigned 32-bit integer
ncp.remote_max_packet_size Remote Max Packet Size Unsigned 32-bit integer
ncp.remote_target_id Remote Target ID Unsigned 32-bit integer
ncp.removable_flag Removable Flag Unsigned 16-bit integer
ncp.remove_open_rights Remove Open Rights Unsigned 8-bit integer
ncp.remove_open_rights_comp Compatibility Boolean
ncp.remove_open_rights_dr Deny Read Boolean
ncp.remove_open_rights_dw Deny Write Boolean
ncp.remove_open_rights_ro Read Only Boolean
ncp.remove_open_rights_wo Write Only Boolean
ncp.remove_open_rights_write_thru Write Through Boolean
ncp.rename_flag Rename Flag Unsigned 8-bit integer
ncp.rename_flag_comp Compatability allows files that are marked read only to be opened with read/write access Boolean
ncp.rename_flag_no Name Only renames only the specified name space entry name Boolean
ncp.rename_flag_ren Rename to Myself allows file to be renamed to it's original name Boolean
ncp.replies_cancelled Replies Cancelled Unsigned 16-bit integer
ncp.reply_canceled Reply Canceled Count Unsigned 32-bit integer
ncp.reply_queue_job_numbers Reply Queue Job Numbers Unsigned 32-bit integer
ncp.req_frame_num Response to Request in Frame Number Frame number
ncp.request_bit_map Request Bit Map Unsigned 16-bit integer
ncp.request_bit_map_ratt Return Attributes Boolean
ncp.request_bit_map_ret_acc_date Access Date Boolean
ncp.request_bit_map_ret_acc_priv Access Privileges Boolean
ncp.request_bit_map_ret_afp_ent AFP Entry ID Boolean
ncp.request_bit_map_ret_afp_parent AFP Parent Entry ID Boolean
ncp.request_bit_map_ret_bak_date Backup Date&Time Boolean
ncp.request_bit_map_ret_cr_date Creation Date Boolean
ncp.request_bit_map_ret_data_fork Data Fork Length Boolean
ncp.request_bit_map_ret_finder Finder Info Boolean
ncp.request_bit_map_ret_long_nm Long Name Boolean
ncp.request_bit_map_ret_mod_date Modify Date&Time Boolean
ncp.request_bit_map_ret_num_off Number of Offspring Boolean
ncp.request_bit_map_ret_owner Owner ID Boolean
ncp.request_bit_map_ret_res_fork Resource Fork Length Boolean
ncp.request_bit_map_ret_short Short Name Boolean
ncp.request_code Request Code Unsigned 8-bit integer
ncp.requests_reprocessed Requests Reprocessed Unsigned 16-bit integer
ncp.reserved Reserved Unsigned 8-bit integer
ncp.reserved10 Reserved Byte array
ncp.reserved12 Reserved Byte array
ncp.reserved120 Reserved Byte array
ncp.reserved16 Reserved Byte array
ncp.reserved2 Reserved Byte array
ncp.reserved20 Reserved Byte array
ncp.reserved28 Reserved Byte array
ncp.reserved3 Reserved Byte array
ncp.reserved36 Reserved Byte array
ncp.reserved4 Reserved Byte array
ncp.reserved44 Reserved Byte array
ncp.reserved48 Reserved Byte array
ncp.reserved50 Reserved Byte array
ncp.reserved56 Reserved Byte array
ncp.reserved6 Reserved Byte array
ncp.reserved64 Reserved Byte array
ncp.reserved8 Reserved Byte array
ncp.reserved_or_directory_number Reserved or Directory Number (see EAFlags) Unsigned 32-bit integer
ncp.resource_count Resource Count Unsigned 32-bit integer
ncp.resource_fork_len Resource Fork Len Unsigned 32-bit integer
ncp.resource_fork_size Resource Fork Size Unsigned 32-bit integer
ncp.resource_name Resource Name String
ncp.resource_sig Resource Signature String
ncp.restore_time Restore Time Unsigned 32-bit integer
ncp.restriction Disk Space Restriction Unsigned 32-bit integer
ncp.restrictions_enforced Disk Restrictions Enforce Flag Unsigned 8-bit integer
ncp.ret_info_mask Return Information Unsigned 16-bit integer
ncp.ret_info_mask_actual Return Actual Information Boolean
ncp.ret_info_mask_alloc Return Allocation Space Information Boolean
ncp.ret_info_mask_arch Return Archive Information Boolean
ncp.ret_info_mask_attr Return Attribute Information Boolean
ncp.ret_info_mask_create Return Creation Information Boolean
ncp.ret_info_mask_dir Return Directory Information Boolean
ncp.ret_info_mask_eattr Return Extended Attributes Information Boolean
ncp.ret_info_mask_fname Return File Name Information Boolean
ncp.ret_info_mask_id Return ID Information Boolean
ncp.ret_info_mask_logical Return Logical Information Boolean
ncp.ret_info_mask_mod Return Modify Information Boolean
ncp.ret_info_mask_ns Return Name Space Information Boolean
ncp.ret_info_mask_ns_attr Return Name Space Attributes Information Boolean
ncp.ret_info_mask_rights Return Rights Information Boolean
ncp.ret_info_mask_size Return Size Information Boolean
ncp.ret_info_mask_tspace Return Total Space Information Boolean
ncp.retry_tx_count Transmit Retry Count Unsigned 32-bit integer
ncp.return_info_count Return Information Count Unsigned 32-bit integer
ncp.returned_list_count Returned List Count Unsigned 32-bit integer
ncp.rev_query_flag Revoke Rights Query Flag Unsigned 8-bit integer
ncp.revent Event Unsigned 16-bit integer
ncp.revision Revision Unsigned 32-bit integer
ncp.revision_number Revision Unsigned 8-bit integer
ncp.rights_grant_mask Grant Rights Unsigned 8-bit integer
ncp.rights_grant_mask_create Create Boolean
ncp.rights_grant_mask_del Delete Boolean
ncp.rights_grant_mask_mod Modify Boolean
ncp.rights_grant_mask_open Open Boolean
ncp.rights_grant_mask_parent Parental Boolean
ncp.rights_grant_mask_read Read Boolean
ncp.rights_grant_mask_search Search Boolean
ncp.rights_grant_mask_write Write Boolean
ncp.rights_revoke_mask Revoke Rights Unsigned 8-bit integer
ncp.rights_revoke_mask_create Create Boolean
ncp.rights_revoke_mask_del Delete Boolean
ncp.rights_revoke_mask_mod Modify Boolean
ncp.rights_revoke_mask_open Open Boolean
ncp.rights_revoke_mask_parent Parental Boolean
ncp.rights_revoke_mask_read Read Boolean
ncp.rights_revoke_mask_search Search Boolean
ncp.rights_revoke_mask_write Write Boolean
ncp.rip_socket_num RIP Socket Number Unsigned 16-bit integer
ncp.rnum Replica Number Unsigned 16-bit integer
ncp.route_hops Hop Count Unsigned 16-bit integer
ncp.route_time Route Time Unsigned 16-bit integer
ncp.router_dn_flag Router Down Flag Boolean
ncp.rpc_c_code RPC Completion Code Unsigned 16-bit integer
ncp.rpy_nearest_srv_flag Reply to Nearest Server Flag Boolean
ncp.rstate Replica State String
ncp.rtype Replica Type String
ncp.rx_buffer_size Receive Buffer Size Unsigned 32-bit integer
ncp.rx_buffers Receive Buffers Unsigned 32-bit integer
ncp.rx_buffers_75 Receive Buffers Warning Level Unsigned 32-bit integer
ncp.rx_buffers_checked_out Receive Buffers Checked Out Count Unsigned 32-bit integer
ncp.s_day Day Unsigned 8-bit integer
ncp.s_day_of_week Day of Week Unsigned 8-bit integer
ncp.s_hour Hour Unsigned 8-bit integer
ncp.s_m_info Storage Media Information Unsigned 8-bit integer
ncp.s_minute Minutes Unsigned 8-bit integer
ncp.s_module_name Storage Module Name String
ncp.s_month Month Unsigned 8-bit integer
ncp.s_offset_64bit 64bit Starting Offset Byte array
ncp.s_second Seconds Unsigned 8-bit integer
ncp.salvageable_file_entry_number Salvageable File Entry Number Unsigned 32-bit integer
ncp.sap_socket_number SAP Socket Number Unsigned 16-bit integer
ncp.sattr Search Attributes Unsigned 8-bit integer
ncp.sattr_archive Archive Boolean
ncp.sattr_execute_confirm Execute Confirm Boolean
ncp.sattr_exonly Execute-Only Files Allowed Boolean
ncp.sattr_hid Hidden Files Allowed Boolean
ncp.sattr_ronly Read-Only Files Allowed Boolean
ncp.sattr_shareable Shareable Boolean
ncp.sattr_sub Subdirectories Only Boolean
ncp.sattr_sys System Files Allowed Boolean
ncp.saved_an_out_of_order_packet Saved An Out Of Order Packet Count Unsigned 32-bit integer
ncp.scan_items Number of Items returned from Scan Unsigned 32-bit integer
ncp.search_att_archive Archive Boolean
ncp.search_att_execute_confirm Execute Confirm Boolean
ncp.search_att_execute_only Execute-Only Boolean
ncp.search_att_hidden Hidden Files Allowed Boolean
ncp.search_att_low Search Attributes Unsigned 16-bit integer
ncp.search_att_read_only Read-Only Boolean
ncp.search_att_shareable Shareable Boolean
ncp.search_att_sub Subdirectories Only Boolean
ncp.search_att_system System Boolean
ncp.search_attr_all_files All Files and Directories Boolean
ncp.search_bit_map Search Bit Map Unsigned 8-bit integer
ncp.search_bit_map_files Files Boolean
ncp.search_bit_map_hidden Hidden Boolean
ncp.search_bit_map_sub Subdirectory Boolean
ncp.search_bit_map_sys System Boolean
ncp.search_conn_number Search Connection Number Unsigned 32-bit integer
ncp.search_instance Search Instance Unsigned 32-bit integer
ncp.search_number Search Number Unsigned 32-bit integer
ncp.search_pattern Search Pattern String
ncp.search_sequence Search Sequence Byte array
ncp.search_sequence_word Search Sequence Unsigned 16-bit integer
ncp.sec_rel_to_y2k Seconds Relative to the Year 2000 Unsigned 32-bit integer
ncp.sector_size Sector Size Unsigned 32-bit integer
ncp.sectors_per_block Sectors Per Block Unsigned 8-bit integer
ncp.sectors_per_cluster Sectors Per Cluster Unsigned 16-bit integer
ncp.sectors_per_cluster_long Sectors Per Cluster Unsigned 32-bit integer
ncp.sectors_per_track Sectors Per Track Unsigned 8-bit integer
ncp.security_equiv_list Security Equivalent List String
ncp.security_flag Security Flag Unsigned 8-bit integer
ncp.security_restriction_version Security Restriction Version Unsigned 8-bit integer
ncp.semaphore_handle Semaphore Handle Unsigned 32-bit integer
ncp.semaphore_name Semaphore Name String
ncp.semaphore_name_len Semaphore Name Len Unsigned 8-bit integer
ncp.semaphore_open_count Semaphore Open Count Unsigned 8-bit integer
ncp.semaphore_share_count Semaphore Share Count Unsigned 8-bit integer
ncp.semaphore_time_out Semaphore Time Out Unsigned 16-bit integer
ncp.semaphore_value Semaphore Value Unsigned 16-bit integer
ncp.send_hold_off_message Send Hold Off Message Count Unsigned 32-bit integer
ncp.send_status Send Status Unsigned 8-bit integer
ncp.sent_a_dup_reply Sent A Duplicate Reply Count Unsigned 32-bit integer
ncp.sent_pos_ack Sent Positive Acknowledge Count Unsigned 32-bit integer
ncp.seq Sequence Number Unsigned 8-bit integer
ncp.sequence_byte Sequence Unsigned 8-bit integer
ncp.sequence_number Sequence Number Unsigned 32-bit integer
ncp.server_address Server Address Byte array
ncp.server_app_num Server App Number Unsigned 16-bit integer
ncp.server_id_number Server ID Unsigned 32-bit integer
ncp.server_info_flags Server Information Flags Unsigned 16-bit integer
ncp.server_list_flags Server List Flags Unsigned 32-bit integer
ncp.server_name Server Name String
ncp.server_name_len Server Name String
ncp.server_name_stringz Server Name String
ncp.server_network_address Server Network Address Byte array
ncp.server_node Server Node Byte array
ncp.server_serial_number Server Serial Number Unsigned 32-bit integer
ncp.server_station Server Station Unsigned 8-bit integer
ncp.server_station_list Server Station List Unsigned 8-bit integer
ncp.server_station_long Server Station Unsigned 32-bit integer
ncp.server_status_record Server Status Record String
ncp.server_task_number Server Task Number Unsigned 8-bit integer
ncp.server_task_number_long Server Task Number Unsigned 32-bit integer
ncp.server_type Server Type Unsigned 16-bit integer
ncp.server_utilization Server Utilization Unsigned 32-bit integer
ncp.server_utilization_percentage Server Utilization Percentage Unsigned 8-bit integer
ncp.set_cmd_category Set Command Category Unsigned 8-bit integer
ncp.set_cmd_flags Set Command Flags Unsigned 8-bit integer
ncp.set_cmd_name Set Command Name String
ncp.set_cmd_type Set Command Type Unsigned 8-bit integer
ncp.set_cmd_value_num Set Command Value Unsigned 32-bit integer
ncp.set_parm_name Set Parameter Name String
ncp.sft_error_table SFT Error Table Byte array
ncp.sft_support_level SFT Support Level Unsigned 8-bit integer
ncp.shareable_lock_count Shareable Lock Count Unsigned 16-bit integer
ncp.shared_memory_addresses Shared Memory Addresses Byte array
ncp.short_name Short Name String
ncp.short_stack_name Short Stack Name String
ncp.shouldnt_be_ack_here Shouldn't Be ACKing Here Count Unsigned 32-bit integer
ncp.sibling_count Sibling Count Unsigned 32-bit integer
ncp.signature Signature Boolean
ncp.slot Slot Unsigned 8-bit integer
ncp.sm_info_size Storage Module Information Size Unsigned 32-bit integer
ncp.smids Storage Media ID's Unsigned 32-bit integer
ncp.software_description Software Description String
ncp.software_driver_type Software Driver Type Unsigned 8-bit integer
ncp.software_major_version_number Software Major Version Number Unsigned 8-bit integer
ncp.software_minor_version_number Software Minor Version Number Unsigned 8-bit integer
ncp.someone_else_did_it_0 Someone Else Did It Count 0 Unsigned 32-bit integer
ncp.someone_else_did_it_1 Someone Else Did It Count 1 Unsigned 32-bit integer
ncp.someone_else_did_it_2 Someone Else Did It Count 2 Unsigned 32-bit integer
ncp.someone_else_using_this_file Someone Else Using This File Count Unsigned 32-bit integer
ncp.source_component_count Source Path Component Count Unsigned 8-bit integer
ncp.source_dir_handle Source Directory Handle Unsigned 8-bit integer
ncp.source_originate_time Source Originate Time Byte array
ncp.source_path Source Path String
ncp.source_return_time Source Return Time Byte array
ncp.space_migrated Space Migrated Unsigned 32-bit integer
ncp.space_restriction_node_count Space Restriction Node Count Unsigned 32-bit integer
ncp.space_used Space Used Unsigned 32-bit integer
ncp.spx_abort_conn SPX Aborted Connection Unsigned 16-bit integer
ncp.spx_bad_in_pkt SPX Bad In Packet Count Unsigned 16-bit integer
ncp.spx_bad_listen SPX Bad Listen Count Unsigned 16-bit integer
ncp.spx_bad_send SPX Bad Send Count Unsigned 16-bit integer
ncp.spx_est_conn_fail SPX Establish Connection Fail Unsigned 16-bit integer
ncp.spx_est_conn_req SPX Establish Connection Requests Unsigned 16-bit integer
ncp.spx_incoming_pkt SPX Incoming Packet Count Unsigned 32-bit integer
ncp.spx_listen_con_fail SPX Listen Connect Fail Unsigned 16-bit integer
ncp.spx_listen_con_req SPX Listen Connect Request Unsigned 16-bit integer
ncp.spx_listen_pkt SPX Listen Packet Count Unsigned 32-bit integer
ncp.spx_max_conn SPX Max Connections Count Unsigned 16-bit integer
ncp.spx_max_used_conn SPX Max Used Connections Unsigned 16-bit integer
ncp.spx_no_ses_listen SPX No Session Listen ECB Count Unsigned 16-bit integer
ncp.spx_send SPX Send Count Unsigned 32-bit integer
ncp.spx_send_fail SPX Send Fail Count Unsigned 16-bit integer
ncp.spx_supp_pkt SPX Suppressed Packet Count Unsigned 16-bit integer
ncp.spx_watch_dog SPX Watch Dog Destination Session Count Unsigned 16-bit integer
ncp.spx_window_choke SPX Window Choke Count Unsigned 32-bit integer
ncp.src_connection Source Connection ID Unsigned 32-bit integer The workstation's connection identification number
ncp.src_name_space Source Name Space Unsigned 8-bit integer
ncp.stack_count Stack Count Unsigned 32-bit integer
ncp.stack_full_name_str Stack Full Name String
ncp.stack_major_vn Stack Major Version Number Unsigned 8-bit integer
ncp.stack_minor_vn Stack Minor Version Number Unsigned 8-bit integer
ncp.stack_number Stack Number Unsigned 32-bit integer
ncp.stack_short_name Stack Short Name String
ncp.start_conn_num Starting Connection Number Unsigned 32-bit integer
ncp.start_number Start Number Unsigned 32-bit integer
ncp.start_number_flag Start Number Flag Unsigned 16-bit integer
ncp.start_search_number Start Search Number Unsigned 16-bit integer
ncp.start_station_error Start Station Error Count Unsigned 32-bit integer
ncp.start_volume_number Starting Volume Number Unsigned 32-bit integer
ncp.starting_block Starting Block Unsigned 16-bit integer
ncp.starting_number Starting Number Unsigned 32-bit integer
ncp.stat_major_version Statistics Table Major Version Unsigned 8-bit integer
ncp.stat_minor_version Statistics Table Minor Version Unsigned 8-bit integer
ncp.stat_table_major_version Statistics Table Major Version Unsigned 8-bit integer
ncp.stat_table_minor_version Statistics Table Minor Version Unsigned 8-bit integer
ncp.station_list Station List Unsigned 32-bit integer
ncp.station_number Station Number Byte array
ncp.status Status Unsigned 16-bit integer
ncp.status_flag_bits Status Flag Unsigned 32-bit integer
ncp.status_flag_bits_audit Audit Boolean
ncp.status_flag_bits_comp Compression Boolean
ncp.status_flag_bits_im_purge Immediate Purge Boolean
ncp.status_flag_bits_migrate Migration Boolean
ncp.status_flag_bits_nss NSS Volume Boolean
ncp.status_flag_bits_ro Read Only Boolean
ncp.status_flag_bits_suballoc Sub Allocation Boolean
ncp.still_doing_the_last_req Still Doing The Last Request Count Unsigned 32-bit integer
ncp.still_transmitting Still Transmitting Count Unsigned 32-bit integer
ncp.stream_type Stream Type Unsigned 8-bit integer Type of burst
ncp.sub_alloc_clusters Sub Alloc Clusters Unsigned 32-bit integer
ncp.sub_alloc_freeable_clusters Sub Alloc Freeable Clusters Unsigned 32-bit integer
ncp.sub_count Subordinate Count Unsigned 32-bit integer
ncp.sub_directory Subdirectory Unsigned 32-bit integer
ncp.subfunc SubFunction Unsigned 8-bit integer
ncp.suggested_file_size Suggested File Size Unsigned 32-bit integer
ncp.support_module_id Support Module ID Unsigned 32-bit integer
ncp.synch_name Synch Name String
ncp.system_flags System Flags Unsigned 8-bit integer
ncp.system_flags.abt ABT Boolean Is this an abort request?
ncp.system_flags.bsy BSY Boolean Is the server busy?
ncp.system_flags.eob EOB Boolean Is this the last packet of the burst?
ncp.system_flags.lst LST Boolean Return Fragment List?
ncp.system_flags.sys SYS Boolean Is this a system packet?
ncp.system_interval_marker System Interval Marker Unsigned 32-bit integer
ncp.tab_size Tab Size Unsigned 8-bit integer
ncp.target_client_list Target Client List Unsigned 8-bit integer
ncp.target_connection_number Target Connection Number Unsigned 16-bit integer
ncp.target_dir_handle Target Directory Handle Unsigned 8-bit integer
ncp.target_entry_id Target Entry ID Unsigned 32-bit integer
ncp.target_execution_time Target Execution Time Byte array
ncp.target_file_handle Target File Handle Byte array
ncp.target_file_offset Target File Offset Unsigned 32-bit integer
ncp.target_message Message String
ncp.target_ptr Target Printer Unsigned 8-bit integer
ncp.target_receive_time Target Receive Time Byte array
ncp.target_server_id_number Target Server ID Number Unsigned 32-bit integer
ncp.target_transmit_time Target Transmit Time Byte array
ncp.task Task Number Unsigned 8-bit integer
ncp.task_num_byte Task Number Unsigned 8-bit integer
ncp.task_number_word Task Number Unsigned 16-bit integer
ncp.tcpref Address Referral IPv4 address
ncp.text_job_description Text Job Description String
ncp.thrashing_count Thrashing Count Unsigned 16-bit integer
ncp.time Time from Request Time duration Time between request and response in seconds
ncp.time_to_net Time To Net Unsigned 16-bit integer
ncp.timeout_limit Timeout Limit Unsigned 16-bit integer
ncp.timesync_status_active Time Synchronization is Active Boolean
ncp.timesync_status_ext_sync External Clock Status Boolean
ncp.timesync_status_external External Time Synchronization Active Boolean
ncp.timesync_status_flags Timesync Status Unsigned 32-bit integer
ncp.timesync_status_net_sync Time is Synchronized to the Network Boolean
ncp.timesync_status_server_type Time Server Type Unsigned 32-bit integer
ncp.timesync_status_sync Time is Synchronized Boolean
ncp.too_many_ack_frag Too Many ACK Fragments Count Unsigned 32-bit integer
ncp.too_many_hops Too Many Hops Unsigned 16-bit integer
ncp.total_blks_to_dcompress Total Blocks To Decompress Unsigned 32-bit integer
ncp.total_blocks Total Blocks Unsigned 32-bit integer
ncp.total_cache_writes Total Cache Writes Unsigned 32-bit integer
ncp.total_changed_fats Total Changed FAT Entries Unsigned 32-bit integer
ncp.total_cnt_blocks Total Count Blocks Unsigned 32-bit integer
ncp.total_common_cnts Total Common Counts Unsigned 32-bit integer
ncp.total_dir_entries Total Directory Entries Unsigned 32-bit integer
ncp.total_directory_slots Total Directory Slots Unsigned 16-bit integer
ncp.total_extended_directory_extants Total Extended Directory Extants Unsigned 32-bit integer
ncp.total_file_service_packets Total File Service Packets Unsigned 32-bit integer
ncp.total_files_opened Total Files Opened Unsigned 32-bit integer
ncp.total_lfs_counters Total LFS Counters Unsigned 32-bit integer
ncp.total_offspring Total Offspring Unsigned 16-bit integer
ncp.total_other_packets Total Other Packets Unsigned 32-bit integer
ncp.total_queue_jobs Total Queue Jobs Unsigned 32-bit integer
ncp.total_read_requests Total Read Requests Unsigned 32-bit integer
ncp.total_request Total Requests Unsigned 32-bit integer
ncp.total_request_packets Total Request Packets Unsigned 32-bit integer
ncp.total_routed_packets Total Routed Packets Unsigned 32-bit integer
ncp.total_rx_packet_count Total Receive Packet Count Unsigned 32-bit integer
ncp.total_rx_packets Total Receive Packets Unsigned 32-bit integer
ncp.total_rx_pkts Total Receive Packets Unsigned 32-bit integer
ncp.total_server_memory Total Server Memory Unsigned 16-bit integer
ncp.total_stream_size_struct_space_alloc Total Data Stream Disk Space Alloc Unsigned 32-bit integer
ncp.total_trans_backed_out Total Transactions Backed Out Unsigned 32-bit integer
ncp.total_trans_performed Total Transactions Performed Unsigned 32-bit integer
ncp.total_tx_packet_count Total Transmit Packet Count Unsigned 32-bit integer
ncp.total_tx_packets Total Transmit Packets Unsigned 32-bit integer
ncp.total_tx_pkts Total Transmit Packets Unsigned 32-bit integer
ncp.total_unfilled_backout_requests Total Unfilled Backout Requests Unsigned 16-bit integer
ncp.total_volume_clusters Total Volume Clusters Unsigned 16-bit integer
ncp.total_write_requests Total Write Requests Unsigned 32-bit integer
ncp.total_write_trans_performed Total Write Transactions Performed Unsigned 32-bit integer
ncp.track_on_flag Track On Flag Boolean
ncp.transaction_disk_space Transaction Disk Space Unsigned 16-bit integer
ncp.transaction_fat_allocations Transaction FAT Allocations Unsigned 32-bit integer
ncp.transaction_file_size_changes Transaction File Size Changes Unsigned 32-bit integer
ncp.transaction_files_truncated Transaction Files Truncated Unsigned 32-bit integer
ncp.transaction_number Transaction Number Unsigned 32-bit integer
ncp.transaction_tracking_enabled Transaction Tracking Enabled Unsigned 8-bit integer
ncp.transaction_tracking_supported Transaction Tracking Supported Unsigned 8-bit integer
ncp.transaction_volume_number Transaction Volume Number Unsigned 16-bit integer
ncp.transport_addr Transport Address
ncp.transport_type Communications Type Unsigned 8-bit integer
ncp.trustee_id_set Trustee ID Unsigned 32-bit integer
ncp.trustee_list_node_count Trustee List Node Count Unsigned 32-bit integer
ncp.trustee_rights_create Create Boolean
ncp.trustee_rights_del Delete Boolean
ncp.trustee_rights_low Trustee Rights Unsigned 16-bit integer
ncp.trustee_rights_modify Modify Boolean
ncp.trustee_rights_open Open Boolean
ncp.trustee_rights_parent Parental Boolean
ncp.trustee_rights_read Read Boolean
ncp.trustee_rights_search Search Boolean
ncp.trustee_rights_super Supervisor Boolean
ncp.trustee_rights_write Write Boolean
ncp.trustee_set_number Trustee Set Number Unsigned 8-bit integer
ncp.try_to_write_too_much Trying To Write Too Much Count Unsigned 32-bit integer
ncp.ttl_comp_blks Total Compression Blocks Unsigned 32-bit integer
ncp.ttl_ds_disk_space_alloc Total Streams Space Allocated Unsigned 32-bit integer
ncp.ttl_eas Total EA's Unsigned 32-bit integer
ncp.ttl_eas_data_size Total EA's Data Size Unsigned 32-bit integer
ncp.ttl_eas_key_size Total EA's Key Size Unsigned 32-bit integer
ncp.ttl_inter_blks Total Intermediate Blocks Unsigned 32-bit integer
ncp.ttl_migrated_size Total Migrated Size Unsigned 32-bit integer
ncp.ttl_num_of_r_tags Total Number of Resource Tags Unsigned 32-bit integer
ncp.ttl_num_of_set_cmds Total Number of Set Commands Unsigned 32-bit integer
ncp.ttl_pckts_routed Total Packets Routed Unsigned 32-bit integer
ncp.ttl_pckts_srvcd Total Packets Serviced Unsigned 32-bit integer
ncp.ttl_values_length Total Values Length Unsigned 32-bit integer
ncp.ttl_write_data_size Total Write Data Size Unsigned 32-bit integer
ncp.tts_flag Transaction Tracking Flag Unsigned 16-bit integer
ncp.tts_level TTS Level Unsigned 8-bit integer
ncp.turbo_fat_build_failed Turbo FAT Build Failed Count Unsigned 32-bit integer
ncp.turbo_used_for_file_service Turbo Used For File Service Unsigned 16-bit integer
ncp.type Type Unsigned 16-bit integer NCP message type
ncp.udpref Address Referral IPv4 address
ncp.uint32value NDS Value Unsigned 32-bit integer
ncp.un_claimed_packets Unclaimed Packets Unsigned 32-bit integer
ncp.un_compressable_data_streams_count Uncompressable Data Streams Count Unsigned 32-bit integer
ncp.un_used Unused Unsigned 8-bit integer
ncp.un_used_directory_entries Unused Directory Entries Unsigned 32-bit integer
ncp.un_used_extended_directory_extants Unused Extended Directory Extants Unsigned 32-bit integer
ncp.unclaimed_packets Unclaimed Packets Unsigned 32-bit integer
ncp.undefined_28 Undefined Byte array
ncp.undefined_8 Undefined Byte array
ncp.unique_id Unique ID Unsigned 8-bit integer
ncp.unknown_network Unknown Network Unsigned 16-bit integer
ncp.unused_disk_blocks Unused Disk Blocks Unsigned 32-bit integer
ncp.update_date Update Date Unsigned 16-bit integer
ncp.update_id Update ID Unsigned 32-bit integer
ncp.update_time Update Time Unsigned 16-bit integer
ncp.used_blocks Used Blocks Unsigned 32-bit integer
ncp.used_space Used Space Unsigned 32-bit integer
ncp.user_id User ID Unsigned 32-bit integer
ncp.user_info_audit_conn Audit Connection Recorded Boolean
ncp.user_info_audited Audited Boolean
ncp.user_info_being_abort Being Aborted Boolean
ncp.user_info_bindery Bindery Connection Boolean
ncp.user_info_dsaudit_conn DS Audit Connection Recorded Boolean
ncp.user_info_held_req Held Requests Unsigned 32-bit integer
ncp.user_info_int_login Internal Login Boolean
ncp.user_info_logged_in Logged In Boolean
ncp.user_info_logout Logout in Progress Boolean
ncp.user_info_mac_station MAC Station Boolean
ncp.user_info_need_sec Needs Security Change Boolean
ncp.user_info_temp_authen Temporary Authenticated Boolean
ncp.user_info_ttl_bytes_rd Total Bytes Read Byte array
ncp.user_info_ttl_bytes_wrt Total Bytes Written Byte array
ncp.user_info_use_count Use Count Unsigned 16-bit integer
ncp.user_login_allowed Login Status Unsigned 8-bit integer
ncp.user_name User Name String
ncp.user_name_16 User Name String
ncp.uts_time_in_seconds UTC Time in Seconds Unsigned 32-bit integer
ncp.valid_bfrs_reused Valid Buffers Reused Unsigned 32-bit integer
ncp.value_available Value Available Unsigned 8-bit integer
ncp.value_bytes Bytes Byte array
ncp.value_string Value String
ncp.vap_version VAP Version Unsigned 8-bit integer
ncp.variable_bit_mask Variable Bit Mask Unsigned 32-bit integer
ncp.variable_bits_defined Variable Bits Defined Unsigned 16-bit integer
ncp.vconsole_rev Console Revision Unsigned 8-bit integer
ncp.vconsole_ver Console Version Unsigned 8-bit integer
ncp.verb Verb Unsigned 32-bit integer
ncp.verb_data Verb Data Unsigned 8-bit integer
ncp.version Version Unsigned 32-bit integer
ncp.version_number Version Unsigned 8-bit integer
ncp.vert_location Vertical Location Unsigned 16-bit integer
ncp.virtual_console_version Virtual Console Version Unsigned 8-bit integer
ncp.vol_info_reply_len Volume Information Reply Length Unsigned 16-bit integer
ncp.volume_active_count Volume Active Count Unsigned 32-bit integer
ncp.volume_cached_flag Volume Cached Flag Unsigned 8-bit integer
ncp.volume_hashed_flag Volume Hashed Flag Unsigned 8-bit integer
ncp.volume_id Volume ID Unsigned 32-bit integer
ncp.volume_last_modified_date Volume Last Modified Date Unsigned 16-bit integer
ncp.volume_last_modified_time Volume Last Modified Time Unsigned 16-bit integer
ncp.volume_mounted_flag Volume Mounted Flag Unsigned 8-bit integer
ncp.volume_name Volume Name String
ncp.volume_name_len Volume Name String
ncp.volume_name_stringz Volume Name String
ncp.volume_number Volume Number Unsigned 8-bit integer
ncp.volume_number_long Volume Number Unsigned 32-bit integer
ncp.volume_reference_count Volume Reference Count Unsigned 32-bit integer
ncp.volume_removable_flag Volume Removable Flag Unsigned 8-bit integer
ncp.volume_request_flags Volume Request Flags Unsigned 16-bit integer
ncp.volume_segment_dev_num Volume Segment Device Number Unsigned 32-bit integer
ncp.volume_segment_offset Volume Segment Offset Unsigned 32-bit integer
ncp.volume_segment_size Volume Segment Size Unsigned 32-bit integer
ncp.volume_size_in_clusters Volume Size in Clusters Unsigned 32-bit integer
ncp.volume_type Volume Type Unsigned 16-bit integer
ncp.volume_use_count Volume Use Count Unsigned 32-bit integer
ncp.volumes_supported_max Volumes Supported Max Unsigned 16-bit integer
ncp.wait_node Wait Node Count Unsigned 32-bit integer
ncp.wait_node_alloc_fail Wait Node Alloc Failure Count Unsigned 32-bit integer
ncp.wait_on_sema Wait On Semaphore Count Unsigned 32-bit integer
ncp.wait_till_dirty_blcks_dec Wait Till Dirty Blocks Decrease Count Unsigned 32-bit integer
ncp.wait_time Wait Time Unsigned 32-bit integer
ncp.wasted_server_memory Wasted Server Memory Unsigned 16-bit integer
ncp.write_curr_trans Write Currently Transmitting Count Unsigned 32-bit integer
ncp.write_didnt_need_but_req_ack Write Didn't Need But Requested ACK Count Unsigned 32-bit integer
ncp.write_didnt_need_this_frag Write Didn't Need This Fragment Count Unsigned 32-bit integer
ncp.write_dup_req Write Duplicate Request Count Unsigned 32-bit integer
ncp.write_err Write Error Count Unsigned 32-bit integer
ncp.write_got_an_ack0 Write Got An ACK Count 0 Unsigned 32-bit integer
ncp.write_got_an_ack1 Write Got An ACK Count 1 Unsigned 32-bit integer
ncp.write_held_off Write Held Off Count Unsigned 32-bit integer
ncp.write_held_off_with_dup Write Held Off With Duplicate Request Unsigned 32-bit integer
ncp.write_incon_packet_len Write Inconsistent Packet Lengths Count Unsigned 32-bit integer
ncp.write_out_of_mem_for_ctl_nodes Write Out Of Memory For Control Nodes Count Unsigned 32-bit integer
ncp.write_timeout Write Time Out Count Unsigned 32-bit integer
ncp.write_too_many_buf_check Write Too Many Buffers Checked Out Count Unsigned 32-bit integer
ncp.write_trash_dup_req Write Trashed Duplicate Request Count Unsigned 32-bit integer
ncp.write_trash_packet Write Trashed Packet Count Unsigned 32-bit integer
ncp.wrt_blck_cnt Write Block Count Unsigned 32-bit integer
ncp.wrt_entire_blck Write Entire Block Count Unsigned 32-bit integer
ncp.year Year Unsigned 8-bit integer
ncp.zero_ack_frag Zero ACK Fragment Count Unsigned 32-bit integer
nds.fragment NDS Fragment Frame number NDPS Fragment
nds.fragments NDS Fragments No value NDPS Fragments
nds.segment.error Desegmentation error Frame number Desegmentation error due to illegal segments
nds.segment.multipletails Multiple tail segments found Boolean Several tails were found when desegmenting the packet
nds.segment.overlap Segment overlap Boolean Segment overlaps with other segments
nds.segment.overlap.conflict Conflicting data in segment overlap Boolean Overlapping segments contained conflicting data
nds.segment.toolongsegment Segment too long Boolean Segment contained data past end of packet
nlsp.header_length PDU Header Length Unsigned 8-bit integer
nlsp.hello.circuit_type Circuit Type Unsigned 8-bit integer
nlsp.hello.holding_timer Holding Timer Unsigned 8-bit integer
nlsp.hello.multicast Multicast Routing Boolean If set, this router supports multicast routing
nlsp.hello.priority Priority Unsigned 8-bit integer
nlsp.hello.state State Unsigned 8-bit integer
nlsp.irpd NetWare Link Services Protocol Discriminator Unsigned 8-bit integer
nlsp.lsp.attached_flag Attached Flag Unsigned 8-bit integer
nlsp.lsp.checksum Checksum Unsigned 16-bit integer
nlsp.lsp.lspdbol LSP Database Overloaded Boolean
nlsp.lsp.partition_repair Partition Repair Boolean If set, this router supports the optional Partition Repair function
nlsp.lsp.router_type Router Type Unsigned 8-bit integer
nlsp.major_version Major Version Unsigned 8-bit integer
nlsp.minor_version Minor Version Unsigned 8-bit integer
nlsp.nr Multi-homed Non-routing Server Boolean
nlsp.packet_length Packet Length Unsigned 16-bit integer
nlsp.sequence_number Sequence Number Unsigned 32-bit integer
nlsp.type Packet Type Unsigned 8-bit integer
ndmp.addr.ip IP Address IPv4 address IP Address
ndmp.addr.ipc IPC Byte array IPC identifier
ndmp.addr.loop_id Loop ID Unsigned 32-bit integer FCAL Loop ID
ndmp.addr.tcp_port TCP Port Unsigned 32-bit integer TCP Port
ndmp.addr_type Addr Type Unsigned 32-bit integer Address Type
ndmp.addr_types Addr Types No value List Of Address Types
ndmp.auth.challenge Challenge Byte array Authentication Challenge
ndmp.auth.digest Digest Byte array Authentication Digest
ndmp.auth.id ID String ID of client authenticating
ndmp.auth.password Password String Password of client authenticating
ndmp.auth.types Auth types No value Auth types
ndmp.auth_type Auth Type Unsigned 32-bit integer Authentication Type
ndmp.bu.destination_dir Destination Dir String Destination directory to restore backup to
ndmp.bu.new_name New Name String New Name
ndmp.bu.operation Operation Unsigned 32-bit integer BU Operation
ndmp.bu.original_path Original Path String Original path where backup was created
ndmp.bu.other_name Other Name String Other Name
ndmp.butype.default_env Default Env No value Default Env's for this Butype Info
ndmp.butype.env.name Name String Name for this env-variable
ndmp.butype.env.value Value String Value for this env-variable
ndmp.butype.info Butype Info No value Butype Info
ndmp.butype.name Butype Name String Name of Butype
ndmp.bytes_left_to_read Bytes left to read Unsigned 64-bit integer Number of bytes left to be read from the device
ndmp.connected Connected Unsigned 32-bit integer Status of connection
ndmp.connected.reason Reason String Textual description of the connection status
ndmp.count Count Unsigned 32-bit integer Number of bytes/objects/operations
ndmp.data Data Byte array Data written/read
ndmp.data.bytes_processed Bytes Processed Unsigned 64-bit integer Number of bytes processed
ndmp.data.est_bytes_remain Est Bytes Remain Unsigned 64-bit integer Estimated number of bytes remaining
ndmp.data.est_time_remain Est Time Remain Time duration Estimated time remaining
ndmp.data.halted Halted Reason Unsigned 32-bit integer Data halted reason
ndmp.data.state State Unsigned 32-bit integer Data state
ndmp.data.written Data Written Unsigned 64-bit integer Number of data bytes written
ndmp.dirs Dirs No value List of directories
ndmp.error Error Unsigned 32-bit integer Error code for this NDMP PDU
ndmp.execute_cdb.cdb_len CDB length Unsigned 32-bit integer Length of CDB
ndmp.execute_cdb.datain Data in Byte array Data transferred from the SCSI device
ndmp.execute_cdb.datain_len Data in length Unsigned 32-bit integer Expected length of data bytes to read
ndmp.execute_cdb.dataout Data out Byte array Data to be transferred to the SCSI device
ndmp.execute_cdb.dataout_len Data out length Unsigned 32-bit integer Number of bytes transferred to the device
ndmp.execute_cdb.flags.data_in DATA_IN Boolean DATA_IN
ndmp.execute_cdb.flags.data_out DATA_OUT Boolean DATA_OUT
ndmp.execute_cdb.sns_len Sense data length Unsigned 32-bit integer Length of sense data
ndmp.execute_cdb.status Status Unsigned 8-bit integer SCSI status
ndmp.execute_cdb.timeout Timeout Unsigned 32-bit integer Reselect timeout, in milliseconds
ndmp.file File String Name of File
ndmp.file.atime atime Date/Time stamp Timestamp for atime for this file
ndmp.file.ctime ctime Date/Time stamp Timestamp for ctime for this file
ndmp.file.fattr Fattr Unsigned 32-bit integer Mode for UNIX, fattr for NT
ndmp.file.fh_info FH Info Unsigned 64-bit integer FH Info used for direct access
ndmp.file.fs_type File FS Type Unsigned 32-bit integer Type of file permissions (UNIX or NT)
ndmp.file.group Group Unsigned 32-bit integer GID for UNIX, NA for NT
ndmp.file.links Links Unsigned 32-bit integer Number of links to this file
ndmp.file.mtime mtime Date/Time stamp Timestamp for mtime for this file
ndmp.file.names File Names No value List of file names
ndmp.file.node Node Unsigned 64-bit integer Node used for direct access
ndmp.file.owner Owner Unsigned 32-bit integer UID for UNIX, owner for NT
ndmp.file.parent Parent Unsigned 64-bit integer Parent node(directory) for this node
ndmp.file.size Size Unsigned 64-bit integer File Size
ndmp.file.stats File Stats No value List of file stats
ndmp.file.type File Type Unsigned 32-bit integer Type of file
ndmp.files Files No value List of files
ndmp.fraglen Fragment Length Unsigned 32-bit integer Fragment Length
ndmp.fs.avail_size Avail Size Unsigned 64-bit integer Total available size on FS
ndmp.fs.env Env variables No value Environment variables for FS
ndmp.fs.env.name Name String Name for this env-variable
ndmp.fs.env.value Value String Value for this env-variable
ndmp.fs.info FS Info No value FS Info
ndmp.fs.logical_device Logical Device String Name of logical device
ndmp.fs.physical_device Physical Device String Name of physical device
ndmp.fs.status Status String Status for this FS
ndmp.fs.total_inodes Total Inodes Unsigned 64-bit integer Total number of inodes on FS
ndmp.fs.total_size Total Size Unsigned 64-bit integer Total size of FS
ndmp.fs.type Type String Type of FS
ndmp.fs.used_inodes Used Inodes Unsigned 64-bit integer Number of used inodes on FS
ndmp.fs.used_size Used Size Unsigned 64-bit integer Total used size of FS
ndmp.halt Halt Unsigned 32-bit integer Reason why it halted
ndmp.halt.reason Reason String Textual reason for why it halted
ndmp.header NDMP Header No value NDMP Header
ndmp.hostid HostID String HostID
ndmp.hostname Hostname String Hostname
ndmp.lastfrag Last Fragment Boolean Last Fragment
ndmp.log.message Message String Log entry
ndmp.log.message.id Message ID Unsigned 32-bit integer ID of this log entry
ndmp.log.type Type Unsigned 32-bit integer Type of log entry
ndmp.mover.mode Mode Unsigned 32-bit integer Mover Mode
ndmp.mover.pause Pause Unsigned 32-bit integer Reason why the mover paused
ndmp.mover.state State Unsigned 32-bit integer State of the selected mover
ndmp.msg Message Unsigned 32-bit integer Type of NDMP PDU
ndmp.msg_type Type Unsigned 32-bit integer Is this a Request or Response?
ndmp.nlist Nlist No value List of names
ndmp.nodes Nodes No value List of nodes
ndmp.os.type OS Type String OS Type
ndmp.os.version OS Version String OS Version
ndmp.record.num Record Num Unsigned 32-bit integer Number of records
ndmp.record.size Record Size Unsigned 32-bit integer Record size in bytes
ndmp.reply_sequence Reply Sequence Unsigned 32-bit integer Reply Sequence number for NDMP PDU
ndmp.resid_count Resid Count Unsigned 32-bit integer Number of remaining bytes/objects/operations
ndmp.scsi.controller Controller Unsigned 32-bit integer Target Controller
ndmp.scsi.device Device String Name of SCSI Device
ndmp.scsi.id ID Unsigned 32-bit integer Target ID
ndmp.scsi.info SCSI Info No value SCSI Info
ndmp.scsi.lun LUN Unsigned 32-bit integer Target LUN
ndmp.scsi.model Model String Model of the SCSI device
ndmp.seek.position Seek Position Unsigned 64-bit integer Current seek position on device
ndmp.sequence Sequence Unsigned 32-bit integer Sequence number for NDMP PDU
ndmp.server.product Product String Name of product
ndmp.server.revision Revision String Revision of this product
ndmp.server.vendor Vendor String Name of vendor
ndmp.tape.cap.name Name String Name for this env-variable
ndmp.tape.cap.value Value String Value for this env-variable
ndmp.tape.capability Tape Capabilities No value Tape Capabilities
ndmp.tape.dev_cap Device Capability No value Tape Device Capability
ndmp.tape.device Device String Name of TAPE Device
ndmp.tape.info Tape Info No value Tape Info
ndmp.tape.model Model String Model of the TAPE drive
ndmp.tape.mtio.op Operation Unsigned 32-bit integer MTIO Operation
ndmp.tape.open_mode Mode Unsigned 32-bit integer Mode to open tape in
ndmp.tape.status.block_no block_no Unsigned 32-bit integer block_no
ndmp.tape.status.block_size block_size Unsigned 32-bit integer block_size
ndmp.tape.status.file_num file_num Unsigned 32-bit integer file_num
ndmp.tape.status.partition partition Unsigned 32-bit integer partition
ndmp.tape.status.soft_errors soft_errors Unsigned 32-bit integer soft_errors
ndmp.tape.status.space_remain space_remain Unsigned 64-bit integer space_remain
ndmp.tape.status.total_space total_space Unsigned 64-bit integer total_space
ndmp.timestamp Time Date/Time stamp Timestamp for this NDMP PDU
ndmp.version Version Unsigned 32-bit integer Version of NDMP protocol
ndmp.window.length Window Length Unsigned 64-bit integer Size of window in bytes
ndmp.window.offset Window Offset Unsigned 64-bit integer Offset to window in bytes
nfs.ace ace String Access Control Entry
nfs.aceflag4 aceflag Unsigned 32-bit integer nfs.aceflag4
nfs.acemask4 acemask Unsigned 32-bit integer nfs.acemask4
nfs.acetype4 acetype Unsigned 32-bit integer nfs.acetype4
nfs.acl ACL No value Access Control List
nfs.atime atime Date/Time stamp Access Time
nfs.atime.nsec nano seconds Unsigned 32-bit integer Access Time, Nano-seconds
nfs.atime.sec seconds Unsigned 32-bit integer Access Time, Seconds
nfs.atime.usec micro seconds Unsigned 32-bit integer Access Time, Micro-seconds
nfs.attr mand_attr Unsigned 32-bit integer Mandatory Attribute
nfs.bytes_per_block bytes_per_block Unsigned 32-bit integer nfs.bytes_per_block
nfs.call.operation Opcode Unsigned 32-bit integer Opcode
nfs.callback.ident callback_ident Unsigned 32-bit integer Callback Identifier
nfs.cb_location cb_location Unsigned 32-bit integer nfs.cb_location
nfs.cb_program cb_program Unsigned 32-bit integer nfs.cb_program
nfs.change_info.atomic Atomic Boolean Atomic
nfs.changeid4 changeid Unsigned 64-bit integer nfs.changeid4
nfs.changeid4.after changeid (after) Unsigned 64-bit integer nfs.changeid4.after
nfs.changeid4.before changeid (before) Unsigned 64-bit integer nfs.changeid4.before
nfs.clientid clientid Unsigned 64-bit integer Client ID
nfs.cookie3 cookie Unsigned 64-bit integer nfs.cookie3
nfs.cookie4 cookie Unsigned 64-bit integer nfs.cookie4
nfs.cookieverf4 cookieverf Unsigned 64-bit integer nfs.cookieverf4
nfs.count3 count Unsigned 32-bit integer nfs.count3
nfs.count3_dircount dircount Unsigned 32-bit integer nfs.count3_dircount
nfs.count3_maxcount maxcount Unsigned 32-bit integer nfs.count3_maxcount
nfs.count4 count Unsigned 32-bit integer nfs.count4
nfs.createmode Create Mode Unsigned 32-bit integer Create Mode
nfs.ctime ctime Date/Time stamp Creation Time
nfs.ctime.nsec nano seconds Unsigned 32-bit integer Creation Time, Nano-seconds
nfs.ctime.sec seconds Unsigned 32-bit integer Creation Time, Seconds
nfs.ctime.usec micro seconds Unsigned 32-bit integer Creation Time, Micro-seconds
nfs.data Data Byte array Data
nfs.delegate_stateid delegate_stateid Unsigned 64-bit integer nfs.delegate_stateid
nfs.delegate_type delegate_type Unsigned 32-bit integer nfs.delegate_type
nfs.dircount dircount Unsigned 32-bit integer nfs.dircount
nfs.dirlist4.eof eof Boolean nfs.dirlist4.eof
nfs.dtime time delta Time duration Time Delta
nfs.dtime.nsec nano seconds Unsigned 32-bit integer Time Delta, Nano-seconds
nfs.dtime.sec seconds Unsigned 32-bit integer Time Delta, Seconds
nfs.eof eof Unsigned 32-bit integer nfs.eof
nfs.fattr.blocks blocks Unsigned 32-bit integer nfs.fattr.blocks
nfs.fattr.blocksize blocksize Unsigned 32-bit integer nfs.fattr.blocksize
nfs.fattr.fileid fileid Unsigned 32-bit integer nfs.fattr.fileid
nfs.fattr.fsid fsid Unsigned 32-bit integer nfs.fattr.fsid
nfs.fattr.gid gid Unsigned 32-bit integer nfs.fattr.gid
nfs.fattr.nlink nlink Unsigned 32-bit integer nfs.fattr.nlink
nfs.fattr.rdev rdev Unsigned 32-bit integer nfs.fattr.rdev
nfs.fattr.size size Unsigned 32-bit integer nfs.fattr.size
nfs.fattr.type type Unsigned 32-bit integer nfs.fattr.type
nfs.fattr.uid uid Unsigned 32-bit integer nfs.fattr.uid
nfs.fattr3.fileid fileid Unsigned 64-bit integer nfs.fattr3.fileid
nfs.fattr3.fsid fsid Unsigned 64-bit integer nfs.fattr3.fsid
nfs.fattr3.gid gid Unsigned 32-bit integer nfs.fattr3.gid
nfs.fattr3.nlink nlink Unsigned 32-bit integer nfs.fattr3.nlink
nfs.fattr3.rdev rdev Unsigned 32-bit integer nfs.fattr3.rdev
nfs.fattr3.size size Unsigned 64-bit integer nfs.fattr3.size
nfs.fattr3.type Type Unsigned 32-bit integer nfs.fattr3.type
nfs.fattr3.uid uid Unsigned 32-bit integer nfs.fattr3.uid
nfs.fattr3.used used Unsigned 64-bit integer nfs.fattr3.used
nfs.fattr4.aclsupport aclsupport Unsigned 32-bit integer nfs.fattr4.aclsupport
nfs.fattr4.attr_vals attr_vals Byte array attr_vals
nfs.fattr4.fileid fileid Unsigned 64-bit integer nfs.fattr4.fileid
nfs.fattr4.files_avail files_avail Unsigned 64-bit integer nfs.fattr4.files_avail
nfs.fattr4.files_free files_free Unsigned 64-bit integer nfs.fattr4.files_free
nfs.fattr4.files_total files_total Unsigned 64-bit integer nfs.fattr4.files_total
nfs.fattr4.lease_time lease_time Unsigned 32-bit integer nfs.fattr4.lease_time
nfs.fattr4.maxfilesize maxfilesize Unsigned 64-bit integer nfs.fattr4.maxfilesize
nfs.fattr4.maxlink maxlink Unsigned 32-bit integer nfs.fattr4.maxlink
nfs.fattr4.maxname maxname Unsigned 32-bit integer nfs.fattr4.maxname
nfs.fattr4.maxread maxread Unsigned 64-bit integer nfs.fattr4.maxread
nfs.fattr4.maxwrite maxwrite Unsigned 64-bit integer nfs.fattr4.maxwrite
nfs.fattr4.numlinks numlinks Unsigned 32-bit integer nfs.fattr4.numlinks
nfs.fattr4.quota_hard quota_hard Unsigned 64-bit integer nfs.fattr4.quota_hard
nfs.fattr4.quota_soft quota_soft Unsigned 64-bit integer nfs.fattr4.quota_soft
nfs.fattr4.quota_used quota_used Unsigned 64-bit integer nfs.fattr4.quota_used
nfs.fattr4.size size Unsigned 64-bit integer nfs.fattr4.size
nfs.fattr4.space_avail space_avail Unsigned 64-bit integer nfs.fattr4.space_avail
nfs.fattr4.space_free space_free Unsigned 64-bit integer nfs.fattr4.space_free
nfs.fattr4.space_total space_total Unsigned 64-bit integer nfs.fattr4.space_total
nfs.fattr4.space_used space_used Unsigned 64-bit integer nfs.fattr4.space_used
nfs.fattr4_archive fattr4_archive Boolean nfs.fattr4_archive
nfs.fattr4_cansettime fattr4_cansettime Boolean nfs.fattr4_cansettime
nfs.fattr4_case_insensitive fattr4_case_insensitive Boolean nfs.fattr4_case_insensitive
nfs.fattr4_case_preserving fattr4_case_preserving Boolean nfs.fattr4_case_preserving
nfs.fattr4_chown_restricted fattr4_chown_restricted Boolean nfs.fattr4_chown_restricted
nfs.fattr4_hidden fattr4_hidden Boolean nfs.fattr4_hidden
nfs.fattr4_homogeneous fattr4_homogeneous Boolean nfs.fattr4_homogeneous
nfs.fattr4_link_support fattr4_link_support Boolean nfs.fattr4_link_support
nfs.fattr4_mimetype fattr4_mimetype String nfs.fattr4_mimetype
nfs.fattr4_named_attr fattr4_named_attr Boolean nfs.fattr4_named_attr
nfs.fattr4_no_trunc fattr4_no_trunc Boolean nfs.fattr4_no_trunc
nfs.fattr4_owner fattr4_owner String nfs.fattr4_owner
nfs.fattr4_owner_group fattr4_owner_group String nfs.fattr4_owner_group
nfs.fattr4_symlink_support fattr4_symlink_support Boolean nfs.fattr4_symlink_support
nfs.fattr4_system fattr4_system Boolean nfs.fattr4_system
nfs.fattr4_unique_handles fattr4_unique_handles Boolean nfs.fattr4_unique_handles
nfs.fh.auth_type auth_type Unsigned 8-bit integer authentication type
nfs.fh.dentry dentry Unsigned 32-bit integer dentry (cookie)
nfs.fh.dev device Unsigned 32-bit integer device
nfs.fh.dirinode directory inode Unsigned 32-bit integer directory inode
nfs.fh.export.fileid fileid Unsigned 32-bit integer export point fileid
nfs.fh.export.generation generation Unsigned 32-bit integer export point generation
nfs.fh.export.snapid snapid Unsigned 8-bit integer export point snapid
nfs.fh.fileid fileid Unsigned 32-bit integer file ID
nfs.fh.fileid_type fileid_type Unsigned 8-bit integer file ID type
nfs.fh.flags flags Unsigned 16-bit integer file handle flags
nfs.fh.fn file number Unsigned 32-bit integer file number
nfs.fh.fn.generation generation Unsigned 32-bit integer file number generation
nfs.fh.fn.inode inode Unsigned 32-bit integer file number inode
nfs.fh.fn.len length Unsigned 32-bit integer file number length
nfs.fh.fsid fsid Unsigned 32-bit integer file system ID
nfs.fh.fsid.inode inode Unsigned 32-bit integer file system inode
nfs.fh.fsid.major major Unsigned 32-bit integer major file system ID
nfs.fh.fsid.minor minor Unsigned 32-bit integer minor file system ID
nfs.fh.fsid_type fsid_type Unsigned 8-bit integer file system ID type
nfs.fh.fstype file system type Unsigned 32-bit integer file system type
nfs.fh.generation generation Unsigned 32-bit integer inode generation
nfs.fh.hash hash Unsigned 32-bit integer file handle hash
nfs.fh.hp.len length Unsigned 32-bit integer hash path length
nfs.fh.length length Unsigned 32-bit integer file handle length
nfs.fh.mount.fileid fileid Unsigned 32-bit integer mount point fileid
nfs.fh.mount.generation generation Unsigned 32-bit integer mount point generation
nfs.fh.pinode pseudo inode Unsigned 32-bit integer pseudo inode
nfs.fh.snapid snapid Unsigned 8-bit integer snapshot ID
nfs.fh.unused unused Unsigned 8-bit integer unused
nfs.fh.version version Unsigned 8-bit integer file handle layout version
nfs.fh.xdev exported device Unsigned 32-bit integer exported device
nfs.fh.xfn exported file number Unsigned 32-bit integer exported file number
nfs.fh.xfn.generation generation Unsigned 32-bit integer exported file number generation
nfs.fh.xfn.inode exported inode Unsigned 32-bit integer exported file number inode
nfs.fh.xfn.len length Unsigned 32-bit integer exported file number length
nfs.fh.xfsid.major exported major Unsigned 32-bit integer exported major file system ID
nfs.fh.xfsid.minor exported minor Unsigned 32-bit integer exported minor file system ID
nfs.filesize filesize Unsigned 64-bit integer nfs.filesize
nfs.flavors.info Flavors Info No value Flavors Info
nfs.fsid4.major fsid4.major Unsigned 64-bit integer nfs.nfstime4.fsid4.major
nfs.fsid4.minor fsid4.minor Unsigned 64-bit integer nfs.fsid4.minor
nfs.fsinfo.dtpref dtpref Unsigned 32-bit integer Preferred READDIR request
nfs.fsinfo.maxfilesize maxfilesize Unsigned 64-bit integer Maximum file size
nfs.fsinfo.propeties Properties Unsigned 32-bit integer File System Properties
nfs.fsinfo.rtmax rtmax Unsigned 32-bit integer maximum READ request
nfs.fsinfo.rtmult rtmult Unsigned 32-bit integer Suggested READ multiple
nfs.fsinfo.rtpref rtpref Unsigned 32-bit integer Preferred READ request size
nfs.fsinfo.wtmax wtmax Unsigned 32-bit integer Maximum WRITE request size
nfs.fsinfo.wtmult wtmult Unsigned 32-bit integer Suggested WRITE multiple
nfs.fsinfo.wtpref wtpref Unsigned 32-bit integer Preferred WRITE request size
nfs.fsstat.invarsec invarsec Unsigned 32-bit integer probable number of seconds of file system invariance
nfs.fsstat3_resok.abytes Available free bytes Unsigned 64-bit integer Available free bytes
nfs.fsstat3_resok.afiles Available free file slots Unsigned 64-bit integer Available free file slots
nfs.fsstat3_resok.fbytes Free bytes Unsigned 64-bit integer Free bytes
nfs.fsstat3_resok.ffiles Free file slots Unsigned 64-bit integer Free file slots
nfs.fsstat3_resok.tbytes Total bytes Unsigned 64-bit integer Total bytes
nfs.fsstat3_resok.tfiles Total file slots Unsigned 64-bit integer Total file slots
nfs.full_name Full Name String Full Name
nfs.gid3 gid Unsigned 32-bit integer nfs.gid3
nfs.length4 length Unsigned 64-bit integer nfs.length4
nfs.lock.locker.new_lock_owner new lock owner? Boolean nfs.lock.locker.new_lock_owner
nfs.lock.reclaim reclaim? Boolean nfs.lock.reclaim
nfs.lock_owner4 owner Byte array owner
nfs.lock_seqid lock_seqid Unsigned 32-bit integer Lock Sequence ID
nfs.locktype4 locktype Unsigned 32-bit integer nfs.locktype4
nfs.maxcount maxcount Unsigned 32-bit integer nfs.maxcount
nfs.minorversion minorversion Unsigned 32-bit integer nfs.minorversion
nfs.mtime mtime Date/Time stamp Modify Time
nfs.mtime.nsec nano seconds Unsigned 32-bit integer Modify Time, Nano-seconds
nfs.mtime.sec seconds Unsigned 32-bit integer Modify Seconds
nfs.mtime.usec micro seconds Unsigned 32-bit integer Modify Time, Micro-seconds
nfs.name Name String Name
nfs.nfs_client_id4.id id Byte array nfs.nfs_client_id4.id
nfs.nfs_ftype4 nfs_ftype4 Unsigned 32-bit integer nfs.nfs_ftype4
nfs.nfstime4.nseconds nseconds Unsigned 32-bit integer nfs.nfstime4.nseconds
nfs.nfstime4.seconds seconds Unsigned 64-bit integer nfs.nfstime4.seconds
nfs.num_blocks num_blocks Unsigned 32-bit integer nfs.num_blocks
nfs.offset3 offset Unsigned 64-bit integer nfs.offset3
nfs.offset4 offset Unsigned 64-bit integer nfs.offset4
nfs.open.claim_type Claim Type Unsigned 32-bit integer Claim Type
nfs.open.delegation_type Delegation Type Unsigned 32-bit integer Delegation Type
nfs.open.limit_by Space Limit Unsigned 32-bit integer Limit By
nfs.open.opentype Open Type Unsigned 32-bit integer Open Type
nfs.open4.share_access share_access Unsigned 32-bit integer Share Access
nfs.open4.share_deny share_deny Unsigned 32-bit integer Share Deny
nfs.open_owner4 owner Byte array owner
nfs.openattr4.createdir attribute dir create Boolean nfs.openattr4.createdir
nfs.pathconf.case_insensitive case_insensitive Boolean file names are treated case insensitive
nfs.pathconf.case_preserving case_preserving Boolean file name cases are preserved
nfs.pathconf.chown_restricted chown_restricted Boolean chown is restricted to root
nfs.pathconf.linkmax linkmax Unsigned 32-bit integer Maximum number of hard links
nfs.pathconf.name_max name_max Unsigned 32-bit integer Maximum file name length
nfs.pathconf.no_trunc no_trunc Boolean No long file name truncation
nfs.pathname.component Filename String Pathname component
nfs.procedure_v2 V2 Procedure Unsigned 32-bit integer V2 Procedure
nfs.procedure_v3 V3 Procedure Unsigned 32-bit integer V3 Procedure
nfs.procedure_v4 V4 Procedure Unsigned 32-bit integer V4 Procedure
nfs.r_addr r_addr Byte array r_addr
nfs.r_netid r_netid Byte array r_netid
nfs.read.count Count Unsigned 32-bit integer Read Count
nfs.read.eof EOF Boolean EOF
nfs.read.offset Offset Unsigned 32-bit integer Read Offset
nfs.read.totalcount Total Count Unsigned 32-bit integer Total Count (obsolete)
nfs.readdir.cookie Cookie Unsigned 32-bit integer Directory Cookie
nfs.readdir.count Count Unsigned 32-bit integer Directory Count
nfs.readdir.entry Entry No value Directory Entry
nfs.readdir.entry.cookie Cookie Unsigned 32-bit integer Directory Cookie
nfs.readdir.entry.fileid File ID Unsigned 32-bit integer File ID
nfs.readdir.entry.name Name String Name
nfs.readdir.entry3.cookie Cookie Unsigned 64-bit integer Directory Cookie
nfs.readdir.entry3.fileid File ID Unsigned 64-bit integer File ID
nfs.readdir.entry3.name Name String Name
nfs.readdir.eof EOF Unsigned 32-bit integer EOF
nfs.readdirplus.entry.cookie Cookie Unsigned 64-bit integer Directory Cookie
nfs.readdirplus.entry.fileid File ID Unsigned 64-bit integer Name
nfs.readdirplus.entry.name Name String Name
nfs.readlink.data Data String Symbolic Link Data
nfs.recall EOF Boolean Recall
nfs.recall4 recall Boolean nfs.recall4
nfs.reclaim4 reclaim Boolean Reclaim
nfs.reply.operation Opcode Unsigned 32-bit integer Opcode
nfs.secinfo.flavor flavor Unsigned 32-bit integer nfs.secinfo.flavor
nfs.secinfo.flavor_info.rpcsec_gss_info.oid oid Byte array oid
nfs.secinfo.flavor_info.rpcsec_gss_info.qop qop Unsigned 32-bit integer qop
nfs.secinfo.rpcsec_gss_info.service service Unsigned 32-bit integer service
nfs.seqid seqid Unsigned 32-bit integer Sequence ID
nfs.server server String nfs.server
nfs.set_it set_it Unsigned 32-bit integer How To Set Time
nfs.set_size3.size size Unsigned 64-bit integer nfs.set_size3.size
nfs.specdata1 specdata1 Unsigned 32-bit integer nfs.specdata1
nfs.specdata2 specdata2 Unsigned 32-bit integer nfs.specdata2
nfs.stable_how4 stable_how4 Unsigned 32-bit integer nfs.stable_how4
nfs.stateid4 stateid Unsigned 64-bit integer nfs.stateid4
nfs.stateid4.other Data Byte array Data
nfs.statfs.bavail Available Blocks Unsigned 32-bit integer Available Blocks
nfs.statfs.bfree Free Blocks Unsigned 32-bit integer Free Blocks
nfs.statfs.blocks Total Blocks Unsigned 32-bit integer Total Blocks
nfs.statfs.bsize Block Size Unsigned 32-bit integer Block Size
nfs.statfs.tsize Transfer Size Unsigned 32-bit integer Transfer Size
nfs.status Status Unsigned 32-bit integer Reply status
nfs.status2 Status Unsigned 32-bit integer Reply status
nfs.symlink.linktext Name String Symbolic link contents
nfs.symlink.to To String Symbolic link destination name
nfs.tag Tag String Tag
nfs.type Type Unsigned 32-bit integer File Type
nfs.uid3 uid Unsigned 32-bit integer nfs.uid3
nfs.verifier4 verifier Unsigned 64-bit integer nfs.verifier4
nfs.wcc_attr.size size Unsigned 64-bit integer nfs.wcc_attr.size
nfs.who who String nfs.who
nfs.write.beginoffset Begin Offset Unsigned 32-bit integer Begin offset (obsolete)
nfs.write.committed Committed Unsigned 32-bit integer Committed
nfs.write.offset Offset Unsigned 32-bit integer Offset
nfs.write.stable Stable Unsigned 32-bit integer Stable
nfs.write.totalcount Total Count Unsigned 32-bit integer Total Count (obsolete)
nlm.block block Boolean block
nlm.cookie cookie Byte array cookie
nlm.exclusive exclusive Boolean exclusive
nlm.holder holder No value holder
nlm.lock lock No value lock
nlm.lock.caller_name caller_name String caller_name
nlm.lock.l_len l_len Unsigned 64-bit integer l_len
nlm.lock.l_offset l_offset Unsigned 64-bit integer l_offset
nlm.lock.owner owner Byte array owner
nlm.lock.svid svid Unsigned 32-bit integer svid
nlm.msg_in Request MSG in Unsigned 32-bit integer The RES packet is a response to the MSG in this packet
nlm.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
nlm.procedure_v2 V2 Procedure Unsigned 32-bit integer V2 Procedure
nlm.procedure_v3 V3 Procedure Unsigned 32-bit integer V3 Procedure
nlm.procedure_v4 V4 Procedure Unsigned 32-bit integer V4 Procedure
nlm.reclaim reclaim Boolean reclaim
nlm.res_in Reply RES in Unsigned 32-bit integer The response to this MSG packet is in this packet
nlm.sequence sequence Signed 32-bit integer sequence
nlm.share share No value share
nlm.share.access access Unsigned 32-bit integer access
nlm.share.mode mode Unsigned 32-bit integer mode
nlm.share.name name String name
nlm.stat stat Unsigned 32-bit integer stat
nlm.state state Unsigned 32-bit integer STATD state
nlm.test_stat test_stat No value test_stat
nlm.test_stat.stat stat Unsigned 32-bit integer stat
nlm.time Time from request Time duration Time between Request and Reply for async NLM calls
nntp.request Request Boolean TRUE if NNTP request
nntp.response Response Boolean TRUE if NNTP response
nsip.bvci BVCI Unsigned 16-bit integer BSSGP Virtual Connection Identifier
nsip.cause Cause Unsigned 8-bit integer
nsip.control_bits.c Confirm change flow Boolean
nsip.control_bits.r Request change flow Boolean
nsip.end_flag End flag Boolean
nsip.ip4_elements IP4 elements No value List of IP4 elements
nsip.ip6_elements IP6 elements No value List of IP6 elements
nsip.ip_address IP Address IPv4 address
nsip.ip_element.data_weight Data Weight Unsigned 8-bit integer
nsip.ip_element.ip_address IP Address IPv4 address
nsip.ip_element.signalling_weight Signalling Weight Unsigned 8-bit integer
nsip.ip_element.udp_port UDP Port Unsigned 16-bit integer
nsip.max_num_ns_vc Maximum number of NS-VCs Unsigned 16-bit integer
nsip.ns_vci NS-VCI Unsigned 16-bit integer Network Service Virtual Link Identifier
nsip.nsei NSEI Unsigned 16-bit integer Network Service Entity Identifier
nsip.num_ip4_endpoints Number of IP4 endpoints Unsigned 16-bit integer
nsip.num_ip6_endpoints Number of IP6 endpoints Unsigned 16-bit integer
nsip.pdu_type PDU type Unsigned 8-bit integer PDU type information element
nsip.reset_flag Reset flag Boolean
nsip.transaction_id Transaction ID Unsigned 8-bit integer
statnotify.name Name String Name of client that changed
statnotify.priv Priv Byte array Client supplied opaque data
statnotify.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
statnotify.state State Unsigned 32-bit integer New state of client that changed
stat.mon Monitor No value Monitor Host
stat.mon_id.name Monitor ID Name String Monitor ID Name
stat.my_id My ID No value My_ID structure
stat.my_id.hostname Hostname String My_ID Host to callback
stat.my_id.proc Procedure Unsigned 32-bit integer My_ID Procedure to callback
stat.my_id.prog Program Unsigned 32-bit integer My_ID Program to callback
stat.my_id.vers Version Unsigned 32-bit integer My_ID Version of callback
stat.name Name String Name
stat.priv Priv Byte array Private client supplied opaque data
stat.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
stat.stat_chge Status Change No value Status Change structure
stat.stat_res Status Result No value Status Result
stat.stat_res.res Result Unsigned 32-bit integer Result
stat.stat_res.state State Unsigned 32-bit integer State
stat.state State Unsigned 32-bit integer State of local NSM
ntp.ext Extension No value Extension
ntp.ext.associd Association ID Unsigned 32-bit integer Association ID
ntp.ext.flags Flags Unsigned 8-bit integer Flags (Response/Error/Version)
ntp.ext.flags.error Error bit Unsigned 8-bit integer Error bit
ntp.ext.flags.r Response bit Unsigned 8-bit integer Response bit
ntp.ext.flags.vn Version Unsigned 8-bit integer Version
ntp.ext.fstamp File Timestamp Unsigned 32-bit integer File Timestamp
ntp.ext.len Extension length Unsigned 16-bit integer Extension length
ntp.ext.op Opcode Unsigned 8-bit integer Opcode
ntp.ext.sig Signature Byte array Signature
ntp.ext.siglen Signature length Unsigned 32-bit integer Signature length
ntp.ext.tstamp Timestamp Unsigned 32-bit integer Timestamp
ntp.ext.val Value Byte array Value
ntp.ext.vallen Value length Unsigned 32-bit integer Value length
ntp.flags Flags Unsigned 8-bit integer Flags (Leap/Version/Mode)
ntp.flags.li Leap Indicator Unsigned 8-bit integer Leap Indicator
ntp.flags.mode Mode Unsigned 8-bit integer Mode
ntp.flags.vn Version number Unsigned 8-bit integer Version number
ntp.keyid Key ID Byte array Key ID
ntp.mac Message Authentication Code Byte array Message Authentication Code
ntp.org Originate Time Stamp Byte array Originate Time Stamp
ntp.ppoll Peer Polling Interval Unsigned 8-bit integer Peer Polling Interval
ntp.precision Peer Clock Precision Signed 8-bit integer Peer Clock Precision
ntp.rec Receive Time Stamp Byte array Receive Time Stamp
ntp.refid Reference Clock ID Byte array Reference Clock ID
ntp.reftime Reference Clock Update Time Byte array Reference Clock Update Time
ntp.rootdelay Root Delay Double-precision floating point Root Delay
ntp.rootdispersion Clock Dispersion Double-precision floating point Clock Dispersion
ntp.stratum Peer Clock Stratum Unsigned 8-bit integer Peer Clock Stratum
ntp.xmt Transmit Time Stamp Byte array Transmit Time Stamp
ntpctrl.flags2 Flags 2 Unsigned 8-bit integer Flags (Response/Error/More/Opcode)
ntpctrl.flags2.error Error bit Unsigned 8-bit integer Error bit
ntpctrl.flags2.more More bit Unsigned 8-bit integer More bit
ntpctrl.flags2.opcode Opcode Unsigned 8-bit integer Opcode
ntpctrl.flags2.r Response bit Unsigned 8-bit integer Response bit
ntppriv.auth Auth bit Unsigned 8-bit integer Auth bit
ntppriv.auth_seq Auth, sequence Unsigned 8-bit integer Auth bit, sequence number
ntppriv.flags.more More bit Unsigned 8-bit integer More bit
ntppriv.flags.r Response bit Unsigned 8-bit integer Response bit
ntppriv.impl Implementation Unsigned 8-bit integer Implementation
ntppriv.reqcode Request code Unsigned 8-bit integer Request code
ntppriv.seq Sequence number Unsigned 8-bit integer Sequence number
sonmp.backplane Backplane type Unsigned 8-bit integer Backplane type of the agent sending the topology message
sonmp.chassis Chassis type Unsigned 8-bit integer Chassis type of the agent sending the topology message
sonmp.ipaddress NMM IP address IPv4 address IP address of the agent (NMM)
sonmp.nmmstate NMM state Unsigned 8-bit integer Current state of this agent
sonmp.numberoflinks Number of links Unsigned 8-bit integer Number of interconnect ports
sonmp.segmentident Segment Identifier Unsigned 24-bit integer Segment id of the segment from which the agent is sending the topology message
ndps.add_bytes Address Bytes Byte array Address Bytes
ndps.addr_len Address Length Unsigned 32-bit integer Address Length
ndps.admin_submit_flag Admin Submit Flag? Boolean Admin Submit Flag?
ndps.answer_time Answer Time Unsigned 32-bit integer Answer Time
ndps.archive_size Archive File Size Unsigned 32-bit integer Archive File Size
ndps.archive_type Archive Type Unsigned 32-bit integer Archive Type
ndps.asn1_type ASN.1 Type Unsigned 16-bit integer ASN.1 Type
ndps.attribue_value Value Unsigned 32-bit integer Value
ndps.attribute_set Attribute Set Byte array Attribute Set
ndps.attribute_time Time Date/Time stamp Time
ndps.auth_null Auth Null Byte array Auth Null
ndps.banner_count Number of Banners Unsigned 32-bit integer Number of Banners
ndps.banner_name Banner Name String Banner Name
ndps.banner_type Banner Type Unsigned 32-bit integer Banner Type
ndps.broker_name Broker Name String Broker Name
ndps.certified Certified Byte array Certified
ndps.connection Connection Unsigned 16-bit integer Connection
ndps.context Context Byte array Context
ndps.context_len Context Length Unsigned 32-bit integer Context Length
ndps.cred_type Credential Type Unsigned 32-bit integer Credential Type
ndps.data [Data] No value [Data]
ndps.delivery_add_count Number of Delivery Addresses Unsigned 32-bit integer Number of Delivery Addresses
ndps.delivery_flag Delivery Address Data? Boolean Delivery Address Data?
ndps.delivery_method_count Number of Delivery Methods Unsigned 32-bit integer Number of Delivery Methods
ndps.delivery_method_type Delivery Method Type Unsigned 32-bit integer Delivery Method Type
ndps.doc_content Document Content Unsigned 32-bit integer Document Content
ndps.doc_name Document Name String Document Name
ndps.error_val Return Status Unsigned 32-bit integer Return Status
ndps.ext_error Extended Error Code Unsigned 32-bit integer Extended Error Code
ndps.file_name File Name String File Name
ndps.file_time_stamp File Time Stamp Unsigned 32-bit integer File Time Stamp
ndps.font_file_count Number of Font Files Unsigned 32-bit integer Number of Font Files
ndps.font_file_name Font File Name String Font File Name
ndps.font_name Font Name String Font Name
ndps.font_type Font Type Unsigned 32-bit integer Font Type
ndps.font_type_count Number of Font Types Unsigned 32-bit integer Number of Font Types
ndps.font_type_name Font Type Name String Font Type Name
ndps.fragment NDPS Fragment Frame number NDPS Fragment
ndps.fragments NDPS Fragments No value NDPS Fragments
ndps.get_status_flags Get Status Flag Unsigned 32-bit integer Get Status Flag
ndps.guid GUID Byte array GUID
ndps.inc_across_feed Increment Across Feed Byte array Increment Across Feed
ndps.included_doc Included Document Byte array Included Document
ndps.included_doc_len Included Document Length Unsigned 32-bit integer Included Document Length
ndps.inf_file_name INF File Name String INF File Name
ndps.info_boolean Boolean Value Boolean Boolean Value
ndps.info_bytes Byte Value Byte array Byte Value
ndps.info_int Integer Value Unsigned 8-bit integer Integer Value
ndps.info_int16 16 Bit Integer Value Unsigned 16-bit integer 16 Bit Integer Value
ndps.info_int32 32 Bit Integer Value Unsigned 32-bit integer 32 Bit Integer Value
ndps.info_string String Value String String Value
ndps.interrupt_job_type Interrupt Job Identifier Unsigned 32-bit integer Interrupt Job Identifier
ndps.interval Interval Unsigned 32-bit integer Interval
ndps.ip IP Address IPv4 address IP Address
ndps.item_bytes Item Ptr Byte array Item Ptr
ndps.item_ptr Item Pointer Byte array Item Pointer
ndps.language_flag Language Data? Boolean Language Data?
ndps.last_packet_flag Last Packet Flag Unsigned 32-bit integer Last Packet Flag
ndps.level Level Unsigned 32-bit integer Level
ndps.local_id Local ID Unsigned 32-bit integer Local ID
ndps.lower_range Lower Range Unsigned 32-bit integer Lower Range
ndps.lower_range_n64 Lower Range Byte array Lower Range
ndps.message Message String Message
ndps.method_flag Method Data? Boolean Method Data?
ndps.method_name Method Name String Method Name
ndps.method_ver Method Version String Method Version
ndps.n64 Value Byte array Value
ndps.ndps_abort Abort? Boolean Abort?
ndps.ndps_address Address Unsigned 32-bit integer Address
ndps.ndps_address_type Address Type Unsigned 32-bit integer Address Type
ndps.ndps_attrib_boolean Value? Boolean Value?
ndps.ndps_attrib_type Value Syntax Unsigned 32-bit integer Value Syntax
ndps.ndps_attrs_arg List Attribute Operation Unsigned 32-bit integer List Attribute Operation
ndps.ndps_bind_security Bind Security Options Unsigned 32-bit integer Bind Security Options
ndps.ndps_bind_security_count Number of Bind Security Options Unsigned 32-bit integer Number of Bind Security Options
ndps.ndps_car_name_or_oid Cardinal Name or OID Unsigned 32-bit integer Cardinal Name or OID
ndps.ndps_car_or_oid Cardinal or OID Unsigned 32-bit integer Cardinal or OID
ndps.ndps_card_enum_time Cardinal, Enum, or Time Unsigned 32-bit integer Cardinal, Enum, or Time
ndps.ndps_client_server_type Client/Server Type Unsigned 32-bit integer Client/Server Type
ndps.ndps_colorant_set Colorant Set Unsigned 32-bit integer Colorant Set
ndps.ndps_continuation_option Continuation Option Byte array Continuation Option
ndps.ndps_count_limit Count Limit Unsigned 32-bit integer Count Limit
ndps.ndps_criterion_type Criterion Type Unsigned 32-bit integer Criterion Type
ndps.ndps_data_item_type Item Type Unsigned 32-bit integer Item Type
ndps.ndps_delivery_add_type Delivery Address Type Unsigned 32-bit integer Delivery Address Type
ndps.ndps_dim_falg Dimension Flag Unsigned 32-bit integer Dimension Flag
ndps.ndps_dim_value Dimension Value Type Unsigned 32-bit integer Dimension Value Type
ndps.ndps_direction Direction Unsigned 32-bit integer Direction
ndps.ndps_doc_num Document Number Unsigned 32-bit integer Document Number
ndps.ndps_ds_info_type DS Info Type Unsigned 32-bit integer DS Info Type
ndps.ndps_edge_value Edge Value Unsigned 32-bit integer Edge Value
ndps.ndps_event_object_identifier Event Object Type Unsigned 32-bit integer Event Object Type
ndps.ndps_event_type Event Type Unsigned 32-bit integer Event Type
ndps.ndps_filter Filter Type Unsigned 32-bit integer Filter Type
ndps.ndps_filter_item Filter Item Operation Unsigned 32-bit integer Filter Item Operation
ndps.ndps_force Force? Boolean Force?
ndps.ndps_get_resman_session_type Session Type Unsigned 32-bit integer Session Type
ndps.ndps_get_session_type Session Type Unsigned 32-bit integer Session Type
ndps.ndps_identifier_type Identifier Type Unsigned 32-bit integer Identifier Type
ndps.ndps_ignored_type Ignored Type Unsigned 32-bit integer Ignored Type
ndps.ndps_integer_or_oid Integer or OID Unsigned 32-bit integer Integer or OID
ndps.ndps_integer_type_flag Integer Type Flag Unsigned 32-bit integer Integer Type Flag
ndps.ndps_integer_type_value Integer Type Value Unsigned 32-bit integer Integer Type Value
ndps.ndps_item_count Number of Items Unsigned 32-bit integer Number of Items
ndps.ndps_lang_id Language ID Unsigned 32-bit integer Language ID
ndps.ndps_language_count Number of Languages Unsigned 32-bit integer Number of Languages
ndps.ndps_len Length Unsigned 16-bit integer Length
ndps.ndps_lib_error Lib Error Unsigned 32-bit integer Lib Error
ndps.ndps_limit_enc Limit Encountered Unsigned 32-bit integer Limit Encountered
ndps.ndps_list_local_server_type Server Type Unsigned 32-bit integer Server Type
ndps.ndps_list_profiles_choice_type List Profiles Choice Type Unsigned 32-bit integer List Profiles Choice Type
ndps.ndps_list_profiles_result_type List Profiles Result Type Unsigned 32-bit integer List Profiles Result Type
ndps.ndps_list_profiles_type List Profiles Type Unsigned 32-bit integer List Profiles Type
ndps.ndps_list_services_type Services Type Unsigned 32-bit integer Services Type
ndps.ndps_loc_object_name Local Object Name String Local Object Name
ndps.ndps_location_value Location Value Type Unsigned 32-bit integer Location Value Type
ndps.ndps_long_edge_feeds Long Edge Feeds? Boolean Long Edge Feeds?
ndps.ndps_max_items Maximum Items in List Unsigned 32-bit integer Maximum Items in List
ndps.ndps_media_type Media Type Unsigned 32-bit integer Media Type
ndps.ndps_medium_size Medium Size Unsigned 32-bit integer Medium Size
ndps.ndps_nameorid Name or ID Type Unsigned 32-bit integer Name or ID Type
ndps.ndps_num_resources Number of Resources Unsigned 32-bit integer Number of Resources
ndps.ndps_num_services Number of Services Unsigned 32-bit integer Number of Services
ndps.ndps_numbers_up Numbers Up Unsigned 32-bit integer Numbers Up
ndps.ndps_object_name Object Name String Object Name
ndps.ndps_object_op Operation Unsigned 32-bit integer Operation
ndps.ndps_operator Operator Type Unsigned 32-bit integer Operator Type
ndps.ndps_other_error Other Error Unsigned 32-bit integer Other Error
ndps.ndps_other_error_2 Other Error 2 Unsigned 32-bit integer Other Error 2
ndps.ndps_page_flag Page Flag Unsigned 32-bit integer Page Flag
ndps.ndps_page_order Page Order Unsigned 32-bit integer Page Order
ndps.ndps_page_orientation Page Orientation Unsigned 32-bit integer Page Orientation
ndps.ndps_page_size Page Size Unsigned 32-bit integer Page Size
ndps.ndps_persistence Persistence Unsigned 32-bit integer Persistence
ndps.ndps_printer_name Printer Name String Printer Name
ndps.ndps_profile_id Profile ID Unsigned 32-bit integer Profile ID
ndps.ndps_qual Qualifier Unsigned 32-bit integer Qualifier
ndps.ndps_qual_name_type Qualified Name Type Unsigned 32-bit integer Qualified Name Type
ndps.ndps_qual_name_type2 Qualified Name Type Unsigned 32-bit integer Qualified Name Type
ndps.ndps_realization Realization Type Unsigned 32-bit integer Realization Type
ndps.ndps_resource_type Resource Type Unsigned 32-bit integer Resource Type
ndps.ndps_ret_restrict Retrieve Restrictions Unsigned 32-bit integer Retrieve Restrictions
ndps.ndps_server_type NDPS Server Type Unsigned 32-bit integer NDPS Server Type
ndps.ndps_service_enabled Service Enabled? Boolean Service Enabled?
ndps.ndps_service_type NDPS Service Type Unsigned 32-bit integer NDPS Service Type
ndps.ndps_session Session Handle Unsigned 32-bit integer Session Handle
ndps.ndps_session_type Session Type Unsigned 32-bit integer Session Type
ndps.ndps_state_severity State Severity Unsigned 32-bit integer State Severity
ndps.ndps_status_flags Status Flag Unsigned 32-bit integer Status Flag
ndps.ndps_substring_match Substring Match Unsigned 32-bit integer Substring Match
ndps.ndps_time_limit Time Limit Unsigned 32-bit integer Time Limit
ndps.ndps_training Training Unsigned 32-bit integer Training
ndps.ndps_xdimension X Dimension Unsigned 32-bit integer X Dimension
ndps.ndps_xydim_value XY Dimension Value Type Unsigned 32-bit integer XY Dimension Value Type
ndps.ndps_ydimension Y Dimension Unsigned 32-bit integer Y Dimension
ndps.net IPX Network IPX network or server name Scope
ndps.node Node 6-byte Hardware (MAC) Address Node
ndps.notify_lease_exp_time Notify Lease Expiration Time Unsigned 32-bit integer Notify Lease Expiration Time
ndps.notify_printer_uri Notify Printer URI String Notify Printer URI
ndps.notify_seq_number Notify Sequence Number Unsigned 32-bit integer Notify Sequence Number
ndps.notify_time_interval Notify Time Interval Unsigned 32-bit integer Notify Time Interval
ndps.num_address_items Number of Address Items Unsigned 32-bit integer Number of Address Items
ndps.num_areas Number of Areas Unsigned 32-bit integer Number of Areas
ndps.num_argss Number of Arguments Unsigned 32-bit integer Number of Arguments
ndps.num_attributes Number of Attributes Unsigned 32-bit integer Number of Attributes
ndps.num_categories Number of Categories Unsigned 32-bit integer Number of Categories
ndps.num_colorants Number of Colorants Unsigned 32-bit integer Number of Colorants
ndps.num_destinations Number of Destinations Unsigned 32-bit integer Number of Destinations
ndps.num_doc_types Number of Document Types Unsigned 32-bit integer Number of Document Types
ndps.num_events Number of Events Unsigned 32-bit integer Number of Events
ndps.num_ignored_attributes Number of Ignored Attributes Unsigned 32-bit integer Number of Ignored Attributes
ndps.num_job_categories Number of Job Categories Unsigned 32-bit integer Number of Job Categories
ndps.num_jobs Number of Jobs Unsigned 32-bit integer Number of Jobs
ndps.num_locations Number of Locations Unsigned 32-bit integer Number of Locations
ndps.num_names Number of Names Unsigned 32-bit integer Number of Names
ndps.num_objects Number of Objects Unsigned 32-bit integer Number of Objects
ndps.num_options Number of Options Unsigned 32-bit integer Number of Options
ndps.num_page_informations Number of Page Information Items Unsigned 32-bit integer Number of Page Information Items
ndps.num_page_selects Number of Page Select Items Unsigned 32-bit integer Number of Page Select Items
ndps.num_passwords Number of Passwords Unsigned 32-bit integer Number of Passwords
ndps.num_results Number of Results Unsigned 32-bit integer Number of Results
ndps.num_servers Number of Servers Unsigned 32-bit integer Number of Servers
ndps.num_transfer_methods Number of Transfer Methods Unsigned 32-bit integer Number of Transfer Methods
ndps.num_values Number of Values Unsigned 32-bit integer Number of Values
ndps.num_win31_keys Number of Windows 3.1 Keys Unsigned 32-bit integer Number of Windows 3.1 Keys
ndps.num_win95_keys Number of Windows 95 Keys Unsigned 32-bit integer Number of Windows 95 Keys
ndps.num_windows_keys Number of Windows Keys Unsigned 32-bit integer Number of Windows Keys
ndps.object Object ID Unsigned 32-bit integer Object ID
ndps.objectid_def10 Object ID Definition No value Object ID Definition
ndps.objectid_def11 Object ID Definition No value Object ID Definition
ndps.objectid_def12 Object ID Definition No value Object ID Definition
ndps.objectid_def13 Object ID Definition No value Object ID Definition
ndps.objectid_def14 Object ID Definition No value Object ID Definition
ndps.objectid_def15 Object ID Definition No value Object ID Definition
ndps.objectid_def16 Object ID Definition No value Object ID Definition
ndps.objectid_def7 Object ID Definition No value Object ID Definition
ndps.objectid_def8 Object ID Definition No value Object ID Definition
ndps.objectid_def9 Object ID Definition No value Object ID Definition
ndps.octet_string Octet String Byte array Octet String
ndps.oid Object ID Byte array Object ID
ndps.os_count Number of OSes Unsigned 32-bit integer Number of OSes
ndps.os_type OS Type Unsigned 32-bit integer OS Type
ndps.pa_name Printer Name String Printer Name
ndps.packet_count Packet Count Unsigned 32-bit integer Packet Count
ndps.packet_type Packet Type Unsigned 32-bit integer Packet Type
ndps.password Password Byte array Password
ndps.pause_job_type Pause Job Identifier Unsigned 32-bit integer Pause Job Identifier
ndps.port IP Port Unsigned 16-bit integer IP Port
ndps.print_arg Print Type Unsigned 32-bit integer Print Type
ndps.print_def_name Printer Definition Name String Printer Definition Name
ndps.print_dir_name Printer Directory Name String Printer Directory Name
ndps.print_file_name Printer File Name String Printer File Name
ndps.print_security Printer Security Unsigned 32-bit integer Printer Security
ndps.printer_def_count Number of Printer Definitions Unsigned 32-bit integer Number of Printer Definitions
ndps.printer_id Printer ID Byte array Printer ID
ndps.printer_type_count Number of Printer Types Unsigned 32-bit integer Number of Printer Types
ndps.prn_manuf Printer Manufacturer String Printer Manufacturer
ndps.prn_type Printer Type String Printer Type
ndps.rbuffer Connection Unsigned 32-bit integer Connection
ndps.record_length Record Length Unsigned 16-bit integer Record Length
ndps.record_mark Record Mark Unsigned 16-bit integer Record Mark
ndps.ref_doc_name Referenced Document Name String Referenced Document Name
ndps.registry_name Registry Name String Registry Name
ndps.reqframe Request Frame Frame number Request Frame
ndps.res_type Resource Type Unsigned 32-bit integer Resource Type
ndps.resubmit_op_type Resubmit Operation Type Unsigned 32-bit integer Resubmit Operation Type
ndps.ret_code Return Code Unsigned 32-bit integer Return Code
ndps.rpc_acc RPC Accept or Deny Unsigned 32-bit integer RPC Accept or Deny
ndps.rpc_acc_prob Access Problem Unsigned 32-bit integer Access Problem
ndps.rpc_acc_res RPC Accept Results Unsigned 32-bit integer RPC Accept Results
ndps.rpc_acc_stat RPC Accept Status Unsigned 32-bit integer RPC Accept Status
ndps.rpc_attr_prob Attribute Problem Unsigned 32-bit integer Attribute Problem
ndps.rpc_doc_acc_prob Document Access Problem Unsigned 32-bit integer Document Access Problem
ndps.rpc_obj_id_type Object ID Type Unsigned 32-bit integer Object ID Type
ndps.rpc_oid_struct_size OID Struct Size Unsigned 16-bit integer OID Struct Size
ndps.rpc_print_prob Printer Problem Unsigned 32-bit integer Printer Problem
ndps.rpc_prob_type Problem Type Unsigned 32-bit integer Problem Type
ndps.rpc_rej_stat RPC Reject Status Unsigned 32-bit integer RPC Reject Status
ndps.rpc_sec_prob Security Problem Unsigned 32-bit integer Security Problem
ndps.rpc_sel_prob Selection Problem Unsigned 32-bit integer Selection Problem
ndps.rpc_serv_prob Service Problem Unsigned 32-bit integer Service Problem
ndps.rpc_update_prob Update Problem Unsigned 32-bit integer Update Problem
ndps.rpc_version RPC Version Unsigned 32-bit integer RPC Version
ndps.sbuffer Server Unsigned 32-bit integer Server
ndps.scope Scope Unsigned 32-bit integer Scope
ndps.segment.error Desegmentation error Frame number Desegmentation error due to illegal segments
ndps.segment.multipletails Multiple tail segments found Boolean Several tails were found when desegmenting the packet
ndps.segment.overlap Segment overlap Boolean Segment overlaps with other segments
ndps.segment.overlap.conflict Conflicting data in segment overlap Boolean Overlapping segments contained conflicting data
ndps.segment.toolongsegment Segment too long Boolean Segment contained data past end of packet
ndps.server_name Server Name String Server Name
ndps.shutdown_type Shutdown Type Unsigned 32-bit integer Shutdown Type
ndps.size_inc_in_feed Size Increment in Feed Byte array Size Increment in Feed
ndps.socket IPX Socket Unsigned 16-bit integer IPX Socket
ndps.sub_complete Submission Complete? Boolean Submission Complete?
ndps.supplier_flag Supplier Data? Boolean Supplier Data?
ndps.supplier_name Supplier Name String Supplier Name
ndps.time Time Unsigned 32-bit integer Time
ndps.tree Tree String Tree
ndps.upper_range Upper Range Unsigned 32-bit integer Upper Range
ndps.upper_range_n64 Upper Range Byte array Upper Range
ndps.user_name Trustee Name String Trustee Name
ndps.vendor_dir Vendor Directory String Vendor Directory
ndps.windows_key Windows Key String Windows Key
ndps.xdimension_n64 X Dimension Byte array X Dimension
ndps.xid Exchange ID Unsigned 32-bit integer Exchange ID
ndps.xmax_n64 Maximum X Dimension Byte array Maximum X Dimension
ndps.xmin_n64 Minimum X Dimension Byte array Minimum X Dimension
ndps.ymax_n64 Maximum Y Dimension Byte array Maximum Y Dimension
ndps.ymin_n64 Minimum Y Dimension Byte array Minimum Y Dimension
spx.ndps_error NDPS Error Unsigned 32-bit integer NDPS Error
spx.ndps_func_broker Broker Program Unsigned 32-bit integer Broker Program
spx.ndps_func_delivery Delivery Program Unsigned 32-bit integer Delivery Program
spx.ndps_func_notify Notify Program Unsigned 32-bit integer Notify Program
spx.ndps_func_print Print Program Unsigned 32-bit integer Print Program
spx.ndps_func_registry Registry Program Unsigned 32-bit integer Registry Program
spx.ndps_func_resman ResMan Program Unsigned 32-bit integer ResMan Program
spx.ndps_program NDPS Program Number Unsigned 32-bit integer NDPS Program Number
spx.ndps_version Program Version Unsigned 32-bit integer Program Version
nmas.attribute Attribute Type Unsigned 32-bit integer Attribute Type
nmas.buf_size Reply Buffer Size Unsigned 32-bit integer Reply Buffer Size
nmas.clearence Requested Clearence String Requested Clearence
nmas.cqueue_bytes Client Queue Number of Bytes Unsigned 32-bit integer Client Queue Number of Bytes
nmas.cred_type Credential Type Unsigned 32-bit integer Credential Type
nmas.data Data Byte array Data
nmas.enc_cred Encrypted Credential Byte array Encrypted Credential
nmas.enc_data Encrypted Data Byte array Encrypted Data
nmas.encrypt_error Payload Error Unsigned 32-bit integer Payload/Encryption Return Code
nmas.frag_handle Fragment Handle Unsigned 32-bit integer Fragment Handle
nmas.func Function Unsigned 8-bit integer Function
nmas.length Length Unsigned 32-bit integer Length
nmas.login_seq Requested Login Sequence String Requested Login Sequence
nmas.login_state Login State Unsigned 32-bit integer Login State
nmas.lsm_verb Login Store Message Verb Unsigned 8-bit integer Login Store Message Verb
nmas.msg_verb Message Verb Unsigned 8-bit integer Message Verb
nmas.msg_version Message Version Unsigned 32-bit integer Message Version
nmas.num_creds Number of Credentials Unsigned 32-bit integer Number of Credentials
nmas.opaque Opaque Data Byte array Opaque Data
nmas.ping_flags Flags Unsigned 32-bit integer Flags
nmas.ping_version Ping Version Unsigned 32-bit integer Ping Version
nmas.return_code Return Code Unsigned 32-bit integer Return Code
nmas.session_ident Session Identifier Unsigned 32-bit integer Session Identifier
nmas.squeue_bytes Server Queue Number of Bytes Unsigned 32-bit integer Server Queue Number of Bytes
nmas.subfunc Subfunction Unsigned 8-bit integer Subfunction
nmas.subverb Sub Verb Unsigned 32-bit integer Sub Verb
nmas.tree Tree String Tree
nmas.user User String User
nmas.version NMAS Protocol Version Unsigned 32-bit integer NMAS Protocol Version
null.family Family Unsigned 32-bit integer
null.type Type Unsigned 16-bit integer
ftam.attribute.group.private Private Boolean Private
ftam.attribute.group.security Security Boolean Security
ftam.attribute.group.storage Storage Boolean Storage
ftam.filename.attribute.change_attribute Change attribute Boolean Change attribute
ftam.filename.attribute.delete_file Delete file Boolean Delete file
ftam.filename.attribute.erase Erase Boolean Erase
ftam.filename.attribute.extend Extend Boolean Extend
ftam.filename.attribute.insert Insert Boolean Insert
ftam.filename.attribute.read Read Boolean Read
ftam.filename.attribute.read_attribute Read attribute Boolean Read attribute
ftam.filename.attribute.replace Replace Boolean Replace
ftam.functional.units.access_class Access class Boolean access class
ftam.functional.units.enhanced_file_management Enhanced file management Boolean Enhanced file management
ftam.functional.units.fadu_locking Fadu locking Boolean Fadu locking
ftam.functional.units.file_access File access Boolean File access
ftam.functional.units.grouping Grouping Boolean Grouping
ftam.functional.units.limited_file_management Limited file management Boolean Limited file management
ftam.functional.units.management_class Management class Boolean Management class
ftam.functional.units.read Read Boolean Read
ftam.functional.units.recovery Recovery Boolean Recovery
ftam.functional.units.restart_data_transfer Restart data transfer Boolean Restart data transfer
ftam.functional.units.transfer_and_management_class Transfer and management class Boolean Transfer and management class
ftam.functional.units.transfer_class Transfer class Boolean Transfer class
ftam.functional.units.unconstrained_class Unconstrained class Boolean Unconstrained class
ftam.functional.units.write Write Boolean Write
ftam.nbs9.read.access_control Read access control Boolean Read access control
ftam.nbs9.read.contents.type Read contents type Boolean Read contents type
ftam.nbs9.read.date.and.time.of.creation Read date and time of creation Boolean Read date and time of creation
ftam.nbs9.read.date.and.time.of.last.attribute.modification Read date and time of last attribute modification Boolean Read date and time of last attribute modification
ftam.nbs9.read.date.and.time.of.last.modification Read date and time of last modification Boolean Read date and time of last modification
ftam.nbs9.read.date.and.time.of.last.read.access Read date and time of last read access Boolean Read date and time of last read access
ftam.nbs9.read.file.availability Read file availability Boolean Read file availability
ftam.nbs9.read.file.filesize Read filesize Boolean Read filesize
ftam.nbs9.read.filename Read filename Boolean Read filename
ftam.nbs9.read.future.filesize Read future filesize Boolean Read future filesize
ftam.nbs9.read.identity.of.creator Read identity of creator Boolean Read identity of creator
ftam.nbs9.read.identity.of.last.attribute.modifier Read identity of last attribute modifier Boolean Read identity of last attribute modifier
ftam.nbs9.read.identity.of.last.modifier Read identity of last modifier Boolean Read identity of last modifier
ftam.nbs9.read.identity.of.last.reader Read identity of last reader Boolean Read identity of last reader
ftam.nbs9.read.legal.qualifications Read legal qualifications Boolean Read legal qualifications
ftam.nbs9.read.permitted.actions Read permitted actions Boolean Read permitted actions
ftam.nbs9.read.private.use Read private use Boolean Read private use
ftam.nbs9.read.storage.account Read storage account Boolean Read storage account
ftam.permitted.action.attribute.delete.file Delete file Boolean Delete file
ftam.permitted.action.attribute.erase Erase Boolean Erase
ftam.permitted.action.attribute.extend Extend Boolean Extend
ftam.permitted.action.attribute.insert Insert Boolean Insert
ftam.permitted.action.attribute.random.order Random order Boolean Random order
ftam.permitted.action.attribute.read Read Boolean Read
ftam.permitted.action.attribute.read.attribute Read attribute Boolean Read attribute
ftam.permitted.action.attribute.replace Replace Boolean Replace
ftam.permitted.action.attribute.reverse.traversal Reverse traversal Boolean Reverse raversal
ftam.permitted.action.attribute.traversal Traversal Boolean Traversal
ftam.processing.mode.erase f-erase Boolean f-erase
ftam.processing.mode.extend f-extend Boolean f-extend
ftam.processing.mode.insert f-insert Boolean f-insert
ftam.processing.mode.read f-read Boolean f-read
ftam.processing.mode.replace f-replace Boolean f-replace
ftam.protocol.version Protocol version 1 Boolean Protocol version 1
ftam.type PDU Type Unsigned 8-bit integer
acse.protocol.version Protocol version 1 Boolean Protocol version 1
acse.type PDU Type Unsigned 8-bit integer
cp_type.message_length Message Length Unsigned 32-bit integer CP type Message Length
ocsp.AcceptableResponses AcceptableResponses No value AcceptableResponses
ocsp.AcceptableResponses_item Item String AcceptableResponses/_item
ocsp.ArchiveCutoff ArchiveCutoff String ArchiveCutoff
ocsp.BasicOCSPResponse BasicOCSPResponse No value BasicOCSPResponse
ocsp.CrlID CrlID No value CrlID
ocsp.ServiceLocator ServiceLocator No value ServiceLocator
ocsp.byKey byKey Byte array ResponderID/byKey
ocsp.byName byName Unsigned 32-bit integer ResponderID/byName
ocsp.certID certID No value SingleResponse/certID
ocsp.certStatus certStatus Unsigned 32-bit integer SingleResponse/certStatus
ocsp.certs certs No value
ocsp.certs_item Item No value
ocsp.crlNum crlNum Signed 32-bit integer CrlID/crlNum
ocsp.crlTime crlTime String CrlID/crlTime
ocsp.crlUrl crlUrl String CrlID/crlUrl
ocsp.good good No value CertStatus/good
ocsp.hashAlgorithm hashAlgorithm No value CertID/hashAlgorithm
ocsp.issuer issuer Unsigned 32-bit integer ServiceLocator/issuer
ocsp.issuerKeyHash issuerKeyHash Byte array CertID/issuerKeyHash
ocsp.issuerNameHash issuerNameHash Byte array CertID/issuerNameHash
ocsp.locator locator Unsigned 32-bit integer ServiceLocator/locator
ocsp.nextUpdate nextUpdate String SingleResponse/nextUpdate
ocsp.optionalSignature optionalSignature No value OCSPRequest/optionalSignature
ocsp.producedAt producedAt String ResponseData/producedAt
ocsp.reqCert reqCert No value Request/reqCert
ocsp.requestExtensions requestExtensions No value TBSRequest/requestExtensions
ocsp.requestList requestList No value TBSRequest/requestList
ocsp.requestList_item Item No value TBSRequest/requestList/_item
ocsp.requestorName requestorName Unsigned 32-bit integer TBSRequest/requestorName
ocsp.responderID responderID Unsigned 32-bit integer ResponseData/responderID
ocsp.response response Byte array ResponseBytes/response
ocsp.responseBytes responseBytes No value OCSPResponse/responseBytes
ocsp.responseExtensions responseExtensions No value ResponseData/responseExtensions
ocsp.responseStatus responseStatus Unsigned 32-bit integer OCSPResponse/responseStatus
ocsp.responseType responseType String ResponseBytes/responseType
ocsp.responses responses No value ResponseData/responses
ocsp.responses_item Item No value ResponseData/responses/_item
ocsp.revocationReason revocationReason Unsigned 32-bit integer RevokedInfo/revocationReason
ocsp.revocationTime revocationTime String RevokedInfo/revocationTime
ocsp.revoked revoked No value CertStatus/revoked
ocsp.serialNumber serialNumber Signed 32-bit integer CertID/serialNumber
ocsp.signature signature Byte array
ocsp.signatureAlgorithm signatureAlgorithm No value
ocsp.singleExtensions singleExtensions No value SingleResponse/singleExtensions
ocsp.singleRequestExtensions singleRequestExtensions No value Request/singleRequestExtensions
ocsp.tbsRequest tbsRequest No value OCSPRequest/tbsRequest
ocsp.tbsResponseData tbsResponseData No value BasicOCSPResponse/tbsResponseData
ocsp.thisUpdate thisUpdate String SingleResponse/thisUpdate
ocsp.unknown unknown No value CertStatus/unknown
ocsp.version version Signed 32-bit integer
x509af.responseType.id ResponseType Id String ResponseType Id
ospf.advrouter Advertising Router IPv4 address
ospf.lsa Link-State Advertisement Type Unsigned 8-bit integer
ospf.lsa.asbr Summary LSA (ASBR) Boolean
ospf.lsa.asext AS-External LSA (ASBR) Boolean
ospf.lsa.attr External Attributes LSA Boolean
ospf.lsa.member Group Membership LSA Boolean
ospf.lsa.mpls MPLS Traffic Engineering LSA Boolean
ospf.lsa.network Network LSA Boolean
ospf.lsa.nssa NSSA AS-External LSA Boolean
ospf.lsa.opaque Opaque LSA Boolean
ospf.lsa.router Router LSA Boolean
ospf.lsa.summary Summary LSA (IP Network) Boolean
ospf.lsid_opaque_type Link State ID Opaque Type Unsigned 8-bit integer
ospf.lsid_te_lsa.instance Link State ID TE-LSA Instance Unsigned 16-bit integer
ospf.mpls.linkcolor MPLS/TE Link Resource Class/Color Unsigned 32-bit integer MPLS/TE Link Resource Class/Color
ospf.mpls.linkid MPLS/TE Link ID IPv4 address
ospf.mpls.linktype MPLS/TE Link Type Unsigned 8-bit integer MPLS/TE Link Type
ospf.mpls.local_addr MPLS/TE Local Interface Address IPv4 address
ospf.mpls.local_id MPLS/TE Local Interface Index Unsigned 32-bit integer
ospf.mpls.remote_addr MPLS/TE Remote Interface Address IPv4 address
ospf.mpls.remote_id MPLS/TE Remote Interface Index Unsigned 32-bit integer
ospf.mpls.routerid MPLS/TE Router ID IPv4 address
ospf.msg Message Type Unsigned 8-bit integer
ospf.msg.dbdesc Database Description Boolean
ospf.msg.hello Hello Boolean
ospf.msg.lsack Link State Adv Acknowledgement Boolean
ospf.msg.lsreq Link State Adv Request Boolean
ospf.msg.lsupdate Link State Adv Update Boolean
ospf.srcrouter Source OSPF Router IPv4 address
enc.af Address Family Unsigned 32-bit integer Protocol (IPv4 vs IPv6)
enc.flags Flags Unsigned 32-bit integer ENC flags
enc.spi SPI Unsigned 32-bit integer Security Parameter Index
pflog.length Header Length Unsigned 8-bit integer Length of Header
pflog.rulenr Rule Number Signed 32-bit integer Last matched firewall main ruleset rule number
pflog.ruleset Ruleset String Ruleset name in anchor
pflog.subrulenr Sub Rule Number Signed 32-bit integer Last matched firewall anchored ruleset rule number
pflog.action Action Unsigned 16-bit integer Action taken by PF on the packet
pflog.af Address Family Unsigned 32-bit integer Protocol (IPv4 vs IPv6)
pflog.dir Direction Unsigned 16-bit integer Direction of packet in stack (inbound versus outbound)
pflog.ifname Interface String Interface
pflog.reason Reason Unsigned 16-bit integer Reason for logging the packet
pflog.rnr Rule Number Signed 16-bit integer Last matched firewall rule number
olsr.ansn Advertised Neighbor Sequence Number (ANSN) Unsigned 16-bit integer Advertised Neighbor Sequence Number (ANSN)
olsr.data Data Byte array Data
olsr.hop_count Hop Count Unsigned 8-bit integer Hop Count
olsr.htime Hello emission interval Double-precision floating point Hello emission interval
olsr.interface6_addr Interface Address IPv6 address Interface Address
olsr.interface_addr Interface Address IPv4 address Interface Address
olsr.link_message_size Link Message Size Unsigned 16-bit integer Link Message Size
olsr.link_type Link Type Unsigned 8-bit integer Link Type
olsr.message_seq_num Message Sequence Number Unsigned 16-bit integer Message Sequence Number
olsr.message_size Message Unsigned 16-bit integer Message Size in Bytes
olsr.message_type Message Type Unsigned 8-bit integer Message Type
olsr.neighbor6_addr Neighbor Address IPv6 address Neighbor Address
olsr.neighbor_addr Neighbor Address IPv4 address Neighbor Address
olsr.netmask Netmask IPv4 address Netmask
olsr.netmask6 Netmask IPv6 address Netmask
olsr.network6_addr Network Address IPv6 address Network Address
olsr.network_addr Network Address IPv4 address Network Address
olsr.origin6_addr Originator Address IPv6 address Originator Address
olsr.origin_addr Originator Address IPv4 address Originator Address
olsr.packet_len Packet Length Unsigned 16-bit integer Packet Length in Bytes
olsr.packet_seq_num Packet Sequence Number Unsigned 16-bit integer Packet Sequence Number
olsr.ttl Time to Live Unsigned 8-bit integer Time to Live
olsr.vtime Validity Time Double-precision floating point Validity Time
olsr.willingness Willingness to Carry and Forward Unsigned 8-bit integer Willingness to Carry and Forward
pcnfsd.auth.client Authentication Client String Authentication Client
pcnfsd.auth.ident.clear Clear Ident String Authentication Clear Ident
pcnfsd.auth.ident.obscure Obscure Ident String Athentication Obscure Ident
pcnfsd.auth.password.clear Clear Password String Authentication Clear Password
pcnfsd.auth.password.obscure Obscure Password String Athentication Obscure Password
pcnfsd.comment Comment String Comment
pcnfsd.def_umask def_umask Signed 32-bit integer def_umask
pcnfsd.gid Group ID Unsigned 32-bit integer Group ID
pcnfsd.gids.count Group ID Count Unsigned 32-bit integer Group ID Count
pcnfsd.homedir Home Directory String Home Directory
pcnfsd.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
pcnfsd.procedure_v2 V2 Procedure Unsigned 32-bit integer V2 Procedure
pcnfsd.status Reply Status Unsigned 32-bit integer Status
pcnfsd.uid User ID Unsigned 32-bit integer User ID
pcnfsd.username User name String pcnfsd.username
pkcs1.coefficient coefficient Signed 32-bit integer RSAPrivateKey/coefficient
pkcs1.digest digest Byte array DigestInfo/digest
pkcs1.digestAlgorithm digestAlgorithm No value DigestInfo/digestAlgorithm
pkcs1.exponent1 exponent1 Signed 32-bit integer RSAPrivateKey/exponent1
pkcs1.exponent2 exponent2 Signed 32-bit integer RSAPrivateKey/exponent2
pkcs1.modulus modulus Signed 32-bit integer
pkcs1.prime1 prime1 Signed 32-bit integer RSAPrivateKey/prime1
pkcs1.prime2 prime2 Signed 32-bit integer RSAPrivateKey/prime2
pkcs1.privateExponent privateExponent Signed 32-bit integer RSAPrivateKey/privateExponent
pkcs1.publicExponent publicExponent Signed 32-bit integer
pkcs1.version version Signed 32-bit integer RSAPrivateKey/version
pkinit.AuthPack AuthPack No value AuthPack
pkinit.KDCDHKeyInfo KDCDHKeyInfo No value KDCDHKeyInfo
pkinit.caName caName Unsigned 32-bit integer TrustedCA/caName
pkinit.clientPublicValue clientPublicValue No value AuthPack/clientPublicValue
pkinit.ctime ctime No value PKAuthenticator/ctime
pkinit.cusec cusec Signed 32-bit integer PKAuthenticator/cusec
pkinit.dhKeyExpiration dhKeyExpiration No value KDCDHKeyInfo/dhKeyExpiration
pkinit.dhSignedData dhSignedData No value PaPkAsRep/dhSignedData
pkinit.encKeyPack encKeyPack No value PaPkAsRep/encKeyPack
pkinit.issuerAndSerial issuerAndSerial No value TrustedCA/issuerAndSerial
pkinit.kdcCert kdcCert No value PaPkAsReq/kdcCert
pkinit.nonce nonce Unsigned 32-bit integer PKAuthenticator/nonce
pkinit.paChecksum paChecksum No value PKAuthenticator/paChecksum
pkinit.pkAuthenticator pkAuthenticator No value AuthPack/pkAuthenticator
pkinit.signedAuthPack signedAuthPack No value PaPkAsReq/signedAuthPack
pkinit.subjectPublicKey subjectPublicKey Byte array KDCDHKeyInfo/subjectPublicKey
pkinit.supportedCMSTypes supportedCMSTypes No value AuthPack/supportedCMSTypes
pkinit.supportedCMSTypes_item Item No value AuthPack/supportedCMSTypes/_item
pkinit.trustedCertifiers trustedCertifiers No value PaPkAsReq/trustedCertifiers
pkinit.trustedCertifiers_item Item Unsigned 32-bit integer PaPkAsReq/trustedCertifiers/_item
cert Certififcate No value Certificate
pkixqualified.BiometricSyntax BiometricSyntax No value BiometricSyntax
pkixqualified.BiometricSyntax_item Item No value BiometricSyntax/_item
pkixqualified.Directorystring Directorystring String Directorystring
pkixqualified.Generalizedtime Generalizedtime String Generalizedtime
pkixqualified.NameRegistrationAuthorities_item Item Unsigned 32-bit integer NameRegistrationAuthorities/_item
pkixqualified.Printablestring Printablestring String Printablestring
pkixqualified.QCStatements QCStatements No value QCStatements
pkixqualified.QCStatements_item Item No value QCStatements/_item
pkixqualified.SemanticsInformation SemanticsInformation No value SemanticsInformation
pkixqualified.biometricDataHash biometricDataHash Byte array BiometricData/biometricDataHash
pkixqualified.biometricDataOid biometricDataOid String TypeOfBiometricData/biometricDataOid
pkixqualified.hashAlgorithm hashAlgorithm No value BiometricData/hashAlgorithm
pkixqualified.nameRegistrationAuthorities nameRegistrationAuthorities No value SemanticsInformation/nameRegistrationAuthorities
pkixqualified.predefinedBiometricType predefinedBiometricType Signed 32-bit integer TypeOfBiometricData/predefinedBiometricType
pkixqualified.semanticsIdentifier semanticsIdentifier String SemanticsInformation/semanticsIdentifier
pkixqualified.sourceDataUri sourceDataUri String BiometricData/sourceDataUri
pkixqualified.statementId statementId String QCStatement/statementId
pkixqualified.statementInfo statementInfo No value QCStatement/statementInfo
pkixqualified.typeOfBiometricData typeOfBiometricData Unsigned 32-bit integer BiometricData/typeOfBiometricData
pkixtsp.accuracy accuracy No value TSTInfo/accuracy
pkixtsp.addInfoNotAvailable addInfoNotAvailable Boolean
pkixtsp.badAlg badAlg Boolean
pkixtsp.badDataFormat badDataFormat Boolean
pkixtsp.badRequest badRequest Boolean
pkixtsp.certReq certReq Boolean TimeStampReq/certReq
pkixtsp.extensions extensions Unsigned 32-bit integer
pkixtsp.failInfo failInfo Byte array PKIStatusInfo/failInfo
pkixtsp.genTime genTime String TSTInfo/genTime
pkixtsp.hashAlgorithm hashAlgorithm No value MessageImprint/hashAlgorithm
pkixtsp.hashedMessage hashedMessage Byte array MessageImprint/hashedMessage
pkixtsp.messageImprint messageImprint No value
pkixtsp.micros micros Unsigned 32-bit integer Accuracy/micros
pkixtsp.millis millis Unsigned 32-bit integer Accuracy/millis
pkixtsp.nonce nonce Signed 32-bit integer
pkixtsp.ordering ordering Boolean TSTInfo/ordering
pkixtsp.policy policy String TSTInfo/policy
pkixtsp.reqPolicy reqPolicy String TimeStampReq/reqPolicy
pkixtsp.seconds seconds Signed 32-bit integer Accuracy/seconds
pkixtsp.serialNumber serialNumber Signed 32-bit integer TSTInfo/serialNumber
pkixtsp.status status No value TimeStampResp/status
pkixtsp.systemFailure systemFailure Boolean
pkixtsp.timeNotAvailable timeNotAvailable Boolean
pkixtsp.timeStampToken timeStampToken No value TimeStampResp/timeStampToken
pkixtsp.tsa tsa Unsigned 32-bit integer TSTInfo/tsa
pkixtsp.unacceptedExtension unacceptedExtension Boolean
pkixtsp.unacceptedPolicy unacceptedPolicy Boolean
pkixtsp.version version Signed 32-bit integer TimeStampReq/version
pkix1explicit.DirectoryString DirectoryString String DirectoryString
pkix1explicit.DomainParameters DomainParameters No value DomainParameters
pkix1explicit.Extensions_item Item No value Extensions/_item
pkix1explicit.RDNSequence_item Item No value RDNSequence/_item
pkix1explicit.RelativeDistinguishedName_item Item No value RelativeDistinguishedName/_item
pkix1explicit.critical critical Boolean Extension/critical
pkix1explicit.extnId extnId String Extension/extnId
pkix1explicit.extnValue extnValue Byte array Extension/extnValue
pkix1explicit.g g Signed 32-bit integer DomainParameters/g
pkix1explicit.id Id String Object identifier Id
pkix1explicit.j j Signed 32-bit integer DomainParameters/j
pkix1explicit.p p Signed 32-bit integer DomainParameters/p
pkix1explicit.pgenCounter pgenCounter Signed 32-bit integer ValidationParms/pgenCounter
pkix1explicit.q q Signed 32-bit integer DomainParameters/q
pkix1explicit.seed seed Byte array ValidationParms/seed
pkix1explicit.type type String AttributeTypeAndValue/type
pkix1explicit.validationParms validationParms No value DomainParameters/validationParms
pkix1explicit.value value No value AttributeTypeAndValue/value
pkix1implicit.AuthorityInfoAccessSyntax AuthorityInfoAccessSyntax No value AuthorityInfoAccessSyntax
pkix1implicit.AuthorityInfoAccessSyntax_item Item No value AuthorityInfoAccessSyntax/_item
pkix1implicit.Dummy Dummy No value Dummy
pkix1implicit.accessLocation accessLocation Unsigned 32-bit integer AccessDescription/accessLocation
pkix1implicit.accessMethod accessMethod String AccessDescription/accessMethod
pkix1implicit.bmpString bmpString String DisplayText/bmpString
pkix1implicit.explicitText explicitText Unsigned 32-bit integer UserNotice/explicitText
pkix1implicit.nameAssigner nameAssigner String EDIPartyName/nameAssigner
pkix1implicit.noticeNumbers noticeNumbers No value NoticeReference/noticeNumbers
pkix1implicit.noticeNumbers_item Item Signed 32-bit integer NoticeReference/noticeNumbers/_item
pkix1implicit.noticeRef noticeRef No value UserNotice/noticeRef
pkix1implicit.organization organization Unsigned 32-bit integer NoticeReference/organization
pkix1implicit.partyName partyName String EDIPartyName/partyName
pkix1implicit.utf8String utf8String String DisplayText/utf8String
pkix1implicit.visibleString visibleString String DisplayText/visibleString
pkixproxy.ProxyCertInfoExtension ProxyCertInfoExtension No value ProxyCertInfoExtension
pkixproxy.pCPathLenConstraint pCPathLenConstraint Signed 32-bit integer ProxyCertInfoExtension/pCPathLenConstraint
pkixproxy.policy policy Byte array ProxyPolicy/policy
pkixproxy.policyLanguage policyLanguage String ProxyPolicy/policyLanguage
pkixproxy.proxyPolicy proxyPolicy No value ProxyCertInfoExtension/proxyPolicy
mp.first First fragment Boolean
mp.last Last fragment Boolean
mp.seq Sequence number Unsigned 24-bit integer
vj.ack_delta Ack delta Unsigned 16-bit integer Delta for acknowledgment sequence number
vj.change_mask Change mask Unsigned 8-bit integer
vj.change_mask_a Ack number changed Boolean Acknowledgement sequence number changed
vj.change_mask_c Connection changed Boolean Connection number changed
vj.change_mask_i IP ID change != 1 Boolean IP ID changed by a value other than 1
vj.change_mask_p Push bit set Boolean TCP PSH flag set
vj.change_mask_s Sequence number changed Boolean Sequence number changed
vj.change_mask_u Urgent pointer set Boolean Urgent pointer set
vj.change_mask_w Window changed Boolean TCP window changed
vj.connection_number Connection number Unsigned 8-bit integer Connection number
vj.ip_id_delta IP ID delta Unsigned 16-bit integer Delta for IP ID
vj.seq_delta Sequence delta Unsigned 16-bit integer Delta for sequence number
vj.tcp_cksum TCP checksum Unsigned 16-bit integer TCP checksum
vj.urp Urgent pointer Unsigned 16-bit integer Urgent pointer
vj.win_delta Window delta Signed 16-bit integer Delta for window
pn_dcp.block Block No value
pn_dcp.block_length DataBlockLength Unsigned 16-bit integer
pn_dcp.data Undecoded Data String
pn_dcp.data_length DCPDataLength Unsigned 16-bit integer
pn_dcp.option Option Unsigned 8-bit integer
pn_dcp.req_status Status Unsigned 16-bit integer
pn_dcp.res_status ResponseStatus Unsigned 16-bit integer
pn_dcp.reserved16 Reserved Unsigned 16-bit integer
pn_dcp.reserved8 Reserved Unsigned 8-bit integer
pn_dcp.response_delay ResponseDelay Unsigned 16-bit integer
pn_dcp.result Result Unsigned 8-bit integer
pn_dcp.service_id Service-ID Unsigned 8-bit integer
pn_dcp.service_type Service-Type Unsigned 8-bit integer
pn_dcp.subobtion_ip_default_router Default-router IPv4 address
pn_dcp.subobtion_ip_ip IPaddress IPv4 address
pn_dcp.subobtion_ip_subnetmask Subnetmask IPv4 address
pn_dcp.suboption Suboption Unsigned 8-bit integer
pn_dcp.suboption_all Suboption Unsigned 8-bit integer
pn_dcp.suboption_control Suboption Unsigned 8-bit integer
pn_dcp.suboption_control_status ResponseStatus Unsigned 8-bit integer
pn_dcp.suboption_device Suboption Unsigned 8-bit integer
pn_dcp.suboption_device_id DeviceID Unsigned 16-bit integer
pn_dcp.suboption_device_nameofstation NameOfStation String
pn_dcp.suboption_device_role Device-role Unsigned 8-bit integer
pn_dcp.suboption_device_typeofstation TypeOfStation String
pn_dcp.suboption_dhcp Suboption Unsigned 8-bit integer
pn_dcp.suboption_ip Suboption Unsigned 8-bit integer
pn_dcp.suboption_ip_status Status Unsigned 16-bit integer
pn_dcp.suboption_lldp Suboption Unsigned 8-bit integer
pn_dcp.suboption_manuf Suboption Unsigned 8-bit integer
pn_dcp.suboption_vendor_id VendorID Unsigned 16-bit integer
pn_dcp.xid xid Unsigned 32-bit integer
pn_io.ack_seq_num AckSeqNum Unsigned 16-bit integer
pn_io.add_flags AddFlags No value
pn_io.add_val1 AdditionalValue1 Unsigned 16-bit integer
pn_io.add_val2 AdditionalValue2 Unsigned 16-bit integer
pn_io.alarm_dst_endpoint AlarmDstEndpoint Unsigned 16-bit integer
pn_io.alarm_specifier AlarmSpecifier No value
pn_io.alarm_specifier.ardiagnosis ARDiagnosisState Unsigned 16-bit integer
pn_io.alarm_specifier.channel ChannelDiagnosis Unsigned 16-bit integer
pn_io.alarm_specifier.manufacturer ManufacturerSpecificDiagnosis Unsigned 16-bit integer
pn_io.alarm_specifier.sequence SequenceNumber Unsigned 16-bit integer
pn_io.alarm_specifier.submodule SubmoduleDiagnosisState Unsigned 16-bit integer
pn_io.alarm_src_endpoint AlarmSrcEndpoint Unsigned 16-bit integer
pn_io.alarm_type AlarmType Unsigned 16-bit integer
pn_io.api API Unsigned 32-bit integer
pn_io.ar_uuid ARUUID String
pn_io.args_len ArgsLength Unsigned 32-bit integer
pn_io.args_max ArgsMaximum Unsigned 32-bit integer
pn_io.array Array No value
pn_io.array_act_count ActualCount Unsigned 32-bit integer
pn_io.array_max_count MaximumCount Unsigned 32-bit integer
pn_io.array_offset Offset Unsigned 32-bit integer
pn_io.block Block No value
pn_io.block_length BlockLength Unsigned 16-bit integer
pn_io.block_type BlockType Unsigned 16-bit integer
pn_io.block_version_high BlockVersionHigh Unsigned 8-bit integer
pn_io.block_version_low BlockVersionLow Unsigned 8-bit integer
pn_io.control_block_properties ControlBlockProperties Unsigned 16-bit integer
pn_io.control_command ControlCommand No value
pn_io.control_command.applready ApplicationReady Unsigned 16-bit integer
pn_io.control_command.done Done Unsigned 16-bit integer
pn_io.control_command.prmend PrmEnd Unsigned 16-bit integer
pn_io.control_command.release Release Unsigned 16-bit integer
pn_io.data Undecoded Data String
pn_io.error_code ErrorCode Unsigned 8-bit integer
pn_io.error_code1 ErrorCode1 Unsigned 8-bit integer
pn_io.error_code2 ErrorCode2 Unsigned 8-bit integer
pn_io.error_decode ErrorDecode Unsigned 8-bit integer
pn_io.index Index Unsigned 16-bit integer
pn_io.ioxs IOxS Unsigned 8-bit integer
pn_io.ioxs.datastate DataState (1:good/0:bad) Unsigned 8-bit integer
pn_io.ioxs.extension Extension (1:another IOxS follows/0:no IOxS follows) Unsigned 8-bit integer
pn_io.ioxs.instance Instance (only valid, if DataState is bad) Unsigned 8-bit integer
pn_io.ioxs.res14 Reserved (should be zero) Unsigned 8-bit integer
pn_io.module_ident_number ModuleIdentNumber Unsigned 32-bit integer
pn_io.opnum Operation Unsigned 16-bit integer
pn_io.padding Padding String
pn_io.pdu_type PDUType No value
pn_io.pdu_type.type Type Unsigned 8-bit integer
pn_io.pdu_type.version Version Unsigned 8-bit integer
pn_io.record_data_length RecordDataLength Unsigned 32-bit integer
pn_io.reserved16 Reserved Unsigned 16-bit integer
pn_io.send_seq_num SendSeqNum Unsigned 16-bit integer
pn_io.seq_number SeqNumber Unsigned 16-bit integer
pn_io.session_key SessionKey Unsigned 16-bit integer
pn_io.slot_nr SlotNumber Unsigned 16-bit integer
pn_io.status Status No value
pn_io.submodule_ident_number SubmoduleIdentNumber Unsigned 32-bit integer
pn_io.subslot_nr SubslotNumber Unsigned 16-bit integer
pn_io.tack TACK Unsigned 8-bit integer
pn_io.var_part_len VarPartLen Unsigned 16-bit integer
pn_io.window_size WindowSize Unsigned 8-bit integer
pn_rt.cycle_counter CycleCounter Unsigned 16-bit integer
pn_rt.data Data Byte array
pn_rt.ds DataStatus Unsigned 8-bit integer
pn_rt.ds_ok StationProblemIndicator (1:Ok/0:Problem) Unsigned 8-bit integer
pn_rt.ds_operate ProviderState (1:Run/0:Stop) Unsigned 8-bit integer
pn_rt.ds_primary State (1:Primary/0:Backup) Unsigned 8-bit integer
pn_rt.ds_res1 Reserved (should be zero) Unsigned 8-bit integer
pn_rt.ds_res3 Reserved (should be zero) Unsigned 8-bit integer
pn_rt.ds_res67 Reserved (should be zero) Unsigned 8-bit integer
pn_rt.ds_valid DataValid (1:Valid/0:Invalid) Unsigned 8-bit integer
pn_rt.frame_id FrameID Unsigned 16-bit integer
pn_rt.malformed Malformed Byte array
pn_rt.transfer_status TransferStatus Unsigned 8-bit integer
per.bit_string_length Bit String Length Unsigned 32-bit integer Number of bits in the Bit String
per.choice_extension Choice Extension Unsigned 32-bit integer Which extension of the Choice is encoded
per.extension_bit Extension Bit Boolean The extension bit of an aggregate
per.extension_present_bit Extension Present Bit Boolean Whether this optional extension is present or not
per.generalstring_length GeneralString Length Unsigned 32-bit integer Length of the GeneralString
per.num_sequence_extensions Number of Sequence Extensions Unsigned 32-bit integer Number of extensions encoded in this sequence
per.object_length Object Length Unsigned 32-bit integer Length of the object identifier
per.octet_string_length Octet String Length Unsigned 32-bit integer Number of bytes in the Octet String
per.open_type_length Open Type Length Unsigned 32-bit integer Length of an open type encoding
per.optional_field_bit Optional Field Bit Boolean This bit specifies the presence/absence of an optional field
per.sequence_of_length Sequence-Of Length Unsigned 32-bit integer Number of items in the Sequence Of
per.small_number_bit Small Number Bit Boolean The small number bit for a section 10.6 integer
pktc.ack_required ACK Required Flag Boolean ACK Required Flag
pktc.asd Application Specific Data No value KMMID/DOI application specific data
pktc.asd.ipsec_auth_alg IPsec Authentication Algorithm Unsigned 8-bit integer IPsec Authentication Algorithm
pktc.asd.ipsec_enc_alg IPsec Encryption Transform ID Unsigned 8-bit integer IPsec Encryption Transform ID
pktc.asd.ipsec_spi IPsec Security Parameter Index Unsigned 32-bit integer Security Parameter Index for inbound Security Association (IPsec)
pktc.asd.snmp_auth_alg SNMPv3 Authentication Algorithm Unsigned 8-bit integer SNMPv3 Authentication Algorithm
pktc.asd.snmp_enc_alg SNMPv3 Encryption Transform ID Unsigned 8-bit integer SNMPv3 Encryption Transform ID
pktc.asd.snmp_engine_boots SNMPv3 Engine Boots Unsigned 32-bit integer SNMPv3 Engine Boots
pktc.asd.snmp_engine_id SNMPv3 Engine ID Byte array SNMPv3 Engine ID
pktc.asd.snmp_engine_id.len SNMPv3 Engine ID Length Unsigned 8-bit integer Length of SNMPv3 Engine ID
pktc.asd.snmp_engine_time SNMPv3 Engine Time Unsigned 32-bit integer SNMPv3 Engine ID Time
pktc.asd.snmp_usm_username SNMPv3 USM User Name String SNMPv3 USM User Name
pktc.asd.snmp_usm_username.len SNMPv3 USM User Name Length Unsigned 8-bit integer Length of SNMPv3 USM User Name
pktc.ciphers List of Ciphersuites No value List of Ciphersuites
pktc.ciphers.len Number of Ciphersuites Unsigned 8-bit integer Number of Ciphersuites
pktc.doi Domain of Interpretation Unsigned 8-bit integer Domain of Interpretation
pktc.grace_period Grace Period Unsigned 32-bit integer Grace Period in seconds
pktc.kmmid Key Management Message ID Unsigned 8-bit integer Key Management Message ID
pktc.mtafqdn.enterprise Enterprise Number Unsigned 32-bit integer Enterprise Number
pktc.mtafqdn.fqdn MTA FQDN String MTA FQDN
pktc.mtafqdn.ip MTA IP Address IPv4 address MTA IP Address (all zeros if not supplied)
pktc.mtafqdn.mac MTA MAC address 6-byte Hardware (MAC) Address MTA MAC address
pktc.mtafqdn.manu_cert_revoked Manufacturer Cert Revocation Time Date/Time stamp Manufacturer Cert Revocation Time (UTC) or 0 if not revoked
pktc.mtafqdn.msgtype Message Type Unsigned 8-bit integer MTA FQDN Message Type
pktc.mtafqdn.pub_key_hash MTA Public Key Hash Byte array MTA Public Key Hash (SHA-1)
pktc.mtafqdn.version Protocol Version Unsigned 8-bit integer MTA FQDN Protocol Version
pktc.reestablish Re-establish Flag Boolean Re-establish Flag
pktc.server_nonce Server Nonce Unsigned 32-bit integer Server Nonce random number
pktc.server_principal Server Kerberos Principal Identifier String Server Kerberos Principal Identifier
pktc.sha1_hmac SHA-1 HMAC Byte array SHA-1 HMAC
pktc.spl Security Parameter Lifetime Unsigned 32-bit integer Lifetime in seconds of security parameter
pktc.timestamp Timestamp String Timestamp (UTC)
pktc.version.major Major version Unsigned 8-bit integer Major version of PKTC
pktc.version.minor Minor version Unsigned 8-bit integer Minor version of PKTC
ppp.address Address Unsigned 8-bit integer
ppp.control Control Unsigned 8-bit integer
ppp.protocol Protocol Unsigned 16-bit integer
pptp.type Message type Unsigned 16-bit integer PPTP message type
pagp.flags Flags Unsigned 8-bit integer Infomation flags
pagp.flags.automode Auto Mode Boolean 1 = Auto Mode enabled, 0 = Desirable Mode
pagp.flags.slowhello Slow Hello Boolean 1 = using Slow Hello, 0 = Slow Hello disabled
pagp.flags.state Consistent State Boolean 1 = Consistent State, 0 = Not Ready
pagp.localdevid Local Device ID 6-byte Hardware (MAC) Address Local device ID
pagp.localearncap Local Learn Capability Unsigned 8-bit integer Local learn capability
pagp.localgroupcap Local Group Capability Unsigned 32-bit integer The local group capability
pagp.localgroupifindex Local Group ifindex Unsigned 32-bit integer The local group interface index
pagp.localportpri Local Port Hot Standby Priority Unsigned 8-bit integer The local hot standby priority assigned to this port
pagp.localsentportifindex Local Sent Port ifindex Unsigned 32-bit integer The interface index of the local port used to send PDU
pagp.numtlvs Number of TLVs Unsigned 16-bit integer Number of TLVs following
pagp.partnercount Partner Count Unsigned 16-bit integer Partner count
pagp.partnerdevid Partner Device ID 6-byte Hardware (MAC) Address Remote Device ID (MAC)
pagp.partnergroupcap Partner Group Capability Unsigned 32-bit integer Remote group capability
pagp.partnergroupifindex Partner Group ifindex Unsigned 32-bit integer Remote group interface index
pagp.partnerlearncap Partner Learn Capability Unsigned 8-bit integer Remote learn capability
pagp.partnerportpri Partner Port Hot Standby Priority Unsigned 8-bit integer Remote port priority
pagp.partnersentportifindex Partner Sent Port ifindex Unsigned 32-bit integer Remote port interface index sent
pagp.tlv Entry Unsigned 16-bit integer Type/Length/Value
pagp.tlvagportmac Agport MAC Address 6-byte Hardware (MAC) Address Source MAC on frames for this aggregate
pagp.tlvdevname Device Name String sysName of device
pagp.tlvportname Physical Port Name String Name of port used to send PDU
pagp.transid Transaction ID Unsigned 32-bit integer Flush transaction ID
pagp.version Version Unsigned 8-bit integer Identifies the PAgP PDU version: 1 = Info, 2 = Flush
portmap.answer Answer Boolean Answer
portmap.args Arguments Byte array Arguments
portmap.port Port Unsigned 32-bit integer Port
portmap.proc Procedure Unsigned 32-bit integer Procedure
portmap.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
portmap.procedure_v2 V2 Procedure Unsigned 32-bit integer V2 Procedure
portmap.procedure_v3 V3 Procedure Unsigned 32-bit integer V3 Procedure
portmap.procedure_v4 V4 Procedure Unsigned 32-bit integer V4 Procedure
portmap.prog Program Unsigned 32-bit integer Program
portmap.proto Protocol Unsigned 32-bit integer Protocol
portmap.result Result Byte array Result
portmap.rpcb RPCB No value RPCB
portmap.rpcb.addr Universal Address String Universal Address
portmap.rpcb.netid Network Id String Network Id
portmap.rpcb.owner Owner of this Service String Owner of this Service
portmap.rpcb.prog Program Unsigned 32-bit integer Program
portmap.rpcb.version Version Unsigned 32-bit integer Version
portmap.uaddr Universal Address String Universal Address
portmap.version Version Unsigned 32-bit integer Version
pop.request Request Boolean TRUE if POP request
pop.response Response Boolean TRUE if POP response
pgsql.authtype Authentication type Signed 32-bit integer The type of authentication requested by the backend.
pgsql.code Code String SQLState code.
pgsql.col.index Column index Unsigned 32-bit integer The position of a column within a row.
pgsql.col.name Column name String The name of a column.
pgsql.col.typemod Type modifier Signed 32-bit integer The type modifier for a column.
pgsql.condition Condition String The name of a NOTIFY condition.
pgsql.copydata Copy data Byte array Data sent following a Copy-in or Copy-out response.
pgsql.detail Detail String Detailed error message.
pgsql.error Error String An error message.
pgsql.file File String The source-code file where an error was reported.
pgsql.format Format Unsigned 16-bit integer A format specifier.
pgsql.frontend Frontend Boolean True for messages from the frontend, false otherwise.
pgsql.hint Hint String A suggestion to resolve an error.
pgsql.key Key Unsigned 32-bit integer The secret key used by a particular backend.
pgsql.length Length Unsigned 32-bit integer The length of the message (not including the type).
pgsql.line Line String The line number on which an error was reported.
pgsql.message Message String Error message.
pgsql.oid OID Unsigned 32-bit integer An object identifier.
pgsql.oid.table Table OID Unsigned 32-bit integer The object identifier of a table.
pgsql.oid.type Type OID Unsigned 32-bit integer The object identifier of a type.
pgsql.parameter_name Parameter name String The name of a database parameter.
pgsql.parameter_value Parameter value String The value of a database parameter.
pgsql.password Password String A password.
pgsql.pid PID Unsigned 32-bit integer The process ID of a backend.
pgsql.portal Portal String The name of a portal.
pgsql.position Position String The index of the error within the query string.
pgsql.query Query String A query string.
pgsql.routine Routine String The routine that reported an error.
pgsql.salt Salt value Byte array The salt to use while encrypting a password.
pgsql.severity Severity String Message severity.
pgsql.statement Statement String The name of a prepared statement.
pgsql.status Status Unsigned 8-bit integer The transaction status of the backend.
pgsql.tag Tag String A completion tag.
pgsql.text Text String Text from the backend.
pgsql.type Type String A one-byte message type identifier.
pgsql.val.data Data Byte array Parameter data.
pgsql.val.length Column length Signed 32-bit integer The length of a parameter value, in bytes. -1 means NULL.
pgsql.where Context String The context in which an error occurred.
pgm.ack.bitmap Packet Bitmap Unsigned 32-bit integer
pgm.ack.maxsqn Maximum Received Sequence Number Unsigned 32-bit integer
pgm.data.sqn Data Packet Sequence Number Unsigned 32-bit integer
pgm.data.trail Trailing Edge Sequence Number Unsigned 32-bit integer
pgm.genopts.len Length Unsigned 8-bit integer
pgm.genopts.opx Option Extensibility Bits Unsigned 8-bit integer
pgm.genopts.type Type Unsigned 8-bit integer
pgm.hdr.cksum Checksum Unsigned 16-bit integer
pgm.hdr.cksum_bad Bad Checksum Boolean
pgm.hdr.dport Destination Port Unsigned 16-bit integer
pgm.hdr.gsi Global Source Identifier Byte array
pgm.hdr.opts Options Unsigned 8-bit integer
pgm.hdr.opts.netsig Network Significant Options Boolean
pgm.hdr.opts.opt Options Boolean
pgm.hdr.opts.parity Parity Boolean
pgm.hdr.opts.varlen Variable length Parity Packet Option Boolean
pgm.hdr.sport Source Port Unsigned 16-bit integer
pgm.hdr.tsdulen Transport Service Data Unit Length Unsigned 16-bit integer
pgm.hdr.type Type Unsigned 8-bit integer
pgm.nak.grp Multicast Group NLA IPv4 address
pgm.nak.grpafi Multicast Group AFI Unsigned 16-bit integer
pgm.nak.grpres Reserved Unsigned 16-bit integer
pgm.nak.sqn Requested Sequence Number Unsigned 32-bit integer
pgm.nak.src Source NLA IPv4 address
pgm.nak.srcafi Source NLA AFI Unsigned 16-bit integer
pgm.nak.srcres Reserved Unsigned 16-bit integer
pgm.opts.ccdata.acker Acker IPv4 address
pgm.opts.ccdata.afi Acker AFI Unsigned 16-bit integer
pgm.opts.ccdata.lossrate Loss Rate Unsigned 16-bit integer
pgm.opts.ccdata.res Reserved Unsigned 8-bit integer
pgm.opts.ccdata.res2 Reserved Unsigned 16-bit integer
pgm.opts.ccdata.tstamp Time Stamp Unsigned 16-bit integer
pgm.opts.fragment.first_sqn First Sequence Number Unsigned 32-bit integer
pgm.opts.fragment.fragment_offset Fragment Offset Unsigned 32-bit integer
pgm.opts.fragment.res Reserved Unsigned 8-bit integer
pgm.opts.fragment.total_length Total Length Unsigned 32-bit integer
pgm.opts.join.min_join Minimum Sequence Number Unsigned 32-bit integer
pgm.opts.join.res Reserved Unsigned 8-bit integer
pgm.opts.len Length Unsigned 8-bit integer
pgm.opts.nak.list List Byte array
pgm.opts.nak.op Reserved Unsigned 8-bit integer
pgm.opts.nak_bo_ivl.bo_ivl Back-off Interval Unsigned 32-bit integer
pgm.opts.nak_bo_ivl.bo_ivl_sqn Back-off Interval Sequence Number Unsigned 32-bit integer
pgm.opts.nak_bo_ivl.res Reserved Unsigned 8-bit integer
pgm.opts.nak_bo_rng.max_bo_ivl Max Back-off Interval Unsigned 32-bit integer
pgm.opts.nak_bo_rng.min_bo_ivl Min Back-off Interval Unsigned 32-bit integer
pgm.opts.nak_bo_rng.res Reserved Unsigned 8-bit integer
pgm.opts.parity_prm.op Parity Parameters Unsigned 8-bit integer
pgm.opts.parity_prm.prm_grp Transmission Group Size Unsigned 32-bit integer
pgm.opts.redirect.afi DLR AFI Unsigned 16-bit integer
pgm.opts.redirect.dlr DLR IPv4 address
pgm.opts.redirect.res Reserved Unsigned 8-bit integer
pgm.opts.redirect.res2 Reserved Unsigned 16-bit integer
pgm.opts.tlen Total Length Unsigned 16-bit integer
pgm.opts.type Type Unsigned 8-bit integer
pgm.poll.backoff_ivl Back-off Interval Unsigned 32-bit integer
pgm.poll.matching_bmask Matching Bitmask Unsigned 32-bit integer
pgm.poll.path Path NLA IPv4 address
pgm.poll.pathafi Path NLA AFI Unsigned 16-bit integer
pgm.poll.rand_str Random String Unsigned 32-bit integer
pgm.poll.res Reserved Unsigned 16-bit integer
pgm.poll.round Round Unsigned 16-bit integer
pgm.poll.sqn Sequence Number Unsigned 32-bit integer
pgm.poll.subtype Subtype Unsigned 16-bit integer
pgm.polr.res Reserved Unsigned 16-bit integer
pgm.polr.round Round Unsigned 16-bit integer
pgm.polr.sqn Sequence Number Unsigned 32-bit integer
pgm.port Port Unsigned 16-bit integer
pgm.spm.lead Leading Edge Sequence Number Unsigned 32-bit integer
pgm.spm.path Path NLA IPv4 address
pgm.spm.pathafi Path NLA AFI Unsigned 16-bit integer
pgm.spm.res Reserved Unsigned 16-bit integer
pgm.spm.sqn Sequence number Unsigned 32-bit integer
pgm.spm.trail Trailing Edge Sequence Number Unsigned 32-bit integer
ptp.control control Unsigned 8-bit integer
ptp.dr.delayreceipttimestamp delayReceiptTimestamp Time duration
ptp.dr.delayreceipttimestamp_nanoseconds delayReceiptTimestamp (nanoseconds) Signed 32-bit integer
ptp.dr.delayreceipttimestamp_seconds delayReceiptTimestamp (Seconds) Unsigned 32-bit integer
ptp.dr.requestingsourcecommunicationtechnology requestingSourceCommunicationTechnology Unsigned 8-bit integer
ptp.dr.requestingsourceportid requestingSourcePortId Unsigned 16-bit integer
ptp.dr.requestingsourcesequenceid requestingSourceSequenceId Unsigned 16-bit integer
ptp.dr.requestingsourceuuid requestingSourceUuid 6-byte Hardware (MAC) Address
ptp.flags flags Unsigned 16-bit integer
ptp.flags.assist PTP_ASSIST Unsigned 16-bit integer
ptp.flags.boundary_clock PTP_BOUNDARY_CLOCK Unsigned 16-bit integer
ptp.flags.ext_sync PTP_EXT_SYNC Unsigned 16-bit integer
ptp.flags.li59 PTP_LI59 Unsigned 16-bit integer
ptp.flags.li61 PTP_LI61 Unsigned 16-bit integer
ptp.flags.parent_stats PTP_PARENT_STATS Unsigned 16-bit integer
ptp.flags.sync_burst PTP_SYNC_BURST Unsigned 16-bit integer
ptp.fu.associatedsequenceid associatedSequenceId Unsigned 16-bit integer
ptp.fu.hf_ptp_fu_preciseorigintimestamp preciseOriginTimestamp Time duration
ptp.fu.hf_ptp_fu_preciseorigintimestamp_seconds preciseOriginTimestamp (seconds) Unsigned 32-bit integer
ptp.fu.preciseorigintimestamp_nanoseconds preciseOriginTimestamp (nanoseconds) Signed 32-bit integer
ptp.messagetype messageType Unsigned 8-bit integer
ptp.mm.boundaryhops boundaryHops Signed 16-bit integer
ptp.mm.clock.identity.clockcommunicationtechnology clockCommunicationTechnology Unsigned 8-bit integer
ptp.mm.clock.identity.clockportfield clockPortField Unsigned 16-bit integer
ptp.mm.clock.identity.clockuuidfield clockUuidField 6-byte Hardware (MAC) Address
ptp.mm.clock.identity.manufactureridentity manufacturerIdentity Byte array
ptp.mm.current.data.set.offsetfrommaster offsetFromMaster Time duration
ptp.mm.current.data.set.offsetfrommasternanoseconds offsetFromMasterNanoseconds Signed 32-bit integer
ptp.mm.current.data.set.offsetfrommasterseconds offsetFromMasterSeconds Unsigned 32-bit integer
ptp.mm.current.data.set.onewaydelay oneWayDelay Time duration
ptp.mm.current.data.set.onewaydelaynanoseconds oneWayDelayNanoseconds Signed 32-bit integer
ptp.mm.current.data.set.onewaydelayseconds oneWayDelaySeconds Unsigned 32-bit integer
ptp.mm.current.data.set.stepsremoved stepsRemoved Unsigned 16-bit integer
ptp.mm.default.data.set.clockcommunicationtechnology clockCommunicationTechnology Unsigned 8-bit integer
ptp.mm.default.data.set.clockfollowupcapable clockFollowupCapable Boolean
ptp.mm.default.data.set.clockidentifier clockIdentifier Byte array
ptp.mm.default.data.set.clockportfield clockPortField Unsigned 16-bit integer
ptp.mm.default.data.set.clockstratum clockStratum Unsigned 8-bit integer
ptp.mm.default.data.set.clockuuidfield clockUuidField 6-byte Hardware (MAC) Address
ptp.mm.default.data.set.clockvariance clockVariance Unsigned 16-bit integer
ptp.mm.default.data.set.externaltiming externalTiming Boolean
ptp.mm.default.data.set.initializable initializable Boolean
ptp.mm.default.data.set.isboundaryclock isBoundaryClock Boolean
ptp.mm.default.data.set.numberforeignrecords numberForeignRecords Unsigned 16-bit integer
ptp.mm.default.data.set.numberports numberPorts Unsigned 16-bit integer
ptp.mm.default.data.set.preferred preferred Boolean
ptp.mm.default.data.set.subdomainname subDomainName String
ptp.mm.default.data.set.syncinterval syncInterval Signed 8-bit integer
ptp.mm.foreign.data.set.foreignmastercommunicationtechnology foreignMasterCommunicationTechnology Unsigned 8-bit integer
ptp.mm.foreign.data.set.foreignmasterportidfield foreignMasterPortIdField Unsigned 16-bit integer
ptp.mm.foreign.data.set.foreignmastersyncs foreignMasterSyncs Unsigned 16-bit integer
ptp.mm.foreign.data.set.foreignmasteruuidfield foreignMasterUuidField 6-byte Hardware (MAC) Address
ptp.mm.foreign.data.set.returnedportnumber returnedPortNumber Unsigned 16-bit integer
ptp.mm.foreign.data.set.returnedrecordnumber returnedRecordNumber Unsigned 16-bit integer
ptp.mm.get.foreign.data.set.recordkey recordKey Unsigned 16-bit integer
ptp.mm.global.time.data.set.currentutcoffset currentUtcOffset Signed 16-bit integer
ptp.mm.global.time.data.set.epochnumber epochNumber Unsigned 16-bit integer
ptp.mm.global.time.data.set.leap59 leap59 Boolean
ptp.mm.global.time.data.set.leap61 leap61 Boolean
ptp.mm.global.time.data.set.localtime localTime Time duration
ptp.mm.global.time.data.set.localtimenanoseconds localTimeNanoseconds Signed 32-bit integer
ptp.mm.global.time.data.set.localtimeseconds localTimeSeconds Unsigned 32-bit integer
ptp.mm.initialize.clock.initialisationkey initialisationKey Unsigned 16-bit integer
ptp.mm.managementmessagekey managementMessageKey Unsigned 8-bit integer
ptp.mm.messageparameters messageParameters Byte array
ptp.mm.parameterlength parameterLength Unsigned 16-bit integer
ptp.mm.parent.data.set.grandmastercommunicationtechnology grandmasterCommunicationTechnology Unsigned 8-bit integer
ptp.mm.parent.data.set.grandmasteridentifier grandmasterIdentifier Byte array
ptp.mm.parent.data.set.grandmasterisboundaryclock grandmasterIsBoundaryClock Boolean
ptp.mm.parent.data.set.grandmasterportidfield grandmasterPortIdField Unsigned 16-bit integer
ptp.mm.parent.data.set.grandmasterpreferred grandmasterPreferred Boolean
ptp.mm.parent.data.set.grandmastersequencenumber grandmasterSequenceNumber Unsigned 16-bit integer
ptp.mm.parent.data.set.grandmasterstratum grandmasterStratum Unsigned 8-bit integer
ptp.mm.parent.data.set.grandmasteruuidfield grandmasterUuidField 6-byte Hardware (MAC) Address
ptp.mm.parent.data.set.grandmastervariance grandmasterVariance Signed 16-bit integer
ptp.mm.parent.data.set.observeddrift observedDrift Signed 32-bit integer
ptp.mm.parent.data.set.observedvariance observedVariance Signed 16-bit integer
ptp.mm.parent.data.set.parentcommunicationtechnology parentCommunicationTechnology Unsigned 8-bit integer
ptp.mm.parent.data.set.parentexternaltiming parentExternalTiming Boolean
ptp.mm.parent.data.set.parentfollowupcapable parentFollowupCapable Boolean
ptp.mm.parent.data.set.parentlastsyncsequencenumber parentLastSyncSequenceNumber Unsigned 16-bit integer
ptp.mm.parent.data.set.parentportid parentPortId Unsigned 16-bit integer
ptp.mm.parent.data.set.parentstats parentStats Boolean
ptp.mm.parent.data.set.parentuuid parentUuid 6-byte Hardware (MAC) Address
ptp.mm.parent.data.set.parentvariance parentVariance Unsigned 16-bit integer
ptp.mm.parent.data.set.utcreasonable utcReasonable Boolean
ptp.mm.port.data.set.burstenabled burstEnabled Boolean
ptp.mm.port.data.set.eventportaddress eventPortAddress Byte array
ptp.mm.port.data.set.eventportaddressoctets eventPortAddressOctets Unsigned 8-bit integer
ptp.mm.port.data.set.generalportaddress generalPortAddress Byte array
ptp.mm.port.data.set.generalportaddressoctets generalPortAddressOctets Unsigned 8-bit integer
ptp.mm.port.data.set.lastgeneraleventsequencenumber lastGeneralEventSequenceNumber Unsigned 16-bit integer
ptp.mm.port.data.set.lastsynceventsequencenumber lastSyncEventSequenceNumber Unsigned 16-bit integer
ptp.mm.port.data.set.portcommunicationtechnology portCommunicationTechnology Unsigned 8-bit integer
ptp.mm.port.data.set.portidfield portIdField Unsigned 16-bit integer
ptp.mm.port.data.set.portstate portState Unsigned 8-bit integer
ptp.mm.port.data.set.portuuidfield portUuidField 6-byte Hardware (MAC) Address
ptp.mm.port.data.set.returnedportnumber returnedPortNumber Unsigned 16-bit integer
ptp.mm.port.data.set.subdomainaddress subdomainAddress Byte array
ptp.mm.port.data.set.subdomainaddressoctets subdomainAddressOctets Unsigned 8-bit integer
ptp.mm.set.subdomain.subdomainname subdomainName String
ptp.mm.set.sync.interval.syncinterval syncInterval Unsigned 16-bit integer
ptp.mm.set.time.localtime localtime Time duration
ptp.mm.set.time.localtimenanoseconds localTimeNanoseconds Signed 32-bit integer
ptp.mm.set.time.localtimeseconds localtimeSeconds Unsigned 32-bit integer
ptp.mm.targetcommunicationtechnology targetCommunicationTechnology Unsigned 8-bit integer
ptp.mm.targetportid targetPortId Unsigned 16-bit integer
ptp.mm.targetuuid targetUuid 6-byte Hardware (MAC) Address
ptp.mm.update.default.data.set.clockidentifier clockIdentifier Byte array
ptp.mm.update.default.data.set.clockstratum clockStratum Unsigned 8-bit integer
ptp.mm.update.default.data.set.clockvariance clockVariance Unsigned 16-bit integer
ptp.mm.update.default.data.set.preferred preferred Boolean
ptp.mm.update.default.data.set.subdomainname subdomainName String
ptp.mm.update.default.data.set.syncinterval syncInterval Signed 8-bit integer
ptp.mm.update.global.time.properties.currentutcoffset currentUtcOffset Unsigned 16-bit integer
ptp.mm.update.global.time.properties.epochnumber epochNumber Unsigned 16-bit integer
ptp.mm.update.global.time.properties.leap59 leap59 Boolean
ptp.mm.update.global.time.properties.leap61 leap61 Boolean
ptp.sdr.currentutcoffset currentUTCOffset Signed 16-bit integer
ptp.sdr.epochnumber epochNumber Unsigned 16-bit integer
ptp.sdr.estimatedmasterdrift estimatedMasterDrift Signed 32-bit integer
ptp.sdr.estimatedmastervariance estimatedMasterVariance Signed 16-bit integer
ptp.sdr.grandmasterclockidentifier grandmasterClockIdentifier String
ptp.sdr.grandmasterclockstratum grandmasterClockStratum Unsigned 8-bit integer
ptp.sdr.grandmasterclockuuid grandMasterClockUuid 6-byte Hardware (MAC) Address
ptp.sdr.grandmasterclockvariance grandmasterClockVariance Signed 16-bit integer
ptp.sdr.grandmastercommunicationtechnology grandmasterCommunicationTechnology Unsigned 8-bit integer
ptp.sdr.grandmasterisboundaryclock grandmasterIsBoundaryClock Unsigned 8-bit integer
ptp.sdr.grandmasterportid grandmasterPortId Unsigned 16-bit integer
ptp.sdr.grandmasterpreferred grandmasterPreferred Unsigned 8-bit integer
ptp.sdr.grandmastersequenceid grandmasterSequenceId Unsigned 16-bit integer
ptp.sdr.localclockidentifier localClockIdentifier String
ptp.sdr.localclockstratum localClockStratum Unsigned 8-bit integer
ptp.sdr.localclockvariance localClockVariance Signed 16-bit integer
ptp.sdr.localstepsremoved localStepsRemoved Unsigned 16-bit integer
ptp.sdr.origintimestamp originTimestamp Time duration
ptp.sdr.origintimestamp_nanoseconds originTimestamp (nanoseconds) Signed 32-bit integer
ptp.sdr.origintimestamp_seconds originTimestamp (seconds) Unsigned 32-bit integer
ptp.sdr.parentcommunicationtechnology parentCommunicationTechnology Unsigned 8-bit integer
ptp.sdr.parentportfield parentPortField Unsigned 16-bit integer
ptp.sdr.parentuuid parentUuid 6-byte Hardware (MAC) Address
ptp.sdr.syncinterval syncInterval Signed 8-bit integer
ptp.sdr.utcreasonable utcReasonable Boolean
ptp.sequenceid sequenceId Unsigned 16-bit integer
ptp.sourcecommunicationtechnology sourceCommunicationTechnology Unsigned 8-bit integer
ptp.sourceportid sourcePortId Unsigned 16-bit integer
ptp.sourceuuid sourceUuid 6-byte Hardware (MAC) Address
ptp.subdomain subdomain String
ptp.versionnetwork versionNetwork Unsigned 16-bit integer
ptp.versionptp versionPTP Unsigned 16-bit integer
prism.channel.data Channel Field Unsigned 32-bit integer
prism.frmlen.data Frame Length Field Unsigned 32-bit integer
prism.hosttime.data Host Time Field Unsigned 32-bit integer
prism.istx.data IsTX Field Unsigned 32-bit integer
prism.mactime.data MAC Time Field Unsigned 32-bit integer
prism.msgcode Message Code Unsigned 32-bit integer
prism.msglen Message Length Unsigned 32-bit integer
prism.noise.data Noise Field Unsigned 32-bit integer
prism.rate.data Rate Field Unsigned 32-bit integer
prism.rssi.data RSSI Field Unsigned 32-bit integer
prism.signal.data Signal Field Unsigned 32-bit integer
prism.sq.data SQ Field Unsigned 32-bit integer
rpriv.get_eptgt_rqst_authn_svc Authn_Svc Unsigned 32-bit integer
rpriv.get_eptgt_rqst_authz_svc Authz_Svc Unsigned 32-bit integer
rpriv.get_eptgt_rqst_key_size Key_Size Unsigned 32-bit integer
rpriv.get_eptgt_rqst_key_size2 Key_Size Unsigned 32-bit integer
rpriv.get_eptgt_rqst_key_t Key_t String
rpriv.get_eptgt_rqst_key_t2 Key_t2 String
rpriv.get_eptgt_rqst_var1 Var1 Unsigned 32-bit integer
rpriv.opnum Operation Unsigned 16-bit integer Operation
pim.cksum Checksum Unsigned 16-bit integer
pim.code Code Unsigned 8-bit integer
pim.type Type Unsigned 8-bit integer
pim.version Version Unsigned 8-bit integer
q2931.call_ref Call reference value Byte array
q2931.call_ref_flag Call reference flag Boolean
q2931.call_ref_len Call reference value length Unsigned 8-bit integer
q2931.disc Protocol discriminator Unsigned 8-bit integer
q2931.message_action_indicator Action indicator Unsigned 8-bit integer
q2931.message_flag Flag Boolean
q2931.message_len Message length Unsigned 16-bit integer
q2931.message_type Message type Unsigned 8-bit integer
q2931.message_type_ext Message type extension Unsigned 8-bit integer
q931.call_ref Call reference value Byte array
q931.call_ref_flag Call reference flag Boolean
q931.call_ref_len Call reference value length Unsigned 8-bit integer
q931.called_party_number.digits Called party number digits String
q931.calling_party_number.digits Calling party number digits String
q931.cause_location Cause location Unsigned 8-bit integer
q931.cause_value Cause value Unsigned 8-bit integer
q931.coding_standard Coding standard Unsigned 8-bit integer
q931.connected_number.digits Connected party number digits String
q931.disc Protocol discriminator Unsigned 8-bit integer
q931.extension_ind Extension indicator Boolean
q931.information_transfer_capability Information transfer capability Unsigned 8-bit integer
q931.information_transfer_rate Information transfer rate Unsigned 8-bit integer
q931.message_type Message type Unsigned 8-bit integer
q931.number_type Number type Unsigned 8-bit integer
q931.numbering_plan Numbering plan Unsigned 8-bit integer
q931.presentation_ind Presentation indicator Unsigned 8-bit integer
q931.reassembled_in Reassembled Q.931 in frame Frame number This Q.931 message is reassembled in this frame
q931.redirecting_number.digits Redirecting party number digits String
q931.screening_ind Screening indicator Unsigned 8-bit integer
q931.segment Q.931 Segment Frame number Q.931 Segment
q931.segment.error Defragmentation error Frame number Defragmentation error due to illegal fragments
q931.segment.multipletails Multiple tail fragments found Boolean Several tails were found when defragmenting the packet
q931.segment.overlap Segment overlap Boolean Fragment overlaps with other fragments
q931.segment.overlap.conflict Conflicting data in fragment overlap Boolean Overlapping fragments contained conflicting data
q931.segment.toolongfragment Segment too long Boolean Segment contained data past end of packet
q931.segment_type Segmented message type Unsigned 8-bit integer
q931.segments Q.931 Segments No value Q.931 Segments
q931.transfer_mode Transfer mode Unsigned 8-bit integer
q931.uil1 User information layer 1 protocol Unsigned 8-bit integer
q933.call_ref Call reference value Byte array
q933.call_ref_flag Call reference flag Boolean
q933.call_ref_len Call reference value length Unsigned 8-bit integer
q933.called_party_number.digits Called party number digits String
q933.calling_party_number.digits Calling party number digits String
q933.cause_location Cause location Unsigned 8-bit integer
q933.cause_value Cause value Unsigned 8-bit integer
q933.coding_standard Coding standard Unsigned 8-bit integer
q933.connected_number.digits Connected party number digits String
q933.disc Protocol discriminator Unsigned 8-bit integer
q933.extension_ind Extension indicator Boolean
q933.information_transfer_capability Information transfer capability Unsigned 8-bit integer
q933.message_type Message type Unsigned 8-bit integer
q933.number_type Number type Unsigned 8-bit integer
q933.numbering_plan numbering plan Unsigned 8-bit integer
q933.presentation_ind Presentation indicator Unsigned 8-bit integer
q933.redirecting_number.digits Redirecting party number digits String
q933.screening_ind Screening indicator Unsigned 8-bit integer
q933.transfer_mode Transfer mode Unsigned 8-bit integer
q933.uil1 User information layer 1 protocol Unsigned 8-bit integer
quake2.c2s Client to Server Unsigned 32-bit integer Client to Server
quake2.connectionless Connectionless Unsigned 32-bit integer Connectionless
quake2.connectionless.marker Marker Unsigned 32-bit integer Marker
quake2.connectionless.text Text String Text
quake2.game Game Unsigned 32-bit integer Game
quake2.game.client.command Client Command Type Unsigned 8-bit integer Quake II Client Command
quake2.game.client.command.move Bitfield Unsigned 8-bit integer Quake II Client Command Move
quake2.game.client.command.move.angles Angles (pitch) Unsigned 8-bit integer
quake2.game.client.command.move.buttons Buttons Unsigned 8-bit integer
quake2.game.client.command.move.chksum Checksum Unsigned 8-bit integer Quake II Client Command Move
quake2.game.client.command.move.impulse Impulse Unsigned 8-bit integer
quake2.game.client.command.move.lframe Last Frame Unsigned 32-bit integer Quake II Client Command Move
quake2.game.client.command.move.lightlevel Lightlevel Unsigned 8-bit integer Quake II Client Command Move
quake2.game.client.command.move.movement Movement (fwd) Unsigned 8-bit integer
quake2.game.client.command.move.msec Msec Unsigned 8-bit integer Quake II Client Command Move
quake2.game.qport QPort Unsigned 32-bit integer Quake II Client Port
quake2.game.rel1 Reliable Boolean Packet is reliable and may be retransmitted
quake2.game.rel2 Reliable Boolean Packet was reliable and may be retransmitted
quake2.game.seq1 Sequence Number Unsigned 32-bit integer Sequence number of the current packet
quake2.game.seq2 Sequence Number Unsigned 32-bit integer Sequence number of the last received packet
quake2.game.server.command Server Command Unsigned 8-bit integer Quake II Server Command
quake2.s2c Server to Client Unsigned 32-bit integer Server to Client
quake3.connectionless Connectionless Unsigned 32-bit integer Connectionless
quake3.connectionless.command Command String Command
quake3.connectionless.marker Marker Unsigned 32-bit integer Marker
quake3.connectionless.text Text String Text
quake3.direction Direction No value Packet Direction
quake3.game Game Unsigned 32-bit integer Game
quake3.game.qport QPort Unsigned 32-bit integer Quake III Arena Client Port
quake3.game.rel1 Reliable Boolean Packet is reliable and may be retransmitted
quake3.game.rel2 Reliable Boolean Packet was reliable and may be retransmitted
quake3.game.seq1 Sequence Number Unsigned 32-bit integer Sequence number of the current packet
quake3.game.seq2 Sequence Number Unsigned 32-bit integer Sequence number of the last received packet
quake3.server.addr Server Address IPv4 address Server IP Address
quake3.server.port Server Port Unsigned 16-bit integer Server UDP Port
quake.control.accept.port Port Unsigned 32-bit integer Game Data Port
quake.control.command Command Unsigned 8-bit integer Control Command
quake.control.connect.game Game String Game Name
quake.control.connect.version Version Unsigned 8-bit integer Game Protocol Version Number
quake.control.player_info.address Address String Player Address
quake.control.player_info.colors Colors Unsigned 32-bit integer Player Colors
quake.control.player_info.colors.pants Pants Unsigned 8-bit integer Pants Color
quake.control.player_info.colors.shirt Shirt Unsigned 8-bit integer Shirt Color
quake.control.player_info.connect_time Connect Time Unsigned 32-bit integer Player Connect Time
quake.control.player_info.frags Frags Unsigned 32-bit integer Player Frags
quake.control.player_info.name Name String Player Name
quake.control.player_info.player Player Unsigned 8-bit integer Player
quake.control.reject.reason Reason String Reject Reason
quake.control.rule_info.lastrule Last Rule String Last Rule Name
quake.control.rule_info.rule Rule String Rule Name
quake.control.rule_info.value Value String Rule Value
quake.control.server_info.address Address String Server Address
quake.control.server_info.game Game String Game Name
quake.control.server_info.map Map String Map Name
quake.control.server_info.max_player Maximal Number of Players Unsigned 8-bit integer Maximal Number of Players
quake.control.server_info.num_player Number of Players Unsigned 8-bit integer Current Number of Players
quake.control.server_info.server Server String Server Name
quake.control.server_info.version Version Unsigned 8-bit integer Game Protocol Version Number
quake.header.flags Flags Unsigned 16-bit integer Flags
quake.header.length Length Unsigned 16-bit integer full data length
quake.header.sequence Sequence Unsigned 32-bit integer Sequence Number
quakeworld.c2s Client to Server Unsigned 32-bit integer Client to Server
quakeworld.connectionless Connectionless Unsigned 32-bit integer Connectionless
quakeworld.connectionless.arguments Arguments String Arguments
quakeworld.connectionless.command Command String Command
quakeworld.connectionless.connect.challenge Challenge Signed 32-bit integer Challenge from the server
quakeworld.connectionless.connect.infostring Infostring String Infostring with additional variables
quakeworld.connectionless.connect.infostring.key Key String Infostring Key
quakeworld.connectionless.connect.infostring.key_value Key/Value String Key and Value
quakeworld.connectionless.connect.infostring.value Value String Infostring Value
quakeworld.connectionless.connect.qport QPort Unsigned 32-bit integer QPort of the client
quakeworld.connectionless.connect.version Version Unsigned 32-bit integer Protocol Version
quakeworld.connectionless.marker Marker Unsigned 32-bit integer Marker
quakeworld.connectionless.rcon.command Command String Command
quakeworld.connectionless.rcon.password Password String Rcon Password
quakeworld.connectionless.text Text String Text
quakeworld.game Game Unsigned 32-bit integer Game
quakeworld.game.qport QPort Unsigned 32-bit integer QuakeWorld Client Port
quakeworld.game.rel1 Reliable Boolean Packet is reliable and may be retransmitted
quakeworld.game.rel2 Reliable Boolean Packet was reliable and may be retransmitted
quakeworld.game.seq1 Sequence Number Unsigned 32-bit integer Sequence number of the current packet
quakeworld.game.seq2 Sequence Number Unsigned 32-bit integer Sequence number of the last received packet
quakeworld.s2c Server to Client Unsigned 32-bit integer Server to Client
qllc.address Address Field Unsigned 8-bit integer
qllc.control Control Field Unsigned 8-bit integer
mpeg1.stream MPEG-1 stream Byte array
rtp.payload_mpeg_T T Unsigned 16-bit integer
rtp.payload_mpeg_an AN Unsigned 16-bit integer
rtp.payload_mpeg_b Beginning-of-slice Boolean
rtp.payload_mpeg_bfc BFC Unsigned 16-bit integer
rtp.payload_mpeg_fbv FBV Unsigned 16-bit integer
rtp.payload_mpeg_ffc FFC Unsigned 16-bit integer
rtp.payload_mpeg_ffv FFV Unsigned 16-bit integer
rtp.payload_mpeg_mbz MBZ Unsigned 16-bit integer
rtp.payload_mpeg_n New Picture Header Unsigned 16-bit integer
rtp.payload_mpeg_p Picture type Unsigned 16-bit integer
rtp.payload_mpeg_s Sequence Header Boolean
rtp.payload_mpeg_tr Temporal Reference Unsigned 16-bit integer
rtpevent.duration Event Duration Unsigned 16-bit integer
rtpevent.end_of_event End of Event Boolean
rtpevent.event_id Event ID Unsigned 8-bit integer
rtpevent.reserved Reserved Boolean
rtpevent.volume Volume Unsigned 8-bit integer
ripng.cmd Command Unsigned 8-bit integer
ripng.version Version Unsigned 8-bit integer
rpc_browser.opnum Operation Unsigned 16-bit integer Operation
rpc_browser.rc Return code Unsigned 32-bit integer Browser return code
rpc_browser.unknown.bytes Unknown bytes Byte array Unknown bytes. If you know what this is, contact ethereal developers.
rpc_browser.unknown.hyper Unknown hyper Unsigned 64-bit integer Unknown hyper. If you know what this is, contact ethereal developers.
rpc_browser.unknown.long Unknown long Unsigned 32-bit integer Unknown long. If you know what this is, contact ethereal developers.
rpc_browser.unknown.string Unknown string String Unknown string. If you know what this is, contact ethereal developers.
rs_plcy.opnum Operation Unsigned 16-bit integer Operation
rstat.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
rstat.procedure_v2 V2 Procedure Unsigned 32-bit integer V2 Procedure
rstat.procedure_v3 V3 Procedure Unsigned 32-bit integer V3 Procedure
rstat.procedure_v4 V4 Procedure Unsigned 32-bit integer V4 Procedure
rsync.command Command String String
rsync.data rsync data Byte array
rsync.hdr_magic Magic Header String
rsync.hdr_version Header Version String
rsync.motd Server MOTD String String
rsync.query Client Query String String
rsync.response Server Response String String
rx.abort ABORT Packet No value ABORT Packet
rx.abort_code Abort Code Unsigned 32-bit integer Abort Code
rx.ack ACK Packet No value ACK Packet
rx.ack_type ACK Type Unsigned 8-bit integer Type Of ACKs
rx.bufferspace Bufferspace Unsigned 16-bit integer Number Of Packets Available
rx.callnumber Call Number Unsigned 32-bit integer Call Number
rx.challenge CHALLENGE Packet No value CHALLENGE Packet
rx.cid CID Unsigned 32-bit integer CID
rx.encrypted Encrypted No value Encrypted part of response packet
rx.epoch Epoch Date/Time stamp Epoch
rx.first First Packet Unsigned 32-bit integer First Packet
rx.flags Flags Unsigned 8-bit integer Flags
rx.flags.client_init Client Initiated Boolean Client Initiated
rx.flags.free_packet Free Packet Boolean Free Packet
rx.flags.last_packet Last Packet Boolean Last Packet
rx.flags.more_packets More Packets Boolean More Packets
rx.flags.request_ack Request Ack Boolean Request Ack
rx.if_mtu Interface MTU Unsigned 32-bit integer Interface MTU
rx.inc_nonce Inc Nonce Unsigned 32-bit integer Incremented Nonce
rx.kvno kvno Unsigned 32-bit integer kvno
rx.level Level Unsigned 32-bit integer Level
rx.max_mtu Max MTU Unsigned 32-bit integer Max MTU
rx.max_packets Max Packets Unsigned 32-bit integer Max Packets
rx.maxskew Max Skew Unsigned 16-bit integer Max Skew
rx.min_level Min Level Unsigned 32-bit integer Min Level
rx.nonce Nonce Unsigned 32-bit integer Nonce
rx.num_acks Num ACKs Unsigned 8-bit integer Number Of ACKs
rx.prev Prev Packet Unsigned 32-bit integer Previous Packet
rx.reason Reason Unsigned 8-bit integer Reason For This ACK
rx.response RESPONSE Packet No value RESPONSE Packet
rx.rwind rwind Unsigned 32-bit integer rwind
rx.securityindex Security Index Unsigned 32-bit integer Security Index
rx.seq Sequence Number Unsigned 32-bit integer Sequence Number
rx.serial Serial Unsigned 32-bit integer Serial
rx.serviceid Service ID Unsigned 16-bit integer Service ID
rx.spare Spare/Checksum Unsigned 16-bit integer Spare/Checksum
rx.ticket ticket Byte array Ticket
rx.ticket_len Ticket len Unsigned 32-bit integer Ticket Length
rx.type Type Unsigned 8-bit integer Type
rx.userstatus User Status Unsigned 32-bit integer User Status
rx.version Version Unsigned 32-bit integer Version Of Challenge/Response
ranap.CN_DomainIndicator CN-DomainIndicator Unsigned 8-bit integer
ranap.Extension_Field_Value Extension Field Value Byte array
ranap.IuSigConId IuSigConId Unsigned 24-bit integer
ranap.LAC LAC Byte array
ranap.NAS_PDU NAS-PDU Byte array
ranap.PLMN_ID PLMN-ID Byte array
ranap.ProtocolExtensionContainer_present ProtocolExtensionContainer Unsigned 8-bit integer
ranap.ProtocolExtensionFields.octets Number of octets Unsigned 16-bit integer
ranap.RAB_ID RAB-ID Unsigned 8-bit integer
ranap.RAB_SetupOrModifyItemSecond.PDP_Type PDP-Type Unsigned 8-bit integer
ranap.RAB_SetupOrModifyItemSecond.dataVolumeReportingIndication dataVolumeReportingIndication Unsigned 8-bit integer
ranap.RAB_SetupOrModifyItemSecond.dl_GTP_PDU_SequenceNumber dl_GTP_PDU_SequenceNumber Unsigned 16-bit integer
ranap.RAB_SetupOrModifyItemSecond.ul_GTP_PDU_SequenceNumber ul_GTP_PDU_SequenceNumber Unsigned 16-bit integer
ranap.RAC RAC Byte array
ranap.RNC_ID RNC ID Unsigned 16-bit integer
ranap.SAC SAC Byte array
ranap.allocationOrRetentionPriority_present allocationOrRetentionPriority Unsigned 8-bit integer
ranap.bindingID bindingID Byte array
ranap.cause_choice cause choice Unsigned 8-bit integer
ranap.cause_value cause value Unsigned 8-bit integer
ranap.dataVolumeReference dataVolumeReference Unsigned 8-bit integer
ranap.dataVolumeReference_present dataVolumeReference Unsigned 8-bit integer
ranap.dataVolumeReportingIndication_present dataVolumeReportingIndication Unsigned 8-bit integer
ranap.dl-UnsuccessfullyTransmittedDataVolume dl-UnsuccessfullyTransmittedDataVolume Unsigned 32-bit integer
ranap.dl_GTP_PDU_SequenceNumber_present dl_GTP_PDU_SequenceNumber Unsigned 8-bit integer
ranap.dl_N_PDU_SequenceNumber_present dl_N_PDU_SequenceNumber Unsigned 8-bit integer
ranap.dl_UnsuccessfullyTransmittedDataVolume_present dl-UnsuccessfullyTransmittedDataVolume Unsigned 8-bit integer
ranap.dl_dataVolumes_present dl_dataVolumes Unsigned 8-bit integer
ranap.gTP_TEI gTP_TEI Byte array
ranap.guaranteedBitRate_present guaranteedBitRate Unsigned 8-bit integer
ranap.iECriticality iECriticality Unsigned 8-bit integer
ranap.iEsCriticalityDiagnostics_present iEsCriticalityDiagnostics Unsigned 8-bit integer
ranap.ie.ProtocolExtensionFields.Id ProtocolExtensionField ID Unsigned 16-bit integer
ranap.ie.ProtocolExtensionFields.criticality Criticality of ProtocolExtensionField Unsigned 8-bit integer
ranap.ie.criticality Criticality of IE Unsigned 8-bit integer
ranap.ie.iE-Extensions_present iE-Extensions Unsigned 8-bit integer
ranap.ie.ie_id IE-ID Unsigned 16-bit integer
ranap.ie.number_of_octets Number of Octets in IE Unsigned 16-bit integer
ranap.ie.protocol_extension_present Protocol Extension Unsigned 8-bit integer
ranap.ie_pair.first_criticality First Criticality Unsigned 8-bit integer
ranap.ie_pair.first_value.number_of_octets Number of Octets in first value Unsigned 16-bit integer
ranap.ie_pair.second_criticality Second Criticality Unsigned 8-bit integer
ranap.ie_pair.second_value.number_of_octets Number of Octets in second value Unsigned 16-bit integer
ranap.iuTransportAssociation_present iuTransportAssociation Unsigned 8-bit integer
ranap.msg_extension_present Message Extension Unsigned 8-bit integer
ranap.nAS-SynchronisationIndicator nAS-SynchronisationIndicator Unsigned 8-bit integer
ranap.nAS-SynchronisationIndicator_present nAS-SynchronisationIndicator Unsigned 8-bit integer
ranap.nas_pdu_length length of NAS-PDU Unsigned 16-bit integer
ranap.num_of_CriticalityDiagnostics_IEs Number of CriticalityDiagnostics-IEs Unsigned 16-bit integer
ranap.number_of_ProtocolExtensionFields Number of ProtocolExtensionFields Unsigned 16-bit integer
ranap.number_of_RABs Number of RABs Unsigned 8-bit integer
ranap.number_of_ies Number of IEs in list Unsigned 16-bit integer
ranap.pDP_TypeInformation_present pDP_TypeInformation Unsigned 8-bit integer
ranap.pdu.criticality Criticality of PDU Unsigned 8-bit integer
ranap.pdu.num_of_octets Number of Octets in PDU Unsigned 16-bit integer
ranap.pdu.number_of_ies Number of IEs in PDU Unsigned 16-bit integer
ranap.procedureCode_present procedureCode Unsigned 8-bit integer
ranap.procedureCriticality procedureCriticality Unsigned 8-bit integer
ranap.procedureCriticality_present procedureCriticality Unsigned 8-bit integer
ranap.procedure_code Procedure Code Unsigned 8-bit integer
ranap.rAB_Parameters_present rAB-Parameters Unsigned 8-bit integer
ranap.rAB_SubflowCombinationBitRate_present subflowSDU_Size Unsigned 8-bit integer
ranap.rab_Parameters.allocationOrRetentionPriority.pre_emptionCapability pre-emptionCapability Unsigned 8-bit integer
ranap.rab_Parameters.allocationOrRetentionPriority.pre_emptionVulnerability pre-emptionVulnerability Unsigned 8-bit integer
ranap.rab_Parameters.allocationOrRetentionPriority.priorityLevel priorityLevel Unsigned 8-bit integer
ranap.rab_Parameters.allocationOrRetentionPriority.queuingAllowed queuingAllowed Unsigned 8-bit integer
ranap.rab_Parameters.deliveryOrder deliveryOrder Unsigned 8-bit integer
ranap.rab_Parameters.guaranteedBitrate guaranteedBitrate Unsigned 32-bit integer
ranap.rab_Parameters.maxBitrate maxBitrate Unsigned 32-bit integer
ranap.rab_Parameters.maxSDU_Size maxSDU_Size Unsigned 16-bit integer
ranap.rab_Parameters.rAB_AsymmetryIndicator rAB_AsymmetryIndicator Unsigned 8-bit integer
ranap.rab_Parameters.rAB_SubflowCombinationBitRate rAB_SubflowCombinationBitRate Unsigned 32-bit integer
ranap.rab_Parameters.ranap_deliveryOfErroneousSDU deliveryOfErroneousSDU Unsigned 8-bit integer
ranap.rab_Parameters.relocationRequirement relocationRequirement Unsigned 8-bit integer
ranap.rab_Parameters.residualBitErrorRatio.exponent residualBitErrorRatio: exponent Unsigned 8-bit integer
ranap.rab_Parameters.residualBitErrorRatio.mantissa residualBitErrorRatio: mantissa Unsigned 8-bit integer
ranap.rab_Parameters.sDU_ErrorRatio.exponent sDU_ErrorRatio: exponent Unsigned 8-bit integer
ranap.rab_Parameters.sDU_ErrorRatio.mantissa sDU_ErrorRatio: mantissa Unsigned 8-bit integer
ranap.rab_Parameters.sourceStatisticsDescriptor sourceStatisticsDescriptor Unsigned 8-bit integer
ranap.rab_Parameters.subflowSDU_Size subflowSDU_Size Unsigned 8-bit integer
ranap.rab_Parameters.trafficClass Traffic Class Unsigned 8-bit integer
ranap.rab_Parameters.trafficHandlingPriority trafficHandlingPriority Unsigned 8-bit integer
ranap.rab_Parameters.transferDelay transferDelay Unsigned 16-bit integer
ranap.ranap_pdu_index RANAP-PDU Index Unsigned 8-bit integer
ranap.relocationRequirement_present relocationRequirement Unsigned 8-bit integer
ranap.repetitionNumber repetitionNumber Unsigned 16-bit integer
ranap.repetitionNumber_present repetitionNumber Unsigned 8-bit integer
ranap.sDU_ErrorRatio_present sDU_ErrorRatio Unsigned 8-bit integer
ranap.sDU_FormatInformationParameters_present sDU_FormatInformationParameters Unsigned 8-bit integer
ranap.sapi SAPI Unsigned 8-bit integer
ranap.service_Handover service-Handover Unsigned 8-bit integer
ranap.service_Handover_present service-Handover Unsigned 8-bit integer
ranap.sourceStatisticsDescriptor_present sourceStatisticsDescriptor Unsigned 8-bit integer
ranap.subflowSDU_Size_present subflowSDU_Size Unsigned 8-bit integer
ranap.trafficHandlingPriority_present trafficHandlingPriority Unsigned 8-bit integer
ranap.transferDelay_present transferDelay Unsigned 8-bit integer
ranap.transportLayerAddress transportLayerAddress Byte array
ranap.transportLayerAddress_length bit length of transportLayerAddress Unsigned 8-bit integer
ranap.transportLayerAddress_present transportLayerAddress Unsigned 8-bit integer
ranap.transportLayerInformation_present transportLayerInformation Unsigned 8-bit integer
ranap.triggeringMessage triggeringMessage Unsigned 8-bit integer
ranap.triggeringMessage_present triggeringMessage Unsigned 8-bit integer
ranap.uP_ModeVersions uP_ModeVersions Byte array
ranap.ul_GTP_PDU_SequenceNumber_present ul_GTP_PDU_SequenceNumber Unsigned 8-bit integer
ranap.ul_N_PDU_SequenceNumber_present ul_N_PDU_SequenceNumber Unsigned 8-bit integer
ranap.userPlaneInformation_present userPlaneInformation Unsigned 8-bit integer
ranap.userPlaneMode userPlaneMode Unsigned 8-bit integer
radius.3gpp.ggsn_ip GGSN IP Address IPv4 address
radius.3gpp.sgsn_ip SGSN IP Address IPv4 address
radius.acct.input_octets Input Octets Unsigned 32-bit integer
radius.acct.input_packets Input Packets Unsigned 32-bit integer
radius.acct.output_octets Output Octets Unsigned 32-bit integer
radius.acct.output_packets Output Packets Unsigned 32-bit integer
radius.acct.sessionid Accounting Session Id String
radius.acct.status_type Accounting Status Type Unsigned 32-bit integer
radius.called Called-Station-Id String
radius.calling Calling-Station-Id String
radius.cisco.cai Cisco-Account-Info String
radius.class Class Byte array
radius.code Code Unsigned 8-bit integer
radius.framed_addr Framed Address IPv4 address
radius.framed_protocol Framed-Protocol Unsigned 32-bit integer
radius.id Identifier Unsigned 8-bit integer
radius.length Length Unsigned 16-bit integer
radius.nas_ip Nas IP Address IPv4 address
radius.reply_msg Reply-Message String Radius Reply Message
radius.service_type Service-Type Unsigned 32-bit integer
radius.username User-Name String
radius.vendor.pkt.bcid.ec Event Counter Unsigned 32-bit integer PacketCable Event Message BCID Event Counter
radius.vendor.pkt.bcid.ts Timestamp Unsigned 32-bit integer PacketCable Event Message BCID Timestamp
radius.vendor.pkt.ctc.cc Event Object Unsigned 32-bit integer PacketCable Call Termination Cause Code
radius.vendor.pkt.ctc.sd Source Document Unsigned 16-bit integer PacketCable Call Termination Cause Source Document
radius.vendor.pkt.emh.ac Attribute Count Unsigned 16-bit integer PacketCable Event Message Attribute Count
radius.vendor.pkt.emh.emt Event Message Type Unsigned 16-bit integer PacketCable Event Message Type
radius.vendor.pkt.emh.eo Event Object Unsigned 8-bit integer PacketCable Event Message Event Object
radius.vendor.pkt.emh.et Element Type Unsigned 16-bit integer PacketCable Event Message Element Type
radius.vendor.pkt.emh.priority Priority Unsigned 8-bit integer PacketCable Event Message Priority
radius.vendor.pkt.emh.sn Sequence Number Unsigned 32-bit integer PacketCable Event Message Sequence Number
radius.vendor.pkt.emh.st Status Unsigned 32-bit integer PacketCable Event Message Status
radius.vendor.pkt.emh.st.ei Status Unsigned 32-bit integer PacketCable Event Message Status Error Indicator
radius.vendor.pkt.emh.st.emp Event Message Proxied Unsigned 32-bit integer PacketCable Event Message Status Event Message Proxied
radius.vendor.pkt.emh.st.eo Event Origin Unsigned 32-bit integer PacketCable Event Message Status Event Origin
radius.vendor.pkt.emh.vid Event Message Version ID Unsigned 16-bit integer PacketCable Event Message header version ID
radius.vendor.pkt.esi.cccp CCC-Port Unsigned 16-bit integer PacketCable Electronic-Surveillance-Indication CCC-Port
radius.vendor.pkt.esi.cdcp CDC-Port Unsigned 16-bit integer PacketCable Electronic-Surveillance-Indication CDC-Port
radius.vendor.pkt.esi.dfccca DF_CDC_Address IPv4 address PacketCable Electronic-Surveillance-Indication DF_CCC_Address
radius.vendor.pkt.esi.dfcdca DF_CDC_Address IPv4 address PacketCable Electronic-Surveillance-Indication DF_CDC_Address
radius.vendor.pkt.qs QoS Status Unsigned 32-bit integer PacketCable QoS Descriptor Attribute QoS Status
radius.vendor.pkt.qs.flags.gi Grant Interval Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Grant Interval
radius.vendor.pkt.qs.flags.gpi Grants Per Interval Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Grants Per Interval
radius.vendor.pkt.qs.flags.mcb Maximum Concatenated Burst Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Maximum Concatenated Burst
radius.vendor.pkt.qs.flags.mdl Maximum Downstream Latency Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Maximum Downstream Latency
radius.vendor.pkt.qs.flags.mps Minium Packet Size Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Minimum Packet Size
radius.vendor.pkt.qs.flags.mrtr Minimum Reserved Traffic Rate Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Minimum Reserved Traffic Rate
radius.vendor.pkt.qs.flags.msr Maximum Sustained Rate Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Maximum Sustained Rate
radius.vendor.pkt.qs.flags.mtb Maximum Traffic Burst Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Maximum Traffic Burst
radius.vendor.pkt.qs.flags.npi Nominal Polling Interval Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Nominal Polling Interval
radius.vendor.pkt.qs.flags.sfst Service Flow Scheduling Type Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Service Flow Scheduling Type
radius.vendor.pkt.qs.flags.srtp Status Request/Transmission Policy Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Status Request/Transmission Policy
radius.vendor.pkt.qs.flags.tgj Tolerated Grant Jitter Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Tolerated Grant Jitter
radius.vendor.pkt.qs.flags.toso Type of Service Override Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Type of Service Override
radius.vendor.pkt.qs.flags.tp Traffic Priority Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Traffic Priority
radius.vendor.pkt.qs.flags.tpj Tolerated Poll Jitter Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Tolerated Poll Jitter
radius.vendor.pkt.qs.flags.ugs Unsolicited Grant Size Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Bitmask: Unsolicited Grant Size
radius.vendor.pkt.qs.gi Grant Interval Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Grant Interval
radius.vendor.pkt.qs.gpi Grants Per Interval Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Grants Per Interval
radius.vendor.pkt.qs.mcb Maximum Concatenated Burst Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Maximum Concatenated Burst
radius.vendor.pkt.qs.mdl Maximum Downstream Latency Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Maximum Downstream Latency
radius.vendor.pkt.qs.mps Minium Packet Size Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Minimum Packet Size
radius.vendor.pkt.qs.mrtr Minimum Reserved Traffic Rate Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Minimum Reserved Traffic Rate
radius.vendor.pkt.qs.msr Maximum Sustained Rate Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Maximum Sustained Rate
radius.vendor.pkt.qs.mtb Maximum Traffic Burst Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Maximum Traffic Burst
radius.vendor.pkt.qs.npi Nominal Polling Interval Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Nominal Polling Interval
radius.vendor.pkt.qs.sfst Service Flow Scheduling Type Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Service Flow Scheduling Type
radius.vendor.pkt.qs.si Status Indication Unsigned 32-bit integer PacketCable QoS Descriptor Attribute QoS State Indication
radius.vendor.pkt.qs.srtp Status Request/Transmission Policy Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Status Request/Transmission Policy
radius.vendor.pkt.qs.tgj Tolerated Grant Jitter Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Tolerated Grant Jitter
radius.vendor.pkt.qs.toso Type of Service Override Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Type of Service Override
radius.vendor.pkt.qs.tp Traffic Priority Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Traffic Priority
radius.vendor.pkt.qs.tpj Tolerated Poll Jitter Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Tolerated Poll Jitter
radius.vendor.pkt.qs.ugs Unsolicited Grant Size Unsigned 32-bit integer PacketCable QoS Descriptor Attribute Unsolicited Grant Size
radius.vendor.pkt.rfi.nr Number-of-Redirections Unsigned 16-bit integer PacketCable Redirected-From-Info Number-of-Redirections
radius.vendor.pkt.tdi.cname Calling_Name String PacketCable Terminal_Display_Info Calling_Name
radius.vendor.pkt.tdi.cnum Calling_Number String PacketCable Terminal_Display_Info Calling_Number
radius.vendor.pkt.tdi.gd General_Display String PacketCable Terminal_Display_Info General_Display
radius.vendor.pkt.tdi.mw Message_Waiting String PacketCable Terminal_Display_Info Message_Waiting
radius.vendor.pkt.tdi.sbm Terminal_Display_Status_Bitmask Unsigned 8-bit integer PacketCable Terminal_Display_Info Terminal_Display_Status_Bitmask
radius.vendor.pkt.tdi.sbm.cname Calling_Name Boolean PacketCable Terminal_Display_Info Terminal_Display_Status_Bitmask Calling_Name
radius.vendor.pkt.tdi.sbm.cnum Calling_Number Boolean PacketCable Terminal_Display_Info Terminal_Display_Status_Bitmask Calling_Number
radius.vendor.pkt.tdi.sbm.gd General_Display Boolean PacketCable Terminal_Display_Info Terminal_Display_Status_Bitmask General_Display
radius.vendor.pkt.tdi.sbm.mw Message_Waiting Boolean PacketCable Terminal_Display_Info Terminal_Display_Status_Bitmask Message_Waiting
radius.vendor.pkt.tgid.tn Event Object Unsigned 32-bit integer PacketCable Trunk Group ID Trunk Number
radius.vendor.pkt.tgid.tt Trunk Type Unsigned 16-bit integer PacketCable Trunk Group ID Trunk Type
radius.vendor.pkt.ti Time Adjustment Unsigned 64-bit integer PacketCable Time Adjustment
rdt.flags Flags Unsigned 8-bit integer
rdt.packet_size Packet size Unsigned 16-bit integer
rdt.sequence_number Sequence number Unsigned 16-bit integer
rdt.setup Stream setup String Stream setup, method and frame number
rdt.setup-frame Setup frame Frame number Frame that set up this stream
rdt.setup-method Setup Method String Method used to set up this stream
rdt.stream_id StreamID Unsigned 8-bit integer
rdt.timestamp Timestamp Unsigned 32-bit integer Timestamp
rdt.unparsed Unparsed Data No value
X_Vig_Msisdn X-Vig-Msisdn String
rtsp.method Method String
rtsp.session Session String
rtsp.status Status Unsigned 32-bit integer
rtsp.url URL String
rtps.issue_data User Data Byte array Issue Data
rtps.octets_to_next_header Octets to next header Unsigned 16-bit integer Octets to next header
rtps.parameter_id Parameter Id Unsigned 16-bit integer Parameter Id
rtps.parameter_length Parameter Length Unsigned 16-bit integer Parameter Length
rtps.submessage_flags Submessage flags Unsigned 8-bit integer Submessage flags
rtps.submessage_id Submessage Id Unsigned 8-bit integer Submessage flags
rtp.cc Contributing source identifiers count Unsigned 8-bit integer
rtp.csrc.item CSRC item Unsigned 32-bit integer
rtp.ext Extension Boolean
rtp.ext.len Extension length Unsigned 16-bit integer
rtp.ext.profile Defined by profile Unsigned 16-bit integer
rtp.hdr_ext Header extension Unsigned 32-bit integer
rtp.marker Marker Boolean
rtp.p_type Payload type Unsigned 8-bit integer
rtp.padding Padding Boolean
rtp.padding.count Padding count Unsigned 8-bit integer
rtp.padding.data Padding data Byte array
rtp.payload Payload Byte array
rtp.seq Sequence number Unsigned 16-bit integer
rtp.setup Stream setup String Stream setup, method and frame number
rtp.setup-frame Setup frame Frame number Frame that set up this stream
rtp.setup-method Setup Method String Method used to set up this stream
rtp.ssrc Synchronization Source identifier Unsigned 32-bit integer
rtp.timestamp Timestamp Unsigned 32-bit integer
rtp.version Version Unsigned 8-bit integer
rtcp.app.PoC1.subtype Subtype Unsigned 8-bit integer
rtcp.app.data Application specific data Byte array
rtcp.app.name Name (ASCII) String
rtcp.app.poc1.add.info additional information Unsigned 16-bit integer
rtcp.app.poc1.disp.name Display Name String
rtcp.app.poc1.item.len Item length Unsigned 8-bit integer
rtcp.app.poc1.last.pkt.seq.no Seq. no of last RTP packet Unsigned 16-bit integer
rtcp.app.poc1.reason.code Reason code Unsigned 8-bit integer
rtcp.app.poc1.reason.phrase Reason Phrase String
rtcp.app.poc1.sip.uri SIP URI String
rtcp.app.subtype Subtype Unsigned 8-bit integer
rtcp.length Length Unsigned 16-bit integer
rtcp.nack.blp Bitmask of following lost packets Unsigned 16-bit integer
rtcp.nack.fsn First sequence number Unsigned 16-bit integer
rtcp.padding Padding Boolean
rtcp.padding.count Padding count Unsigned 8-bit integer
rtcp.padding.data Padding data Byte array
rtcp.pt Packet type Unsigned 8-bit integer
rtcp.rc Reception report count Unsigned 8-bit integer
rtcp.roundtrip-delay Roundtrip Delay String Calculated roundtrip delay, frame and ms value
rtcp.roundtrip-delay-delay Roundtrip Delay(ms) Unsigned 32-bit integer Calculated roundtrip delay in ms
rtcp.roundtrip-previous-sr-frame Previous SR frame used in calculation Frame number Frame used to calculate roundtrip delay
rtcp.sc Source count Unsigned 8-bit integer
rtcp.sdes.length Length Unsigned 32-bit integer
rtcp.sdes.prefix.length Prefix length Unsigned 8-bit integer
rtcp.sdes.prefix.string Prefix string String
rtcp.sdes.ssrc_csrc SSRC / CSRC identifier Unsigned 32-bit integer
rtcp.sdes.text Text String
rtcp.sdes.type Type Unsigned 8-bit integer
rtcp.sender.octetcount Sender's octet count Unsigned 32-bit integer
rtcp.sender.packetcount Sender's packet count Unsigned 32-bit integer
rtcp.senderssrc Sender SSRC Unsigned 32-bit integer
rtcp.setup Stream setup String Stream setup, method and frame number
rtcp.setup-frame Setup frame Frame number Frame that set up this stream
rtcp.setup-method Setup Method String Method used to set up this stream
rtcp.ssrc.cum_nr Cumulative number of packets lost Unsigned 32-bit integer
rtcp.ssrc.discarded Fraction discarded Unsigned 8-bit integer Discard Rate
rtcp.ssrc.dlsr Delay since last SR timestamp Unsigned 32-bit integer
rtcp.ssrc.ext_high Extended highest sequence number received Unsigned 32-bit integer
rtcp.ssrc.fraction Fraction lost Unsigned 8-bit integer
rtcp.ssrc.high_cycles Sequence number cycles count Unsigned 16-bit integer
rtcp.ssrc.high_seq Highest sequence number received Unsigned 16-bit integer
rtcp.ssrc.identifier Identifier Unsigned 32-bit integer
rtcp.ssrc.jitter Interarrival jitter Unsigned 32-bit integer
rtcp.ssrc.lsr Last SR timestamp Unsigned 32-bit integer
rtcp.timestamp.ntp NTP timestamp String
rtcp.timestamp.rtp RTP timestamp Unsigned 32-bit integer
rtcp.version Version Unsigned 8-bit integer
rtcp.xr.beginseq Begin Sequence Number Unsigned 16-bit integer
rtcp.xr.bl Length Unsigned 16-bit integer Block Length
rtcp.xr.bs Type Specific Unsigned 8-bit integer Reserved
rtcp.xr.bt Type Unsigned 8-bit integer Block Type
rtcp.xr.dlrr Delay since last RR timestamp Unsigned 32-bit integer
rtcp.xr.endseq End Sequence Number Unsigned 16-bit integer
rtcp.xr.lrr Last RR timestamp Unsigned 32-bit integer
rtcp.xr.stats.devjitter Standard Deviation of Jitter Unsigned 32-bit integer
rtcp.xr.stats.devttl Standard Deviation of TTL Unsigned 8-bit integer
rtcp.xr.stats.dupflag Duplicates Report Flag Boolean
rtcp.xr.stats.dups Duplicate Packets Unsigned 32-bit integer
rtcp.xr.stats.jitterflag Jitter Report Flag Boolean
rtcp.xr.stats.lost Lost Packets Unsigned 32-bit integer
rtcp.xr.stats.lrflag Loss Report Flag Boolean
rtcp.xr.stats.maxjitter Maximum Jitter Unsigned 32-bit integer
rtcp.xr.stats.maxttl Maximum TTL or Hop Limit Unsigned 8-bit integer
rtcp.xr.stats.meanjitter Mean Jitter Unsigned 32-bit integer
rtcp.xr.stats.meanttl Mean TTL or Hop Limit Unsigned 8-bit integer
rtcp.xr.stats.minjitter Minimum Jitter Unsigned 32-bit integer
rtcp.xr.stats.minttl Minimum TTL or Hop Limit Unsigned 8-bit integer
rtcp.xr.stats.ttl TTL or Hop Limit Flag Unsigned 8-bit integer
rtcp.xr.tf Thinning factor Unsigned 8-bit integer
rtcp.xr.voipmetrics.burstdensity Burst Density Unsigned 8-bit integer
rtcp.xr.voipmetrics.burstduration Burst Duration(ms) Unsigned 16-bit integer
rtcp.xr.voipmetrics.esdelay End System Delay(ms) Unsigned 16-bit integer
rtcp.xr.voipmetrics.extrfactor External R Factor Unsigned 8-bit integer R Factor is in the range of 0 to 100; 127 indicates this parameter is unavailable
rtcp.xr.voipmetrics.gapdensity Gap Density Unsigned 8-bit integer
rtcp.xr.voipmetrics.gapduration Gap Duration(ms) Unsigned 16-bit integer
rtcp.xr.voipmetrics.gmin Gmin Unsigned 8-bit integer
rtcp.xr.voipmetrics.jba Adaptive Jitter Buffer Algorithm Unsigned 8-bit integer
rtcp.xr.voipmetrics.jbabsmax Absolute Maximum Jitter Buffer Size Unsigned 16-bit integer
rtcp.xr.voipmetrics.jbmax Maximum Jitter Buffer Size Unsigned 16-bit integer
rtcp.xr.voipmetrics.jbnominal Nominal Jitter Buffer Size Unsigned 16-bit integer
rtcp.xr.voipmetrics.jbrate Jitter Buffer Rate Unsigned 8-bit integer
rtcp.xr.voipmetrics.moscq MOS - Conversational Quality MOS is in the range of 1 to 5; 127 indicates this parameter is unavailable
rtcp.xr.voipmetrics.moslq MOS - Listening Quality MOS is in the range of 1 to 5; 127 indicates this parameter is unavailable
rtcp.xr.voipmetrics.noiselevel Noise Level Signed 8-bit integer Noise level of 127 indicates this parameter is unavailable
rtcp.xr.voipmetrics.plc Packet Loss Conealment Algorithm Unsigned 8-bit integer
rtcp.xr.voipmetrics.rerl Residual Echo Return Loss Unsigned 8-bit integer
rtcp.xr.voipmetrics.rfactor R Factor Unsigned 8-bit integer R Factor is in the range of 0 to 100; 127 indicates this parameter is unavailable
rtcp.xr.voipmetrics.rtdelay Round Trip Delay(ms) Unsigned 16-bit integer
rtcp.xr.voipmetrics.signallevel Signal Level Signed 8-bit integer Signal level of 127 indicates this parameter is unavailable
rs_attr.opnum Operation Unsigned 16-bit integer Operation
rs_repadmin.opnum Operation Unsigned 16-bit integer Operation
rmcp.class Class Unsigned 8-bit integer RMCP Class
rmcp.sequence Sequence Unsigned 8-bit integer RMCP Sequence
rmcp.type Message Type Unsigned 8-bit integer RMCP Message Type
rmcp.version Version Unsigned 8-bit integer RMCP Version
roverride.opnum Operation Unsigned 16-bit integer Operation
rpc.array.len num Unsigned 32-bit integer Length of RPC array
rpc.auth.flavor Flavor Unsigned 32-bit integer Flavor
rpc.auth.gid GID Unsigned 32-bit integer GID
rpc.auth.length Length Unsigned 32-bit integer Length
rpc.auth.machinename Machine Name String Machine Name
rpc.auth.stamp Stamp Unsigned 32-bit integer Stamp
rpc.auth.uid UID Unsigned 32-bit integer UID
rpc.authdes.convkey Conversation Key (encrypted) Unsigned 32-bit integer Conversation Key (encrypted)
rpc.authdes.namekind Namekind Unsigned 32-bit integer Namekind
rpc.authdes.netname Netname String Netname
rpc.authdes.nickname Nickname Unsigned 32-bit integer Nickname
rpc.authdes.timestamp Timestamp (encrypted) Unsigned 32-bit integer Timestamp (encrypted)
rpc.authdes.timeverf Timestamp verifier (encrypted) Unsigned 32-bit integer Timestamp verifier (encrypted)
rpc.authdes.window Window (encrypted) Unsigned 32-bit integer Windows (encrypted)
rpc.authdes.windowverf Window verifier (encrypted) Unsigned 32-bit integer Window verifier (encrypted)
rpc.authgss.checksum GSS Checksum Byte array GSS Checksum
rpc.authgss.context GSS Context Byte array GSS Context
rpc.authgss.data GSS Data Byte array GSS Data
rpc.authgss.data.length Length Unsigned 32-bit integer Length
rpc.authgss.major GSS Major Status Unsigned 32-bit integer GSS Major Status
rpc.authgss.minor GSS Minor Status Unsigned 32-bit integer GSS Minor Status
rpc.authgss.procedure GSS Procedure Unsigned 32-bit integer GSS Procedure
rpc.authgss.seqnum GSS Sequence Number Unsigned 32-bit integer GSS Sequence Number
rpc.authgss.service GSS Service Unsigned 32-bit integer GSS Service
rpc.authgss.token_length GSS Token Length Unsigned 32-bit integer GSS Token Length
rpc.authgss.version GSS Version Unsigned 32-bit integer GSS Version
rpc.authgss.window GSS Sequence Window Unsigned 32-bit integer GSS Sequence Window
rpc.authgssapi.handle Client Handle Byte array Client Handle
rpc.authgssapi.isn Signed ISN Byte array Signed ISN
rpc.authgssapi.message AUTH_GSSAPI Message Boolean AUTH_GSSAPI Message
rpc.authgssapi.msgversion Msg Version Unsigned 32-bit integer Msg Version
rpc.authgssapi.version AUTH_GSSAPI Version Unsigned 32-bit integer AUTH_GSSAPI Version
rpc.call.dup Duplicate to the call in Frame number This is a duplicate to the call in frame
rpc.dup Duplicate Call/Reply No value Duplicate Call/Reply
rpc.fraglen Fragment Length Unsigned 32-bit integer Fragment Length
rpc.fragment RPC Fragment Frame number RPC Fragment
rpc.fragment.error Defragmentation error Frame number Defragmentation error due to illegal fragments
rpc.fragment.multipletails Multiple tail fragments found Boolean Several tails were found when defragmenting the packet
rpc.fragment.overlap Fragment overlap Boolean Fragment overlaps with other fragments
rpc.fragment.overlap.conflict Conflicting data in fragment overlap Boolean Overlapping fragments contained conflicting data
rpc.fragment.toolongfragment Fragment too long Boolean Fragment contained data past end of packet
rpc.fragments RPC Fragments No value RPC Fragments
rpc.lastfrag Last Fragment Boolean Last Fragment
rpc.msgtyp Message Type Unsigned 32-bit integer Message Type
rpc.procedure Procedure Unsigned 32-bit integer Procedure
rpc.program Program Unsigned 32-bit integer Program
rpc.programversion Program Version Unsigned 32-bit integer Program Version
rpc.programversion.max Program Version (Maximum) Unsigned 32-bit integer Program Version (Maximum)
rpc.programversion.min Program Version (Minimum) Unsigned 32-bit integer Program Version (Minimum)
rpc.repframe Reply Frame Frame number Reply Frame
rpc.reply.dup Duplicate to the reply in Frame number This is a duplicate to the reply in frame
rpc.replystat Reply State Unsigned 32-bit integer Reply State
rpc.reqframe Request Frame Frame number Request Frame
rpc.state_accept Accept State Unsigned 32-bit integer Accept State
rpc.state_auth Auth State Unsigned 32-bit integer Auth State
rpc.state_reject Reject State Unsigned 32-bit integer Reject State
rpc.time Time from request Time duration Time between Request and Reply for ONC-RPC calls
rpc.value_follows Value Follows Boolean Value Follows
rpc.version RPC Version Unsigned 32-bit integer RPC Version
rpc.version.max RPC Version (Maximum) Unsigned 32-bit integer RPC Version (Maximum)
rpc.version.min RPC Version (Minimum) Unsigned 32-bit integer Program Version (Minimum)
rpc.xid XID Unsigned 32-bit integer XID
rpl.adapterid Adapter ID Unsigned 16-bit integer RPL Adapter ID
rpl.bsmversion BSM Version Unsigned 16-bit integer RPL Version of BSM.obj
rpl.config Configuration Byte array RPL Configuration
rpl.connclass Connection Class Unsigned 16-bit integer RPL Connection Class
rpl.corrval Correlator Value Unsigned 32-bit integer RPL Correlator Value
rpl.data Data Byte array RPL Binary File Data
rpl.ec EC Byte array RPL EC
rpl.equipment Equipment Unsigned 16-bit integer RPL Equipment - AX from INT 11h
rpl.flags Flags Unsigned 8-bit integer RPL Bit Significant Option Flags
rpl.laddress Locate Address Unsigned 32-bit integer RPL Locate Address
rpl.lmac Loader MAC Address 6-byte Hardware (MAC) Address RPL Loader MAC Address
rpl.maxframe Maximum Frame Size Unsigned 16-bit integer RPL Maximum Frame Size
rpl.memsize Memory Size Unsigned 16-bit integer RPL Memory Size - AX from INT 12h MINUS 32k MINUS the Boot ROM Size
rpl.respval Response Code Unsigned 8-bit integer RPL Response Code
rpl.sap SAP Unsigned 8-bit integer RPL SAP
rpl.sequence Sequence Number Unsigned 32-bit integer RPL Sequence Number
rpl.shortname Short Name Byte array RPL BSM Short Name
rpl.smac Set MAC Address 6-byte Hardware (MAC) Address RPL Set MAC Address
rpl.type Type Unsigned 16-bit integer RPL Packet Type
rpl.xaddress XFER Address Unsigned 32-bit integer RPL Transfer Control Address
rquota.active active Boolean Indicates whether quota is active
rquota.bhardlimit bhardlimit Unsigned 32-bit integer Hard limit for blocks
rquota.bsize bsize Unsigned 32-bit integer Block size
rquota.bsoftlimit bsoftlimit Unsigned 32-bit integer Soft limit for blocks
rquota.btimeleft btimeleft Unsigned 32-bit integer Time left for excessive disk use
rquota.curblocks curblocks Unsigned 32-bit integer Current block count
rquota.curfiles curfiles Unsigned 32-bit integer Current # allocated files
rquota.fhardlimit fhardlimit Unsigned 32-bit integer Hard limit on allocated files
rquota.fsoftlimit fsoftlimit Unsigned 32-bit integer Soft limit of allocated files
rquota.ftimeleft ftimeleft Unsigned 32-bit integer Time left for excessive files
rquota.pathp pathp String Filesystem of interest
rquota.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
rquota.rquota rquota No value Rquota structure
rquota.status status Unsigned 32-bit integer Status code
rquota.uid uid Unsigned 32-bit integer User ID
rsh.request Request Boolean TRUE if rsh request
rsh.response Response Boolean TRUE if rsh response
initshutdown.force Force applications shut Unsigned 8-bit integer Force applications shut
initshutdown.message Message String Message
initshutdown.opnum Operation Unsigned 16-bit integer Operation
initshutdown.rc Return code Unsigned 32-bit integer Initshutdown return code
initshutdown.reason Reason Unsigned 32-bit integer Reason
initshutdown.reboot Reboot Unsigned 8-bit integer Reboot
initshutdown.seconds Seconds Unsigned 32-bit integer Seconds
initshutdown.server Server Unsigned 16-bit integer Server
rwall.message Message String Message
rwall.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
rsec_login.opnum Operation Unsigned 16-bit integer Operation
rsvp.acceptable_label_set ACCEPTABLE LABEL SET No value
rsvp.ack Ack Message Boolean
rsvp.admin_status ADMIN STATUS No value
rsvp.adspec ADSPEC No value
rsvp.bundle Bundle Message Boolean
rsvp.call_id CALL ID No value
rsvp.confirm CONFIRM No value
rsvp.dclass DCLASS No value
rsvp.diffserv DIFFSERV No value
rsvp.diffserv.map MAP No value MAP entry
rsvp.diffserv.map.exp EXP Unsigned 8-bit integer EXP bit code
rsvp.diffserv.mapnb MAPnb Unsigned 8-bit integer Number of MAP entries
rsvp.diffserv.phbid PHBID No value PHBID
rsvp.diffserv.phbid.bit14 Bit 14 Unsigned 16-bit integer Bit 14
rsvp.diffserv.phbid.bit15 Bit 15 Unsigned 16-bit integer Bit 15
rsvp.diffserv.phbid.code PHB id code Unsigned 16-bit integer PHB id code
rsvp.diffserv.phbid.dscp DSCP Unsigned 16-bit integer DSCP
rsvp.error ERROR No value
rsvp.explicit_route EXPLICIT ROUTE No value
rsvp.filter FILTERSPEC No value
rsvp.flowspec FLOWSPEC No value
rsvp.generalized_uni GENERALIZED UNI No value
rsvp.hello HELLO Message Boolean
rsvp.hello_obj HELLO Request/Ack No value
rsvp.hop HOP No value
rsvp.integrity INTEGRITY No value
rsvp.label LABEL No value
rsvp.label_request LABEL REQUEST No value
rsvp.label_set LABEL SET No value
rsvp.lsp_tunnel_if_id LSP INTERFACE-ID No value
rsvp.msg Message Type Unsigned 8-bit integer
rsvp.msgid MESSAGE-ID No value
rsvp.msgid_list MESSAGE-ID LIST No value
rsvp.notify_request NOTIFY REQUEST No value
rsvp.obj_unknown Unknown object No value
rsvp.object Object class Unsigned 8-bit integer
rsvp.path Path Message Boolean
rsvp.perr Path Error Message Boolean
rsvp.policy POLICY No value
rsvp.protection PROTECTION No value
rsvp.ptear Path Tear Message Boolean
rsvp.record_route RECORD ROUTE No value
rsvp.recovery_label RECOVERY LABEL No value
rsvp.rerr Resv Error Message Boolean
rsvp.restart RESTART CAPABILITY No value
rsvp.resv Resv Message Boolean
rsvp.resvconf Resv Confirm Message Boolean
rsvp.rtear Resv Tear Message Boolean
rsvp.rtearconf Resv Tear Confirm Message Boolean
rsvp.scope SCOPE No value
rsvp.sender SENDER TEMPLATE No value
rsvp.sender.ip Sender IPv4 address IPv4 address
rsvp.sender.lsp_id Sender LSP ID Unsigned 16-bit integer
rsvp.sender.port Sender port number Unsigned 16-bit integer
rsvp.session SESSION No value
rsvp.session.ext_tunnel_id Extended tunnel ID Unsigned 32-bit integer
rsvp.session.ip Destination address IPv4 address
rsvp.session.port Port number Unsigned 16-bit integer
rsvp.session.proto Protocol Unsigned 8-bit integer
rsvp.session.tunnel_id Tunnel ID Unsigned 16-bit integer
rsvp.session_attribute SESSION ATTRIBUTE No value
rsvp.srefresh Srefresh Message Boolean
rsvp.style STYLE No value
rsvp.suggested_label SUGGESTED LABEL No value
rsvp.time TIME VALUES No value
rsvp.tspec SENDER TSPEC No value
rsvp.upstream_label UPSTREAM LABEL No value
rstp.bridge.hw Bridge MAC 6-byte Hardware (MAC) Address
rstp.forward Forward Delay Unsigned 16-bit integer
rstp.hello Hello Time Unsigned 16-bit integer
rstp.maxage Max Age Unsigned 16-bit integer
rstp.root.hw Root MAC 6-byte Hardware (MAC) Address
rlogin.user_info User Info No value
rlogin.window_size Window Info No value
rlogin.window_size.cols Columns Unsigned 16-bit integer
rlogin.window_size.rows Rows Unsigned 16-bit integer
rlogin.window_size.x_pixels X Pixels Unsigned 16-bit integer
rlogin.window_size.y_pixels Y Pixels Unsigned 16-bit integer
rip.auth.passwd Password String Authentication password
rip.auth.type Authentication type Unsigned 16-bit integer Type of authentication
rip.command Command Unsigned 8-bit integer What type of RIP Command is this
rip.family Address Family Unsigned 16-bit integer Address family
rip.ip IP Address IPv4 address IP Address
rip.metric Metric Unsigned 16-bit integer Metric for this route
rip.netmask Netmask IPv4 address Netmask
rip.next_hop Next Hop IPv4 address Next Hop router for this route
rip.route_tag Route Tag Unsigned 16-bit integer Route Tag
rip.routing_domain Routing Domain Unsigned 16-bit integer RIPv2 Routing Domain
rip.version Version Unsigned 8-bit integer Version of the RIP protocol
nbp.nodeid Node Unsigned 8-bit integer Node
nbp.nodeid.length Node Length Unsigned 8-bit integer Node Length
rtmp.function Function Unsigned 8-bit integer Request Function
rtmp.net Net Unsigned 16-bit integer Net
rtmp.tuple.dist Distance Unsigned 16-bit integer Distance
rtmp.tuple.net Net Unsigned 16-bit integer Net
rtmp.tuple.range_end Range End Unsigned 16-bit integer Range End
rtmp.tuple.range_start Range Start Unsigned 16-bit integer Range Start
sadmind.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
sadmind.procedure_v2 V2 Procedure Unsigned 32-bit integer V2 Procedure
sadmind.procedure_v3 V3 Procedure Unsigned 32-bit integer V3 Procedure
scsi.cdb.alloclen Allocation Length Unsigned 8-bit integer
scsi.cdb.alloclen16 Allocation Length Unsigned 16-bit integer
scsi.cdb.alloclen32 Allocation Length Unsigned 32-bit integer
scsi.cdb.control Control Unsigned 8-bit integer
scsi.cdb.defectfmt Defect List Format Unsigned 8-bit integer
scsi.cdb.mode.flags Mode Sense/Select Flags Unsigned 8-bit integer
scsi.cdb.paramlen Parameter Length Unsigned 8-bit integer
scsi.cdb.paramlen16 Parameter Length Unsigned 16-bit integer
scsi.cdb.paramlen24 Paremeter List Length Unsigned 24-bit integer
scsi.formatunit.flags Flags Unsigned 8-bit integer
scsi.formatunit.interleave Interleave Unsigned 16-bit integer
scsi.formatunit.vendor Vendor Unique Unsigned 8-bit integer
scsi.inquiry.cmdt.pagecode CMDT Page Code Unsigned 8-bit integer
scsi.inquiry.devtype Peripheral Device Type Unsigned 8-bit integer
scsi.inquiry.evpd.pagecode EVPD Page Code Unsigned 8-bit integer
scsi.inquiry.flags Flags Unsigned 8-bit integer
scsi.inquiry.normaca NormACA Unsigned 8-bit integer
scsi.inquiry.qualifier Peripheral Qualifier Unsigned 8-bit integer
scsi.inquiry.version Version Unsigned 8-bit integer
scsi.logsel.flags Flags Unsigned 8-bit integer
scsi.logsel.pc Page Control Unsigned 8-bit integer
scsi.logsns.flags Flags Unsigned 16-bit integer
scsi.logsns.pagecode Page Code Unsigned 8-bit integer
scsi.logsns.pc Page Control Unsigned 8-bit integer
scsi.lun LUN Unsigned 16-bit integer LUN
scsi.mode.flags Flags Unsigned 8-bit integer
scsi.mode.mrie MRIE Unsigned 8-bit integer
scsi.mode.pc Page Control Unsigned 8-bit integer
scsi.mode.qerr Queue Error Management Boolean
scsi.mode.qmod Queue Algorithm Modifier Unsigned 8-bit integer
scsi.mode.sbc.pagecode SBC-2 Page Code Unsigned 8-bit integer
scsi.mode.smc.pagecode SMC-2 Page Code Unsigned 8-bit integer
scsi.mode.spc.pagecode SPC-2 Page Code Unsigned 8-bit integer
scsi.mode.ssc.pagecode SSC-2 Page Code Unsigned 8-bit integer
scsi.mode.tac Task Aborted Status Boolean
scsi.mode.tst Task Set Type Unsigned 8-bit integer
scsi.persresv.scope Reservation Scope Unsigned 8-bit integer
scsi.persresv.type Reservation Type Unsigned 8-bit integer
scsi.persresvin.svcaction Service Action Unsigned 8-bit integer
scsi.persresvout.svcaction Service Action Unsigned 8-bit integer
scsi.proto Protocol Unsigned 8-bit integer
scsi.rdwr10.lba Logical Block Address (LBA) Unsigned 32-bit integer
scsi.rdwr10.xferlen Transfer Length Unsigned 16-bit integer
scsi.rdwr12.xferlen Transfer Length Unsigned 32-bit integer
scsi.rdwr16.lba Logical Block Address (LBA) Byte array
scsi.rdwr6.lba Logical Block Address (LBA) Unsigned 24-bit integer
scsi.rdwr6.xferlen Transfer Length Unsigned 24-bit integer
scsi.read.flags Flags Unsigned 8-bit integer
scsi.readcapacity.flags Flags Unsigned 8-bit integer
scsi.readcapacity.lba Logical Block Address Unsigned 32-bit integer
scsi.readcapacity.pmi PMI Unsigned 8-bit integer
scsi.readdefdata.flags Flags Unsigned 8-bit integer
scsi.reassignblks.flags Flags Unsigned 8-bit integer
scsi.release.flags Release Flags Unsigned 8-bit integer
scsi.release.thirdpartyid Third-Party ID Byte array
scsi.reportluns.lun LUN Unsigned 8-bit integer
scsi.reportluns.mlun Multi-level LUN Byte array
scsi.sbc.opcode SBC-2 Opcode Unsigned 8-bit integer
scsi.sbc2.ssu.immediate Immediate Boolean
scsi.sbc2.ssu.loej LOEJ Boolean
scsi.sbc2.ssu.pwr Power Conditions Unsigned 8-bit integer
scsi.sbc2.ssu.start Start Boolean
scsi.smc.opcode SMC-2 Opcode Unsigned 8-bit integer
scsi.sns.addlen Additional Sense Length Unsigned 8-bit integer
scsi.sns.asc Additional Sense Code Unsigned 8-bit integer
scsi.sns.ascascq Additional Sense Code+Qualifier Unsigned 16-bit integer
scsi.sns.ascq Additional Sense Code Qualifier Unsigned 8-bit integer
scsi.sns.errtype SNS Error Type Unsigned 8-bit integer
scsi.sns.fru Field Replaceable Unit Code Unsigned 8-bit integer
scsi.sns.info Sense Info Unsigned 32-bit integer
scsi.sns.key Sense Key Unsigned 8-bit integer
scsi.sns.sksv SKSV Boolean
scsi.spc.opcode SPC-2 Opcode Unsigned 8-bit integer
scsi.spc2.addcdblen Additional CDB Length Unsigned 8-bit integer
scsi.spc2.resv.key Reservation Key Byte array
scsi.spc2.resv.scopeaddr Scope Address Byte array
scsi.spc2.sb.bufid Buffer ID Unsigned 8-bit integer
scsi.spc2.senddiag.code Self-Test Code Unsigned 8-bit integer
scsi.spc2.senddiag.devoff Device Offline Boolean
scsi.spc2.senddiag.pf PF Boolean
scsi.spc2.senddiag.st Self Test Boolean
scsi.spc2.senddiag.unitoff Unit Offline Boolean
scsi.spc2.svcaction Service Action Unsigned 16-bit integer
scsi.spc2.wb.bufoff Buffer Offset Unsigned 24-bit integer
scsi.spc2.wb.mode Mode Unsigned 8-bit integer
scsi.ssc.opcode SSC-2 Opcode Unsigned 8-bit integer
scsi.status Status Unsigned 8-bit integer SCSI command status value
ssci.mode.rac Report a Check Boolean
sebek.cmd Command Name String Command Name
sebek.counter Counter Unsigned 32-bit integer Counter
sebek.data Data String Data
sebek.fd File Descriptor Unsigned 32-bit integer File Descriptor Number
sebek.len Data Length Unsigned 32-bit integer Data Length
sebek.magic Magic Unsigned 32-bit integer Magic Number
sebek.pid Process ID Unsigned 32-bit integer Process ID
sebek.time.sec Time Date/Time stamp Time
sebek.type Type Unsigned 16-bit integer Type
sebek.uid User ID Unsigned 32-bit integer User ID
sebek.version Version Unsigned 16-bit integer Version Number
nt.access_mask Access required Unsigned 32-bit integer Access mask
nt.access_mask.access_sacl Access SACL Boolean Access SACL
nt.access_mask.delete Delete Boolean Delete
nt.access_mask.generic_all Generic all Boolean Generic all
nt.access_mask.generic_execute Generic execute Boolean Generic execute
nt.access_mask.generic_read Generic read Boolean Generic read
nt.access_mask.generic_write Generic write Boolean Generic write
nt.access_mask.maximum_allowed Maximum allowed Boolean Maximum allowed
nt.access_mask.read_control Read control Boolean Read control
nt.access_mask.specific_0 Specific access, bit 0 Boolean Specific access, bit 0
nt.access_mask.specific_1 Specific access, bit 1 Boolean Specific access, bit 1
nt.access_mask.specific_10 Specific access, bit 10 Boolean Specific access, bit 10
nt.access_mask.specific_11 Specific access, bit 11 Boolean Specific access, bit 11
nt.access_mask.specific_12 Specific access, bit 12 Boolean Specific access, bit 12
nt.access_mask.specific_13 Specific access, bit 13 Boolean Specific access, bit 13
nt.access_mask.specific_14 Specific access, bit 14 Boolean Specific access, bit 14
nt.access_mask.specific_15 Specific access, bit 15 Boolean Specific access, bit 15
nt.access_mask.specific_2 Specific access, bit 2 Boolean Specific access, bit 2
nt.access_mask.specific_3 Specific access, bit 3 Boolean Specific access, bit 3
nt.access_mask.specific_4 Specific access, bit 4 Boolean Specific access, bit 4
nt.access_mask.specific_5 Specific access, bit 5 Boolean Specific access, bit 5
nt.access_mask.specific_6 Specific access, bit 6 Boolean Specific access, bit 6
nt.access_mask.specific_7 Specific access, bit 7 Boolean Specific access, bit 7
nt.access_mask.specific_8 Specific access, bit 8 Boolean Specific access, bit 8
nt.access_mask.specific_9 Specific access, bit 9 Boolean Specific access, bit 9
nt.access_mask.synchronise Synchronise Boolean Synchronise
nt.access_mask.write_dac Write DAC Boolean Write DAC
nt.access_mask.write_owner Write owner Boolean Write owner
nt.ace.flags.container_inherit Container Inherit Boolean Will subordinate containers inherit this ACE?
nt.ace.flags.failed_access Audit Failed Accesses Boolean Should failed accesses be audited?
nt.ace.flags.inherit_only Inherit Only Boolean Does this ACE apply to the current object?
nt.ace.flags.inherited_ace Inherited ACE Boolean Was this ACE inherited from its parent object?
nt.ace.flags.non_propagate_inherit Non-Propagate Inherit Boolean Will subordinate object propagate this ACE further?
nt.ace.flags.object_inherit Object Inherit Boolean Will subordinate files inherit this ACE?
nt.ace.flags.successful_access Audit Successful Accesses Boolean Should successful accesses be audited?
nt.ace.size Size Unsigned 16-bit integer Size of this ACE
nt.ace.type Type Unsigned 8-bit integer Type of ACE
nt.acl.num_aces Num ACEs Unsigned 32-bit integer Number of ACE structures for this ACL
nt.acl.revision Revision Unsigned 16-bit integer Version of NT ACL structure
nt.acl.size Size Unsigned 16-bit integer Size of NT ACL structure
nt.sec_desc.revision Revision Unsigned 16-bit integer Version of NT Security Descriptor structure
nt.sec_desc.type.dacl_auto_inherit_req DACL Auto Inherit Required Boolean Does this SecDesc have DACL Auto Inherit Required set?
nt.sec_desc.type.dacl_auto_inherited DACL Auto Inherited Boolean Is this DACL auto inherited
nt.sec_desc.type.dacl_defaulted DACL Defaulted Boolean Does this SecDesc have DACL Defaulted?
nt.sec_desc.type.dacl_present DACL Present Boolean Does this SecDesc have DACL present?
nt.sec_desc.type.dacl_protected DACL Protected Boolean Is the DACL structure protected?
nt.sec_desc.type.dacl_trusted DACL Trusted Boolean Does this SecDesc have DACL TRUSTED set?
nt.sec_desc.type.group_defaulted Group Defaulted Boolean Is Group Defaulted?
nt.sec_desc.type.owner_defaulted Owner Defaulted Boolean Is Owner Defaulted set?
nt.sec_desc.type.rm_control_valid RM Control Valid Boolean Is RM Control Valid set?
nt.sec_desc.type.sacl_auto_inherit_req SACL Auto Inherit Required Boolean Does this SecDesc have SACL Auto Inherit Required set?
nt.sec_desc.type.sacl_auto_inherited SACL Auto Inherited Boolean Is this SACL auto inherited
nt.sec_desc.type.sacl_defaulted SACL Defaulted Boolean Does this SecDesc have SACL Defaulted?
nt.sec_desc.type.sacl_present SACL Present Boolean Is the SACL present?
nt.sec_desc.type.sacl_protected SACL Protected Boolean Is the SACL structure protected?
nt.sec_desc.type.self_relative Self Relative Boolean Is this SecDesc self relative?
nt.sec_desc.type.server_security Server Security Boolean Does this SecDesc have SERVER SECURITY set?
nt.sid SID String SID: Security Identifier
nt.sid.num_auth Num Auth Unsigned 8-bit integer Number of authorities for this SID
nt.sid.revision Revision Unsigned 8-bit integer Version of SID structure
smb.access.append Append Boolean Can object's contents be appended to
smb.access.caching Caching Boolean Caching mode?
smb.access.delete Delete Boolean Can object be deleted
smb.access.delete_child Delete Child Boolean Can object's subdirectories be deleted
smb.access.execute Execute Boolean Can object be executed (if file) or traversed (if directory)
smb.access.generic_all Generic All Boolean Is generic all allowed for this attribute
smb.access.generic_execute Generic Execute Boolean Is generic execute allowed for this object?
smb.access.generic_read Generic Read Boolean Is generic read allowed for this object?
smb.access.generic_write Generic Write Boolean Is generic write allowed for this object?
smb.access.locality Locality Unsigned 16-bit integer Locality of reference
smb.access.maximum_allowed Maximum Allowed Boolean ?
smb.access.mode Access Mode Unsigned 16-bit integer Access Mode
smb.access.read Read Boolean Can object's contents be read
smb.access.read_attributes Read Attributes Boolean Can object's attributes be read
smb.access.read_control Read Control Boolean Are reads allowed of owner, group and ACL data of the SID?
smb.access.read_ea Read EA Boolean Can object's extended attributes be read
smb.access.sharing Sharing Mode Unsigned 16-bit integer Sharing Mode
smb.access.smb.date Last Access Date Unsigned 16-bit integer Last Access Date, SMB_DATE format
smb.access.smb.time Last Access Time Unsigned 16-bit integer Last Access Time, SMB_TIME format
smb.access.synchronize Synchronize Boolean Windows NT: synchronize access
smb.access.system_security System Security Boolean Access to a system ACL?
smb.access.time Last Access Date/Time stamp Last Access Time
smb.access.write Write Boolean Can object's contents be written
smb.access.write_attributes Write Attributes Boolean Can object's attributes be written
smb.access.write_dac Write DAC Boolean Is write allowed to the owner group or ACLs?
smb.access.write_ea Write EA Boolean Can object's extended attributes be written
smb.access.write_owner Write Owner Boolean Can owner write to the object?
smb.access.writethrough Writethrough Boolean Writethrough mode?
smb.account Account String Account, username
smb.actual_free_alloc_units Actual Free Units Unsigned 64-bit integer Number of actual free allocation units
smb.alignment Alignment Unsigned 32-bit integer What alignment do we require for buffers
smb.alloc.count Allocation Block Count Unsigned 32-bit integer Allocation Block Count
smb.alloc.size Allocation Block Count Unsigned 32-bit integer Allocation Block Size
smb.alloc_size Allocation Size Unsigned 32-bit integer Number of bytes to reserve on create or truncate
smb.andxoffset AndXOffset Unsigned 16-bit integer Offset to next command in this SMB packet
smb.ansi_password ANSI Password Byte array ANSI Password
smb.ansi_pwlen ANSI Password Length Unsigned 16-bit integer Length of ANSI password
smb.avail.units Available Units Unsigned 32-bit integer Total number of available units on this filesystem
smb.backup.time Backed-up Date/Time stamp Backup time
smb.bcc Byte Count (BCC) Unsigned 16-bit integer Byte Count, count of data bytes
smb.blocksize Block Size Unsigned 16-bit integer Block size (in bytes) at server
smb.bpu Blocks Per Unit Unsigned 16-bit integer Blocks per unit at server
smb.buffer_format Buffer Format Unsigned 8-bit integer Buffer Format, type of buffer
smb.caller_free_alloc_units Caller Free Units Unsigned 64-bit integer Number of caller free allocation units
smb.cancel_to Cancel to Frame number This packet is a cancellation of the packet in this frame
smb.change.time Change Date/Time stamp Last Change Time
smb.change_count Change Count Unsigned 16-bit integer Number of changes to wait for
smb.cmd SMB Command Unsigned 8-bit integer SMB Command
smb.compressed.chunk_shift Chunk Shift Unsigned 8-bit integer Allocated size of the stream in number of bytes
smb.compressed.cluster_shift Cluster Shift Unsigned 8-bit integer Allocated size of the stream in number of bytes
smb.compressed.file_size Compressed Size Unsigned 64-bit integer Size of the compressed file
smb.compressed.format Compression Format Unsigned 16-bit integer Compression algorithm used
smb.compressed.unit_shift Unit Shift Unsigned 8-bit integer Size of the stream in number of bytes
smb.connect.flags.dtid Disconnect TID Boolean Disconnect TID?
smb.connect.support.dfs In Dfs Boolean Is this in a Dfs tree?
smb.connect.support.search Search Bits Boolean Exclusive Search Bits supported?
smb.continuation_to Continuation to Frame number This packet is a continuation to the packet in this frame
smb.copy.flags.dest_mode Destination mode Boolean Is destination in ASCII?
smb.copy.flags.dir Must be directory Boolean Must target be a directory?
smb.copy.flags.ea_action EA action if EAs not supported on dest Boolean Fail copy if source file has EAs and dest doesn't support EAs?
smb.copy.flags.file Must be file Boolean Must target be a file?
smb.copy.flags.source_mode Source mode Boolean Is source in ASCII?
smb.copy.flags.tree_copy Tree copy Boolean Is copy a tree copy?
smb.copy.flags.verify Verify writes Boolean Verify all writes?
smb.count Count Unsigned 32-bit integer Count number of items/bytes
smb.count_high Count High (multiply with 64K) Unsigned 16-bit integer Count number of items/bytes, High 16 bits
smb.count_low Count Low Unsigned 16-bit integer Count number of items/bytes, Low 16 bits
smb.create.action Create action Unsigned 32-bit integer Type of action taken
smb.create.disposition Disposition Unsigned 32-bit integer Create disposition, what to do if the file does/does not exist
smb.create.file_id Server unique file ID Unsigned 32-bit integer Server unique file ID
smb.create.smb.date Create Date Unsigned 16-bit integer Create Date, SMB_DATE format
smb.create.smb.time Create Time Unsigned 16-bit integer Create Time, SMB_TIME format
smb.create.time Created Date/Time stamp Creation Time
smb.data_disp Data Displacement Unsigned 16-bit integer Data Displacement
smb.data_len Data Length Unsigned 16-bit integer Length of data
smb.data_len_high Data Length High (multiply with 64K) Unsigned 16-bit integer Length of data, High 16 bits
smb.data_len_low Data Length Low Unsigned 16-bit integer Length of data, Low 16 bits
smb.data_offset Data Offset Unsigned 16-bit integer Data Offset
smb.data_size Data Size Unsigned 32-bit integer Data Size
smb.dc Data Count Unsigned 16-bit integer Number of data bytes in this buffer
smb.dcm Data Compaction Mode Unsigned 16-bit integer Data Compaction Mode
smb.delete_pending Delete Pending Unsigned 16-bit integer Is this object about to be deleted?
smb.destination_name Destination Name String Name of recipient of message
smb.device.floppy Floppy Boolean Is this a floppy disk
smb.device.mounted Mounted Boolean Is this a mounted device
smb.device.read_only Read Only Boolean Is this a read-only device
smb.device.remote Remote Boolean Is this a remote device
smb.device.removable Removable Boolean Is this a removable device
smb.device.type Device Type Unsigned 32-bit integer Type of device
smb.device.virtual Virtual Boolean Is this a virtual device
smb.device.write_once Write Once Boolean Is this a write-once device
smb.dfs.flags.fielding Fielding Boolean The servers in referrals are capable of fielding
smb.dfs.flags.server_hold_storage Hold Storage Boolean The servers in referrals should hold storage for the file
smb.dfs.num_referrals Num Referrals Unsigned 16-bit integer Number of referrals in this pdu
smb.dfs.path_consumed Path Consumed Unsigned 16-bit integer Number of RequestFilename bytes client
smb.dfs.referral.alt_path Alt Path String Alternative(8.3) Path that matched pathconsumed
smb.dfs.referral.alt_path_offset Alt Path Offset Unsigned 16-bit integer Offset of alternative(8.3) Path that matched pathconsumed
smb.dfs.referral.flags.strip Strip Boolean Should we strip off pathconsumed characters before submitting?
smb.dfs.referral.node Node String Name of entity to visit next
smb.dfs.referral.node_offset Node Offset Unsigned 16-bit integer Offset of name of entity to visit next
smb.dfs.referral.path Path String Dfs Path that matched pathconsumed
smb.dfs.referral.path_offset Path Offset Unsigned 16-bit integer Offset of Dfs Path that matched pathconsumed
smb.dfs.referral.proximity Proximity Unsigned 16-bit integer Hint describing proximity of this server to the client
smb.dfs.referral.server.type Server Type Unsigned 16-bit integer Type of referral server
smb.dfs.referral.size Size Unsigned 16-bit integer Size of referral element
smb.dfs.referral.ttl TTL Unsigned 16-bit integer Number of seconds the client can cache this referral
smb.dfs.referral.version Version Unsigned 16-bit integer Version of referral element
smb.dialect.index Selected Index Unsigned 16-bit integer Index of selected dialect
smb.dialect.name Name String Name of dialect
smb.dir.count Root Directory Count Unsigned 32-bit integer Directory Count
smb.dir_name Directory String SMB Directory Name
smb.ea.data EA Data Byte array EA Data
smb.ea.data_length EA Data Length Unsigned 16-bit integer EA Data Length
smb.ea.error_offset EA Error offset Unsigned 32-bit integer Offset into EA list if EA error
smb.ea.flags EA Flags Unsigned 8-bit integer EA Flags
smb.ea.list_length EA List Length Unsigned 32-bit integer Total length of extended attributes
smb.ea.name EA Name String EA Name
smb.ea.name_length EA Name Length Unsigned 8-bit integer EA Name Length
smb.echo.count Echo Count Unsigned 16-bit integer Number of times to echo data back
smb.echo.data Echo Data Byte array Data for SMB Echo Request/Response
smb.echo.seq_num Echo Seq Num Unsigned 16-bit integer Sequence number for this echo response
smb.encryption_key Encryption Key Byte array Challenge/Response Encryption Key (for LM2.1 dialect)
smb.encryption_key_length Key Length Unsigned 16-bit integer Encryption key length (must be 0 if not LM2.1 dialect)
smb.end_of_file End Of File Unsigned 64-bit integer Offset to the first free byte in the file
smb.end_of_search End Of Search Unsigned 16-bit integer Was last entry returned?
smb.error_class Error Class Unsigned 8-bit integer DOS Error Class
smb.error_code Error Code Unsigned 16-bit integer DOS Error Code
smb.ext_attr Extended Attributes Byte array Extended Attributes
smb.ff2_loi Level of Interest Unsigned 16-bit integer Level of interest for FIND_FIRST2 command
smb.fid FID Unsigned 16-bit integer FID: File ID
smb.file File Name String File Name
smb.file.count Root File Count Unsigned 32-bit integer File Count
smb.file_attribute.archive Archive Boolean ARCHIVE file attribute
smb.file_attribute.compressed Compressed Boolean Is this file compressed?
smb.file_attribute.device Device Boolean Is this file a device?
smb.file_attribute.directory Directory Boolean DIRECTORY file attribute
smb.file_attribute.encrypted Encrypted Boolean Is this file encrypted?
smb.file_attribute.hidden Hidden Boolean HIDDEN file attribute
smb.file_attribute.normal Normal Boolean Is this a normal file?
smb.file_attribute.not_content_indexed Content Indexed Boolean May this file be indexed by the content indexing service
smb.file_attribute.offline Offline Boolean Is this file offline?
smb.file_attribute.read_only Read Only Boolean READ ONLY file attribute
smb.file_attribute.reparse Reparse Point Boolean Does this file have an associated reparse point?
smb.file_attribute.sparse Sparse Boolean Is this a sparse file?
smb.file_attribute.system System Boolean SYSTEM file attribute
smb.file_attribute.temporary Temporary Boolean Is this a temporary file?
smb.file_attribute.volume Volume ID Boolean VOLUME file attribute
smb.file_data File Data Byte array Data read/written to the file
smb.file_index File Index Unsigned 32-bit integer File index
smb.file_name_len File Name Len Unsigned 32-bit integer Length of File Name
smb.file_size File Size Unsigned 32-bit integer File Size
smb.file_type File Type Unsigned 16-bit integer Type of file
smb.files_moved Files Moved Unsigned 16-bit integer Number of files moved
smb.find_first2.flags.backup Backup Intent Boolean Find with backup intent
smb.find_first2.flags.close Close Boolean Close search after this request
smb.find_first2.flags.continue Continue Boolean Continue search from previous ending place
smb.find_first2.flags.eos Close on EOS Boolean Close search if end of search reached
smb.find_first2.flags.resume Resume Boolean Return resume keys for each entry found
smb.flags.canon Canonicalized Pathnames Boolean Are pathnames canonicalized?
smb.flags.caseless Case Sensitivity Boolean Are pathnames caseless or casesensitive?
smb.flags.lock Lock and Read Boolean Are Lock&Read and Write&Unlock operations supported?
smb.flags.notify Notify Boolean Notify on open or all?
smb.flags.oplock Oplocks Boolean Is an oplock requested/granted?
smb.flags.receive_buffer Receive Buffer Posted Boolean Have receive buffers been reported?
smb.flags.response Request/Response Boolean Is this a request or a response?
smb.flags2.dfs Dfs Boolean Can pathnames be resolved using Dfs?
smb.flags2.ea Extended Attributes Boolean Are extended attributes supported?
smb.flags2.esn Extended Security Negotiation Boolean Is extended security negotiation supported?
smb.flags2.long_names_allowed Long Names Allowed Boolean Are long file names allowed in the response?
smb.flags2.long_names_used Long Names Used Boolean Are pathnames in this request long file names?
smb.flags2.nt_error Error Code Type Boolean Are error codes NT or DOS format?
smb.flags2.roe Execute-only Reads Boolean Will reads be allowed for execute-only files?
smb.flags2.sec_sig Security Signatures Boolean Are security signatures supported?
smb.flags2.string Unicode Strings Boolean Are strings ASCII or Unicode?
smb.fn_loi Level of Interest Unsigned 16-bit integer Level of interest for FIND_NOTIFY command
smb.forwarded_name Forwarded Name String Recipient name being forwarded
smb.free_alloc_units Free Units Unsigned 64-bit integer Number of free allocation units
smb.free_block.count Free Block Count Unsigned 32-bit integer Free Block Count
smb.free_units Free Units Unsigned 16-bit integer Number of free units at server
smb.fs_attr.cpn Case Preserving Boolean Will this FS Preserve Name Case?
smb.fs_attr.css Case Sensitive Search Boolean Does this FS support Case Sensitive Search?
smb.fs_attr.fc Compression Boolean Does this FS support File Compression?
smb.fs_attr.ns Named Streams Boolean Does this FS support named streams?
smb.fs_attr.pacls Persistent ACLs Boolean Does this FS support Persistent ACLs?
smb.fs_attr.rov Read Only Volume Boolean Is this FS on a read only volume?
smb.fs_attr.se Supports Encryption Boolean Does this FS support encryption?
smb.fs_attr.sla LFN APIs Boolean Does this FS support LFN APIs?
smb.fs_attr.soids Supports OIDs Boolean Does this FS support OIDs?
smb.fs_attr.srp Reparse Points Boolean Does this FS support REPARSE POINTS?
smb.fs_attr.srs Remote Storage Boolean Does this FS support REMOTE STORAGE?
smb.fs_attr.ssf Sparse Files Boolean Does this FS support SPARSE FILES?
smb.fs_attr.uod Unicode On Disk Boolean Does this FS support Unicode On Disk?
smb.fs_attr.vis Volume Is Compressed Boolean Is this FS on a compressed volume?
smb.fs_attr.vq Volume Quotas Boolean Does this FS support Volume Quotas?
smb.fs_bytes_per_sector Bytes per Sector Unsigned 32-bit integer Bytes per sector
smb.fs_guid FS GUID String File System GUID
smb.fs_id FS Id Unsigned 32-bit integer File System ID (NT Server always returns 0)
smb.fs_max_name_len Max name length Unsigned 32-bit integer Maximum length of each file name component in number of bytes
smb.fs_name FS Name String Name of filesystem
smb.fs_name.len Label Length Unsigned 32-bit integer Length of filesystem name in bytes
smb.fs_sector_per_unit Sectors/Unit Unsigned 32-bit integer Sectors per allocation unit
smb.fs_units Total Units Unsigned 32-bit integer Total number of units on this filesystem
smb.group_id Group ID Unsigned 16-bit integer SMB-over-IPX Group ID
smb.impersonation.level Impersonation Unsigned 32-bit integer Impersonation level
smb.index_number Index Number Unsigned 64-bit integer File system unique identifier
smb.ipc_state.endpoint Endpoint Unsigned 16-bit integer Which end of the pipe this is
smb.ipc_state.icount Icount Unsigned 16-bit integer Count to control pipe instancing
smb.ipc_state.nonblocking Nonblocking Boolean Is I/O to this pipe nonblocking?
smb.ipc_state.pipe_type Pipe Type Unsigned 16-bit integer What type of pipe this is
smb.ipc_state.read_mode Read Mode Unsigned 16-bit integer How this pipe should be read
smb.is_directory Is Directory Unsigned 8-bit integer Is this object a directory?
smb.key Key Unsigned 32-bit integer SMB-over-IPX Key
smb.last_name_offset Last Name Offset Unsigned 16-bit integer If non-0 this is the offset into the datablock for the file name of the last entry
smb.last_write.smb.date Last Write Date Unsigned 16-bit integer Last Write Date, SMB_DATE format
smb.last_write.smb.time Last Write Time Unsigned 16-bit integer Last Write Time, SMB_TIME format
smb.last_write.time Last Write Date/Time stamp Time this file was last written to
smb.link_count Link Count Unsigned 32-bit integer Number of hard links to the file
smb.lock.length Length Unsigned 64-bit integer Length of lock/unlock region
smb.lock.offset Offset Unsigned 64-bit integer Offset in the file of lock/unlock region
smb.lock.type.cancel Cancel Boolean Cancel outstanding lock requests?
smb.lock.type.change Change Boolean Change type of lock?
smb.lock.type.large Large Files Boolean Large file locking requested?
smb.lock.type.oplock_release Oplock Break Boolean Is this a notification of, or a response to, an oplock break?
smb.lock.type.shared Shared Boolean Shared or exclusive lock requested?
smb.locking.num_locks Number of Locks Unsigned 16-bit integer Number of lock requests in this request
smb.locking.num_unlocks Number of Unlocks Unsigned 16-bit integer Number of unlock requests in this request
smb.locking.oplock.level Oplock Level Unsigned 8-bit integer Level of existing oplock at client (if any)
smb.mac.access_control Mac Access Control Boolean Are Mac Access Control Supported
smb.mac.desktop_db_calls Desktop DB Calls Boolean Are Macintosh Desktop DB Calls Supported?
smb.mac.finderinfo Finder Info Byte array Finder Info
smb.mac.get_set_comments Get Set Comments Boolean Are Mac Get Set Comments supported?
smb.mac.streams_support Mac Streams Boolean Are Mac Extensions and streams supported?
smb.mac.support.flags Mac Support Flags Unsigned 32-bit integer Mac Support Flags
smb.mac.uids Macintosh Unique IDs Boolean Are Unique IDs supported
smb.machine_name Machine Name String Name of target machine
smb.marked_for_deletion Marked for Deletion Boolean Marked for deletion?
smb.max_buf Max Buffer Unsigned 16-bit integer Max client buffer size
smb.max_bufsize Max Buffer Size Unsigned 32-bit integer Maximum transmit buffer size
smb.max_mpx_count Max Mpx Count Unsigned 16-bit integer Maximum pending multiplexed requests
smb.max_raw Max Raw Buffer Unsigned 32-bit integer Maximum raw buffer size
smb.max_referral_level Max Referral Level Unsigned 16-bit integer Latest referral version number understood
smb.max_vcs Max VCs Unsigned 16-bit integer Maximum VCs between client and server
smb.maxcount Max Count Unsigned 16-bit integer Maximum Count
smb.maxcount_high Max Count High (multiply with 64K) Unsigned 16-bit integer Maximum Count, High 16 bits
smb.maxcount_low Max Count Low Unsigned 16-bit integer Maximum Count, Low 16 bits
smb.mdc Max Data Count Unsigned 32-bit integer Maximum number of data bytes to return
smb.message Message String Message text
smb.message.len Message Len Unsigned 16-bit integer Length of message
smb.mgid Message Group ID Unsigned 16-bit integer Message group ID for multi-block messages
smb.mid Multiplex ID Unsigned 16-bit integer Multiplex ID
smb.mincount Min Count Unsigned 16-bit integer Minimum Count
smb.modify.time Modified Date/Time stamp Modification Time
smb.monitor_handle Monitor Handle Unsigned 16-bit integer Handle for Find Notify operations
smb.move.flags.dir Must be directory Boolean Must target be a directory?
smb.move.flags.file Must be file Boolean Must target be a file?
smb.move.flags.verify Verify writes Boolean Verify all writes?
smb.mpc Max Parameter Count Unsigned 32-bit integer Maximum number of parameter bytes to return
smb.msc Max Setup Count Unsigned 8-bit integer Maximum number of setup words to return
smb.native_fs Native File System String Native File System
smb.native_lanman Native LAN Manager String Which LANMAN protocol we are running
smb.native_os Native OS String Which OS we are running
smb.next_entry_offset Next Entry Offset Unsigned 32-bit integer Offset to next entry
smb.nt.create.batch_oplock Batch Oplock Boolean Is a batch oplock requested?
smb.nt.create.dir Create Directory Boolean Must target of open be a directory?
smb.nt.create.ext Extended Response Boolean Extended response required?
smb.nt.create.oplock Exclusive Oplock Boolean Is an oplock requested
smb.nt.create_options.delete_on_close Delete On Close Boolean Should the file be deleted when closed?
smb.nt.create_options.directory Directory Boolean Should file being opened/created be a directory?
smb.nt.create_options.eight_dot_three_only 8.3 Only Boolean Does the client understand only 8.3 filenames?
smb.nt.create_options.no_ea_knowledge No EA Knowledge Boolean Does the client not understand extended attributes?
smb.nt.create_options.non_directory Non-Directory Boolean Should file being opened/created be a non-directory?
smb.nt.create_options.random_access Random Access Boolean Will the client be accessing the file randomly?
smb.nt.create_options.sequential_only Sequential Only Boolean Will accees to thsis file only be sequential?
smb.nt.create_options.sync_io_alert Sync I/O Alert Boolean All operations are performed synchronous
smb.nt.create_options.sync_io_nonalert Sync I/O Nonalert Boolean All operations are synchronous and may block
smb.nt.create_options.write_through Write Through Boolean Should writes to the file write buffered data out before completing?
smb.nt.function Function Unsigned 16-bit integer Function for NT Transaction
smb.nt.ioctl.data IOCTL Data Byte array Data for the IOCTL call
smb.nt.ioctl.flags.root_handle Root Handle Boolean Apply to this share or root Dfs share
smb.nt.ioctl.function Function Unsigned 32-bit integer NT IOCTL function code
smb.nt.ioctl.isfsctl IsFSctl Unsigned 8-bit integer Is this a device IOCTL (FALSE) or FS Control (TRUE)
smb.nt.notify.action Action Unsigned 32-bit integer Which action caused this notify response
smb.nt.notify.attributes Attribute Change Boolean Notify on changes to attributes
smb.nt.notify.creation Created Change Boolean Notify on changes to creation time
smb.nt.notify.dir_name Directory Name Change Boolean Notify on changes to directory name
smb.nt.notify.ea EA Change Boolean Notify on changes to Extended Attributes
smb.nt.notify.file_name File Name Change Boolean Notify on changes to file name
smb.nt.notify.last_access Last Access Change Boolean Notify on changes to last access
smb.nt.notify.last_write Last Write Change Boolean Notify on changes to last write
smb.nt.notify.security Security Change Boolean Notify on changes to security settings
smb.nt.notify.size Size Change Boolean Notify on changes to size
smb.nt.notify.stream_name Stream Name Change Boolean Notify on changes to stream name?
smb.nt.notify.stream_size Stream Size Change Boolean Notify on changes of stream size
smb.nt.notify.stream_write Stream Write Boolean Notify on stream write?
smb.nt.notify.watch_tree Watch Tree Unsigned 8-bit integer Should Notify watch subdirectories also?
smb.nt_qsd.dacl DACL Boolean Is DACL security informaton being queried?
smb.nt_qsd.group Group Boolean Is group security informaton being queried?
smb.nt_qsd.owner Owner Boolean Is owner security informaton being queried?
smb.nt_qsd.sacl SACL Boolean Is SACL security informaton being queried?
smb.nt_status NT Status Unsigned 32-bit integer NT Status code
smb.ntr_clu Cluster count Unsigned 32-bit integer Number of clusters
smb.ntr_loi Level of Interest Unsigned 16-bit integer NT Rename level
smb.offset Offset Unsigned 32-bit integer Offset in file
smb.offset_high High Offset Unsigned 32-bit integer High 32 Bits Of File Offset
smb.open.action.lock Exclusive Open Boolean Is this file opened by another user?
smb.open.action.open Open Action Unsigned 16-bit integer Open Action, how the file was opened
smb.open.flags.add_info Additional Info Boolean Additional Information Requested?
smb.open.flags.batch_oplock Batch Oplock Boolean Batch Oplock Requested?
smb.open.flags.ealen Total EA Len Boolean Total EA Len Requested?
smb.open.flags.ex_oplock Exclusive Oplock Boolean Exclusive Oplock Requested?
smb.open.function.create Create Boolean Create file if it doesn't exist?
smb.open.function.open Open Unsigned 16-bit integer Action to be taken on open if file exists
smb.oplock.level Oplock level Unsigned 8-bit integer Level of oplock granted
smb.originator_name Originator Name String Name of sender of message
smb.padding Padding Byte array Padding or unknown data
smb.password Password Byte array Password
smb.path Path String Path. Server name and share name
smb.pc Parameter Count Unsigned 16-bit integer Number of parameter bytes in this buffer
smb.pd Parameter Displacement Unsigned 16-bit integer Displacement of these parameter bytes
smb.pid Process ID Unsigned 16-bit integer Process ID
smb.pid.high Process ID High Unsigned 16-bit integer Process ID High Bytes
smb.pipe.write_len Pipe Write Len Unsigned 16-bit integer Number of bytes written to pipe
smb.po Parameter Offset Unsigned 16-bit integer Offset (from header start) to parameters
smb.primary_domain Primary Domain String The server's primary domain
smb.print.identifier Identifier String Identifier string for this print job
smb.print.mode Mode Unsigned 16-bit integer Text or Graphics mode
smb.print.queued.date Queued Date/Time stamp Date when this entry was queued
smb.print.queued.smb.date Queued Date Unsigned 16-bit integer Date when this print job was queued, SMB_DATE format
smb.print.queued.smb.time Queued Time Unsigned 16-bit integer Time when this print job was queued, SMB_TIME format
smb.print.restart_index Restart Index Unsigned 16-bit integer Index of entry after last returned
smb.print.setup.len Setup Len Unsigned 16-bit integer Length of printer setup data
smb.print.spool.file_number Spool File Number Unsigned 16-bit integer Spool File Number, assigned by the spooler
smb.print.spool.file_size Spool File Size Unsigned 32-bit integer Number of bytes in spool file
smb.print.spool.name Name Byte array Name of client that submitted this job
smb.print.start_index Start Index Unsigned 16-bit integer First queue entry to return
smb.print.status Status Unsigned 8-bit integer Status of this entry
smb.pwlen Password Length Unsigned 16-bit integer Length of password
smb.qfi_loi Level of Interest Unsigned 16-bit integer Level of interest for QUERY_FS_INFORMATION2 command
smb.qpi_loi Level of Interest Unsigned 16-bit integer Level of interest for TRANSACTION[2] QUERY_{FILE,PATH}_INFO commands
smb.quota.flags.deny_disk Deny Disk Boolean Is the default quota limit enforced?
smb.quota.flags.enabled Enabled Boolean Is quotas enabled of this FS?
smb.quota.flags.log_limit Log Limit Boolean Should the server log an event when the limit is exceeded?
smb.quota.flags.log_warning Log Warning Boolean Should the server log an event when the warning level is exceeded?
smb.quota.hard.default (Hard) Quota Limit Unsigned 64-bit integer Hard Quota limit
smb.quota.soft.default (Soft) Quota Treshold Unsigned 64-bit integer Soft Quota treshold
smb.quota.used Quota Used Unsigned 64-bit integer How much Quota is used by this user
smb.quota.user.offset Next Offset Unsigned 32-bit integer Relative offset to next user quota structure
smb.remaining Remaining Unsigned 32-bit integer Remaining number of bytes
smb.replace Replace Boolean Remove target if it exists?
smb.request.mask Request Mask Unsigned 32-bit integer Connectionless mode mask
smb.reserved Reserved Byte array Reserved bytes, must be zero
smb.response.mask Response Mask Unsigned 32-bit integer Connectionless mode mask
smb.response_in Response in Frame number The response to this packet is in this packet
smb.response_to Response to Frame number This packet is a response to the packet in this frame
smb.resume Resume Key Unsigned 32-bit integer Resume Key
smb.resume.client.cookie Client Cookie Byte array Cookie, must not be modified by the server
smb.resume.find_id Find ID Unsigned 8-bit integer Handle for Find operation
smb.resume.key_len Resume Key Length Unsigned 16-bit integer Resume Key length
smb.resume.server.cookie Server Cookie Byte array Cookie, must not be modified by the client
smb.rfid Root FID Unsigned 32-bit integer Open is relative to this FID (if nonzero)
smb.rm.read Read Raw Boolean Is Read Raw supported?
smb.rm.write Write Raw Boolean Is Write Raw supported?
smb.root.dir.count Root Directory Count Unsigned 32-bit integer Root Directory Count
smb.root.file.count Root File Count Unsigned 32-bit integer Root File Count
smb.root_dir_handle Root Directory Handle Unsigned 32-bit integer Root directory handle
smb.sc Setup Count Unsigned 8-bit integer Number of setup words in this buffer
smb.sd.length SD Length Unsigned 32-bit integer Total length of security descriptor
smb.search.attribute.archive Archive Boolean ARCHIVE search attribute
smb.search.attribute.directory Directory Boolean DIRECTORY search attribute
smb.search.attribute.hidden Hidden Boolean HIDDEN search attribute
smb.search.attribute.read_only Read Only Boolean READ ONLY search attribute
smb.search.attribute.system System Boolean SYSTEM search attribute
smb.search.attribute.volume Volume ID Boolean VOLUME ID search attribute
smb.search_count Search Count Unsigned 16-bit integer Maximum number of search entries to return
smb.search_id Search ID Unsigned 16-bit integer Search ID, handle for find operations
smb.search_pattern Search Pattern String Search Pattern
smb.sec_desc_len NT Security Descriptor Length Unsigned 32-bit integer Security Descriptor Length
smb.security.flags.context_tracking Context Tracking Boolean Is security tracking static or dynamic?
smb.security.flags.effective_only Effective Only Boolean Are only enabled or all aspects uf the users SID available?
smb.security_blob Security Blob Byte array Security blob
smb.security_blob_len Security Blob Length Unsigned 16-bit integer Security blob length
smb.seek_mode Seek Mode Unsigned 16-bit integer Seek Mode, what type of seek
smb.segment SMB Segment Frame number SMB Segment
smb.segment.error Defragmentation error Frame number Defragmentation error due to illegal fragments
smb.segment.multipletails Multiple tail fragments found Boolean Several tails were found when defragmenting the packet
smb.segment.overlap Fragment overlap Boolean Fragment overlaps with other fragments
smb.segment.overlap.conflict Conflicting data in fragment overlap Boolean Overlapping fragments contained conflicting data
smb.segment.segments SMB Segments No value SMB Segments
smb.segment.toolongfragment Fragment too long Boolean Fragment contained data past end of packet
smb.sequence_num Sequence Number Unsigned 16-bit integer SMB-over-IPX Sequence Number
smb.server Server String The name of the DC/server
smb.server_cap.bulk_transfer Bulk Transfer Boolean Are Bulk Read and Bulk Write supported?
smb.server_cap.compressed_data Compressed Data Boolean Is compressed data transfer supported?
smb.server_cap.dfs Dfs Boolean Is Dfs supported?
smb.server_cap.extended_security Extended Security Boolean Are Extended security exchanges supported?
smb.server_cap.infolevel_passthru Infolevel Passthru Boolean Is NT information level request passthrough supported?
smb.server_cap.large_files Large Files Boolean Are large files (>4GB) supported?
smb.server_cap.large_readx Large ReadX Boolean Is Large Read andX supported?
smb.server_cap.large_writex Large WriteX Boolean Is Large Write andX supported?
smb.server_cap.level_2_oplocks Level 2 Oplocks Boolean Are Level 2 oplocks supported?
smb.server_cap.lock_and_read Lock and Read Boolean Is Lock and Read supported?
smb.server_cap.mpx_mode MPX Mode Boolean Are Read Mpx and Write Mpx supported?
smb.server_cap.nt_find NT Find Boolean Is NT Find supported?
smb.server_cap.nt_smbs NT SMBs Boolean Are NT SMBs supported?
smb.server_cap.nt_status NT Status Codes Boolean Are NT Status Codes supported?
smb.server_cap.raw_mode Raw Mode Boolean Are Raw Read and Raw Write supported?
smb.server_cap.reserved Reserved Boolean RESERVED
smb.server_cap.rpc_remote_apis RPC Remote APIs Boolean Are RPC Remote APIs supported?
smb.server_cap.unicode Unicode Boolean Are Unicode strings supported?
smb.server_cap.unix UNIX Boolean Are UNIX extensions supported?
smb.server_date_time Server Date and Time Date/Time stamp Current date and time at server
smb.server_date_time.smb_date Server Date Unsigned 16-bit integer Current date at server, SMB_DATE format
smb.server_date_time.smb_time Server Time Unsigned 16-bit integer Current time at server, SMB_TIME format
smb.server_fid Server FID Unsigned 32-bit integer Server unique File ID
smb.server_guid Server GUID Byte array Globally unique identifier for this server
smb.server_timezone Time Zone Signed 16-bit integer Current timezone at server.
smb.service Service String Service name
smb.sessid Session ID Unsigned 16-bit integer SMB-over-IPX Session ID
smb.session_key Session Key Unsigned 32-bit integer Unique token identifying this session
smb.setup.action.guest Guest Boolean Client logged in as GUEST?
smb.share.access.delete Delete Boolean
smb.share.access.read Read Boolean Can the object be shared for reading?
smb.share.access.write Write Boolean Can the object be shared for write?
smb.short_file Short File Name String Short (8.3) File Name
smb.short_file_name_len Short File Name Len Unsigned 32-bit integer Length of Short (8.3) File Name
smb.signature Signature Byte array Signature bytes
smb.sm.mode Mode Boolean User or Share security mode?
smb.sm.password Password Boolean Encrypted or plaintext passwords?
smb.sm.sig_required Sig Req Boolean Are security signatures required?
smb.sm.signatures Signatures Boolean Are security signatures enabled?
smb.spi_loi Level of Interest Unsigned 16-bit integer Level of interest for TRANSACTION[2] SET_{FILE,PATH}_INFO commands
smb.storage_type Storage Type Unsigned 32-bit integer Type of storage
smb.stream_name Stream Name String Name of the stream
smb.stream_name_len Stream Name Length Unsigned 32-bit integer Length of stream name
smb.stream_size Stream Size Unsigned 64-bit integer Size of the stream in number of bytes
smb.system.time System Time Date/Time stamp System Time
smb.target_name Target name String Target file name
smb.target_name_len Target name length Unsigned 32-bit integer Length of target file name
smb.tdc Total Data Count Unsigned 32-bit integer Total number of data bytes
smb.tid Tree ID Unsigned 16-bit integer Tree ID
smb.time Time from request Time duration Time between Request and Response for SMB cmds
smb.timeout Timeout Unsigned 32-bit integer Timeout in miliseconds
smb.total_data_len Total Data Length Unsigned 16-bit integer Total length of data
smb.tpc Total Parameter Count Unsigned 32-bit integer Total number of parameter bytes
smb.trans2.cmd Subcommand Unsigned 16-bit integer Subcommand for TRANSACTION2
smb.trans_name Transaction Name String Name of transaction
smb.transaction.flags.dtid Disconnect TID Boolean Disconnect TID?
smb.transaction.flags.owt One Way Transaction Boolean One Way Transaction (no response)?
smb.uid User ID Unsigned 16-bit integer User ID
smb.unicode_password Unicode Password Byte array Unicode Password
smb.unicode_pwlen Unicode Password Length Unsigned 16-bit integer Length of Unicode password
smb.units Total Units Unsigned 16-bit integer Total number of units at server
smb.unix.capability.fcntl FCNTL Capability Boolean
smb.unix.capability.posix_acl POSIX ACL Capability Boolean
smb.unix.file.atime Last access Date/Time stamp
smb.unix.file.dev_major Major device Unsigned 64-bit integer
smb.unix.file.dev_minor Minor device Unsigned 64-bit integer
smb.unix.file.file_type File type Unsigned 32-bit integer
smb.unix.file.gid GID Unsigned 64-bit integer
smb.unix.file.link_dest Link destination String
smb.unix.file.mtime Last modification Date/Time stamp
smb.unix.file.num_bytes Number of bytes Unsigned 64-bit integer Number of bytes used to store the file
smb.unix.file.num_links Num links Unsigned 64-bit integer
smb.unix.file.perms File permissions Unsigned 64-bit integer
smb.unix.file.size File size Unsigned 64-bit integer
smb.unix.file.stime Last status change Date/Time stamp
smb.unix.file.uid UID Unsigned 64-bit integer
smb.unix.file.unique_id Unique ID Unsigned 64-bit integer
smb.unix.find_file.next_offset Next entry offset Unsigned 32-bit integer
smb.unix.find_file.resume_key Resume key Unsigned 32-bit integer
smb.unix.major_version Major Version Unsigned 16-bit integer UNIX Major Version
smb.unix.minor_version Minor Version Unsigned 16-bit integer UNIX Minor Version
smb.unknown Unknown Data Byte array Unknown Data. Should be implemented by someone
smb.vc VC Number Unsigned 16-bit integer VC Number
smb.volume.label Label String Volume label
smb.volume.label.len Label Length Unsigned 32-bit integer Length of volume label
smb.volume.serial Volume Serial Number Unsigned 32-bit integer Volume serial number
smb.wct Word Count (WCT) Unsigned 8-bit integer Word Count, count of parameter words
smb.write.mode.connectionless Connectionless Boolean Connectionless mode requested?
smb.write.mode.message_start Message Start Boolean Is this the start of a message?
smb.write.mode.raw Write Raw Boolean Use WriteRawNamedPipe?
smb.write.mode.return_remaining Return Remaining Boolean Return remaining data responses?
smb.write.mode.write_through Write Through Boolean Write through mode requested?
mailslot.class Class Unsigned 16-bit integer MAILSLOT Class of transaction
mailslot.name Mailslot Name String MAILSLOT Name of mailslot
mailslot.opcode Opcode Unsigned 16-bit integer MAILSLOT OpCode
mailslot.priority Priority Unsigned 16-bit integer MAILSLOT Priority of transaction
mailslot.size Size Unsigned 16-bit integer MAILSLOT Total size of mail data
pipe.fragment Fragment Frame number Pipe Fragment
pipe.fragment.error Defragmentation error Frame number Defragmentation error due to illegal fragments
pipe.fragment.multipletails Multiple tail fragments found Boolean Several tails were found when defragmenting the packet
pipe.fragment.overlap Fragment overlap Boolean Fragment overlaps with other fragments
pipe.fragment.overlap.conflict Conflicting data in fragment overlap Boolean Overlapping fragments contained conflicting data
pipe.fragment.toolongfragment Fragment too long Boolean Fragment contained data past end of packet
pipe.fragments Fragments No value Pipe Fragments
pipe.function Function Unsigned 16-bit integer SMB Pipe Function Code
pipe.getinfo.current_instances Current Instances Unsigned 8-bit integer Current number of instances
pipe.getinfo.info_level Information Level Unsigned 16-bit integer Information level of information to return
pipe.getinfo.input_buffer_size Input Buffer Size Unsigned 16-bit integer Actual size of buffer for incoming (client) I/O
pipe.getinfo.maximum_instances Maximum Instances Unsigned 8-bit integer Maximum allowed number of instances
pipe.getinfo.output_buffer_size Output Buffer Size Unsigned 16-bit integer Actual size of buffer for outgoing (server) I/O
pipe.getinfo.pipe_name Pipe Name String Name of pipe
pipe.getinfo.pipe_name_length Pipe Name Length Unsigned 8-bit integer Length of pipe name
pipe.peek.available_bytes Available Bytes Unsigned 16-bit integer Total number of bytes available to be read from the pipe
pipe.peek.remaining_bytes Bytes Remaining Unsigned 16-bit integer Total number of bytes remaining in the message at the head of the pipe
pipe.peek.status Pipe Status Unsigned 16-bit integer Pipe status
pipe.priority Priority Unsigned 16-bit integer SMB Pipe Priority
pipe.reassembled_in This PDU is reassembled in Frame number The DCE/RPC PDU is completely reassembled in this frame
pipe.write_raw.bytes_written Bytes Written Unsigned 16-bit integer Number of bytes written to the pipe
snaeth_len Length Unsigned 16-bit integer Length of LLC payload
smux.pdutype PDU type Unsigned 8-bit integer
smux.version Version Unsigned 8-bit integer
spray.clock clock No value Clock
spray.counter counter Unsigned 32-bit integer Counter
spray.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
spray.sec sec Unsigned 32-bit integer Seconds
spray.sprayarr Data Byte array Sprayarr data
spray.usec usec Unsigned 32-bit integer Microseconds
sua.affected_point_code_mask Mask Unsigned 8-bit integer
sua.affected_pointcode_dpc Affected DPC Unsigned 24-bit integer
sua.asp_capabilities_a_bit Protocol Class 3 Boolean
sua.asp_capabilities_b_bit Protocol Class 2 Boolean
sua.asp_capabilities_c_bit Protocol Class 1 Boolean
sua.asp_capabilities_d_bit Protocol Class 0 Boolean
sua.asp_capabilities_interworking Interworking Unsigned 8-bit integer
sua.asp_capabilities_reserved Reserved Byte array
sua.asp_capabilities_reserved_bits Reserved Bits Unsigned 8-bit integer
sua.asp_identifier ASP Identifier Unsigned 32-bit integer
sua.cause_user_cause Cause Unsigned 16-bit integer
sua.cause_user_user User Unsigned 16-bit integer
sua.congestion_level Congestion Level Unsigned 32-bit integer
sua.correlation_id Correlation ID Unsigned 32-bit integer
sua.credit Credit Unsigned 32-bit integer
sua.data Data Byte array
sua.deregistration_status Deregistration status Unsigned 32-bit integer
sua.destination_address_gt_bit Include GT Boolean
sua.destination_address_pc_bit Include PC Boolean
sua.destination_address_reserved_bits Reserved Bits Unsigned 16-bit integer
sua.destination_address_routing_indicator Routing Indicator Unsigned 16-bit integer
sua.destination_address_ssn_bit Include SSN Boolean
sua.destination_reference_number Destination Reference Number Unsigned 32-bit integer
sua.diagnostic_information Diagnostic Information Byte array
sua.drn_label_end End Unsigned 8-bit integer
sua.drn_label_start Start Unsigned 8-bit integer
sua.drn_label_value Label Value Unsigned 16-bit integer
sua.error_code Error code Unsigned 32-bit integer
sua.global_title_nature_of_address Nature of Address Unsigned 8-bit integer
sua.global_title_number_of_digits Number of Digits Unsigned 8-bit integer
sua.global_title_numbering_plan Numbering Plan Unsigned 8-bit integer
sua.global_title_signals Global Title Byte array
sua.global_title_translation_type Translation Type Unsigned 8-bit integer
sua.gt_reserved Reserved Byte array
sua.gti GTI Unsigned 8-bit integer
sua.heartbeat_data Heartbeat Data Byte array
sua.hostname.name Hostname String
sua.importance_inportance Importance Unsigned 8-bit integer
sua.importance_reserved Reserved Byte array
sua.info_string Info string String
sua.ipv4_address IP Version 4 address IPv4 address
sua.ipv6_address IP Version 6 address IPv6 address
sua.local_routing_key_identifier Local routing key identifier Unsigned 32-bit integer
sua.message_class Message Class Unsigned 8-bit integer
sua.message_length Message Length Unsigned 32-bit integer
sua.message_priority_priority Message Priority Unsigned 8-bit integer
sua.message_priority_reserved Reserved Byte array
sua.message_type Message Type Unsigned 8-bit integer
sua.network_appearance Network Appearance Unsigned 32-bit integer
sua.parameter_length Parameter Length Unsigned 16-bit integer
sua.parameter_padding Padding Byte array
sua.parameter_tag Parameter Tag Unsigned 16-bit integer
sua.parameter_value Parameter Value Byte array
sua.point_code Point Code Unsigned 32-bit integer
sua.protcol_class_reserved Reserved Byte array
sua.protocol_class_class Protocol Class Unsigned 8-bit integer
sua.protocol_class_return_on_error_bit Return On Error Bit Boolean
sua.receive_sequence_number_number Receive Sequence Number P(R) Unsigned 8-bit integer
sua.receive_sequence_number_reserved Reserved Byte array
sua.receive_sequence_number_spare_bit Spare Bit Boolean
sua.registration_status Registration status Unsigned 32-bit integer
sua.reserved Reserved Byte array
sua.routing_context Routing context Unsigned 32-bit integer
sua.routing_key_identifier Local Routing Key Identifier Unsigned 32-bit integer
sua.sccp_cause_reserved Reserved Byte array
sua.sccp_cause_type Cause Type Unsigned 8-bit integer
sua.sccp_cause_value Cause Value Unsigned 8-bit integer
sua.segmentation_first_bit First Segment Bit Boolean
sua.segmentation_number_of_remaining_segments Number of Remaining Segments Unsigned 8-bit integer
sua.segmentation_reference Segmentation Reference Unsigned 24-bit integer
sua.sequence_control_sequence_control Sequence Control Unsigned 32-bit integer
sua.sequence_number_more_data_bit More Data Bit Boolean
sua.sequence_number_receive_sequence_number Receive Sequence Number P(R) Unsigned 8-bit integer
sua.sequence_number_reserved Reserved Byte array
sua.sequence_number_sent_sequence_number Sent Sequence Number P(S) Unsigned 8-bit integer
sua.sequence_number_spare_bit Spare Bit Boolean
sua.smi_reserved Reserved Byte array
sua.smi_smi SMI Unsigned 8-bit integer
sua.source_address_gt_bit Include GT Boolean
sua.source_address_pc_bit Include PC Boolean
sua.source_address_reserved_bits Reserved Bits Unsigned 16-bit integer
sua.source_address_routing_indicator Routing Indicator Unsigned 16-bit integer
sua.source_address_ssn_bit Include SSN Boolean
sua.source_reference_number Source Reference Number Unsigned 32-bit integer
sua.ss7_hop_counter_counter SS7 Hop Counter Unsigned 8-bit integer
sua.ss7_hop_counter_reserved Reserved Byte array
sua.ssn Subsystem Number Unsigned 8-bit integer
sua.ssn_reserved Reserved Byte array
sua.status_info Status info Unsigned 16-bit integer
sua.status_type Status type Unsigned 16-bit integer
sua.tid_label_end End Unsigned 8-bit integer
sua.tid_label_start Start Unsigned 8-bit integer
sua.tid_label_value Label Value Unsigned 16-bit integer
sua.traffic_mode_type Traffic mode Type Unsigned 32-bit integer
sua.version Version Unsigned 8-bit integer
sscf-nni.spare Spare Unsigned 24-bit integer
sscf-nni.status Status Unsigned 8-bit integer
ssh.compression_algorithms_client_to_server compression_algorithms_client_to_server string String SSH compression_algorithms_client_to_server string
ssh.compression_algorithms_client_to_server_length compression_algorithms_client_to_server length Unsigned 32-bit integer SSH compression_algorithms_client_to_server length
ssh.compression_algorithms_server_to_client compression_algorithms_server_to_client string String SSH compression_algorithms_server_to_client string
ssh.compression_algorithms_server_to_client_length compression_algorithms_server_to_client length Unsigned 32-bit integer SSH compression_algorithms_server_to_client length
ssh.cookie Cookie Byte array SSH Cookie
ssh.encrypted_packet Encrypted Packet Byte array SSH Protocol Packet
ssh.encryption_algorithms_client_to_server encryption_algorithms_client_to_server string String SSH encryption_algorithms_client_to_server string
ssh.encryption_algorithms_client_to_server_length encryption_algorithms_client_to_server length Unsigned 32-bit integer SSH encryption_algorithms_client_to_server length
ssh.encryption_algorithms_server_to_client encryption_algorithms_server_to_client string String SSH encryption_algorithms_server_to_client string
ssh.encryption_algorithms_server_to_client_length encryption_algorithms_server_to_client length Unsigned 32-bit integer SSH encryption_algorithms_server_to_client length
ssh.kex_algorithms kex_algorithms string String SSH kex_algorithms string
ssh.kex_algorithms_length kex_algorithms length Unsigned 32-bit integer SSH kex_algorithms length
ssh.languages_client_to_server languages_client_to_server string String SSH languages_client_to_server string
ssh.languages_client_to_server_length languages_client_to_server length Unsigned 32-bit integer SSH languages_client_to_server length
ssh.languages_server_to_client languages_server_to_client string String SSH languages_server_to_client string
ssh.languages_server_to_client_length languages_server_to_client length Unsigned 32-bit integer SSH languages_server_to_client length
ssh.mac_algorithms_client_to_server mac_algorithms_client_to_server string String SSH mac_algorithms_client_to_server string
ssh.mac_algorithms_client_to_server_length mac_algorithms_client_to_server length Unsigned 32-bit integer SSH mac_algorithms_client_to_server length
ssh.mac_algorithms_server_to_client mac_algorithms_server_to_client string String SSH mac_algorithms_server_to_client string
ssh.mac_algorithms_server_to_client_length mac_algorithms_server_to_client length Unsigned 32-bit integer SSH mac_algorithms_server_to_client length
ssh.mac_string MAC String String SSH MAC String
ssh.message_code Message Code Unsigned 8-bit integer SSH Message Code
ssh.packet_length Packet Length Unsigned 32-bit integer SSH packet length
ssh.padding_length Padding Length Unsigned 8-bit integer SSH Packet Number
ssh.padding_string Padding String String SSH Padding String
ssh.payload Payload Byte array SSH Payload
ssh.protocol Protocol String SSH Protocol
ssh.server_host_key_algorithms server_host_key_algorithms string String SSH server_host_key_algorithms string
ssh.server_host_key_algorithms_length server_host_key_algorithms length Unsigned 32-bit integer SSH server_host_key_algorithms length
pct.handshake.cert Cert Unsigned 16-bit integer PCT Certificate
pct.handshake.certspec Cert Spec No value PCT Certificate specification
pct.handshake.cipher Cipher Unsigned 16-bit integer PCT Ciper
pct.handshake.cipherspec Cipher Spec No value PCT Cipher specification
pct.handshake.exch Exchange Unsigned 16-bit integer PCT Exchange
pct.handshake.exchspec Exchange Spec No value PCT Exchange specification
pct.handshake.hash Hash Unsigned 16-bit integer PCT Hash
pct.handshake.hashspec Hash Spec No value PCT Hash specification
pct.handshake.server_cert Server Cert No value PCT Server Certificate
pct.handshake.sig Sig Spec Unsigned 16-bit integer PCT Signature
pct.msg_error_code PCT Error Code Unsigned 16-bit integer PCT Error Code
ssl.alert_message Alert Message No value Alert message
ssl.alert_message.desc Description Unsigned 8-bit integer Alert message description
ssl.alert_message.level Level Unsigned 8-bit integer Alert message level
ssl.app_data Application Data No value Payload is application data
ssl.change_cipher_spec Change Cipher Spec Message No value Signals a change in cipher specifications
ssl.handshake Handshake Protocol No value Handshake protocol message
ssl.handshake.cert_type Certificate type Unsigned 8-bit integer Certificate type
ssl.handshake.cert_types Certificate types No value List of certificate types
ssl.handshake.cert_types_count Certificate types count Unsigned 8-bit integer Count of certificate types
ssl.handshake.certificate Certificate Byte array Certificate
ssl.handshake.certificate_length Certificate Length Unsigned 24-bit integer Length of certificate
ssl.handshake.certificates Certificates No value List of certificates
ssl.handshake.certificates_length Certificates Length Unsigned 24-bit integer Length of certificates field
ssl.handshake.challenge Challenge No value Challenge data used to authenticate server
ssl.handshake.challenge_length Challenge Length Unsigned 16-bit integer Length of challenge field
ssl.handshake.cipher_spec_len Cipher Spec Length Unsigned 16-bit integer Length of cipher specs field
ssl.handshake.cipher_suites_length Cipher Suites Length Unsigned 16-bit integer Length of cipher suites field
ssl.handshake.cipherspec Cipher Spec Unsigned 24-bit integer Cipher specification
ssl.handshake.ciphersuite Cipher Suite Unsigned 16-bit integer Cipher suite
ssl.handshake.ciphersuites Cipher Suites No value List of cipher suites supported by client
ssl.handshake.clear_key_data Clear Key Data No value Clear portion of MASTER-KEY
ssl.handshake.clear_key_length Clear Key Data Length Unsigned 16-bit integer Length of clear key data
ssl.handshake.comp_method Compression Method Unsigned 8-bit integer Compression Method
ssl.handshake.comp_methods Compression Methods No value List of compression methods supported by client
ssl.handshake.comp_methods_length Compression Methods Length Unsigned 8-bit integer Length of compression methods field
ssl.handshake.connection_id Connection ID No value Server's challenge to client
ssl.handshake.connection_id_length Connection ID Length Unsigned 16-bit integer Length of connection ID
ssl.handshake.dname Distinguished Name Byte array Distinguished name of a CA that server trusts
ssl.handshake.dname_len Distinguished Name Length Unsigned 16-bit integer Length of distinguished name
ssl.handshake.dnames Distinguished Names No value List of CAs that server trusts
ssl.handshake.dnames_len Distinguished Names Length Unsigned 16-bit integer Length of list of CAs that server trusts
ssl.handshake.encrypted_key Encrypted Key No value Secret portion of MASTER-KEY encrypted to server
ssl.handshake.encrypted_key_length Encrypted Key Data Length Unsigned 16-bit integer Length of encrypted key data
ssl.handshake.extension.data Data Byte array Hello Extension data
ssl.handshake.extension.len Length Unsigned 16-bit integer Length of a hello extension
ssl.handshake.extension.type Type Unsigned 16-bit integer Hello extension type
ssl.handshake.extensions_length Extensions Length Unsigned 16-bit integer Length of hello extensions
ssl.handshake.key_arg Key Argument No value Key Argument (e.g., Initialization Vector)
ssl.handshake.key_arg_length Key Argument Length Unsigned 16-bit integer Length of key argument
ssl.handshake.length Length Unsigned 24-bit integer Length of handshake message
ssl.handshake.md5_hash MD5 Hash No value Hash of messages, master_secret, etc.
ssl.handshake.random Random.bytes No value Random challenge used to authenticate server
ssl.handshake.random_time Random.gmt_unix_time Date/Time stamp Unix time field of random structure
ssl.handshake.session_id Session ID Byte array Identifies the SSL session, allowing later resumption
ssl.handshake.session_id_hit Session ID Hit Boolean Did the server find the client's Session ID?
ssl.handshake.session_id_length Session ID Length Unsigned 8-bit integer Length of session ID field
ssl.handshake.sha_hash SHA-1 Hash No value Hash of messages, master_secret, etc.
ssl.handshake.type Handshake Message Type Unsigned 8-bit integer SSLv2 handshake message type
ssl.handshake.verify_data Verify Data No value Opaque verification data
ssl.handshake.version Version Unsigned 16-bit integer Maximum version supported by client
ssl.pct_handshake.type Handshake Message Type Unsigned 8-bit integer PCT handshake message type
ssl.record Record Layer No value Record layer
ssl.record.content_type Content Type Unsigned 8-bit integer Content type
ssl.record.is_escape Is Escape Boolean Indicates a security escape
ssl.record.length Length Unsigned 16-bit integer Length of SSL record data
ssl.record.padding_length Padding Length Unsigned 8-bit integer Length of padding at end of record
ssl.record.version Version Unsigned 16-bit integer Record layer version.
spp.ack Acknowledgment Number Unsigned 16-bit integer
spp.alloc Allocation Number Unsigned 16-bit integer
spp.ctl Connection Control Unsigned 8-bit integer
spp.ctl.attn Attention Boolean
spp.ctl.eom End of Message Boolean
spp.ctl.send_ack Send Ack Boolean
spp.ctl.sys System Packet Boolean
spp.dst Destination Connection ID Unsigned 16-bit integer
spp.rexmt_frame Retransmitted Frame Number Frame number
spp.seq Sequence Number Unsigned 16-bit integer
spp.src Source Connection ID Unsigned 16-bit integer
spp.type Datastream type Unsigned 8-bit integer
spx.ack Acknowledgment Number Unsigned 16-bit integer
spx.alloc Allocation Number Unsigned 16-bit integer
spx.ctl Connection Control Unsigned 8-bit integer
spx.ctl.attn Attention Boolean
spx.ctl.eom End of Message Boolean
spx.ctl.send_ack Send Ack Boolean
spx.ctl.sys System Packet Boolean
spx.dst Destination Connection ID Unsigned 16-bit integer
spx.rexmt_frame Retransmitted Frame Number Frame number
spx.seq Sequence Number Unsigned 16-bit integer
spx.src Source Connection ID Unsigned 16-bit integer
spx.type Datastream type Unsigned 8-bit integer
ipxsap.request Request Boolean TRUE if SAP request
ipxsap.response Response Boolean TRUE if SAP response
srvloc.attrreq.attrlist Attribute List String
srvloc.attrreq.attrlistlen Attribute List Length Unsigned 16-bit integer
srvloc.attrreq.prlist Previous Response List String Previous Response List
srvloc.attrreq.prlistlen Previous Response List Length Unsigned 16-bit integer Length of Previous Response List
srvloc.attrreq.scopelist Scope List String
srvloc.attrreq.scopelistlen Scope List Length Unsigned 16-bit integer Length of the Scope List
srvloc.attrreq.slpspi SLP SPI String
srvloc.attrreq.slpspilen SLP SPI Length Unsigned 16-bit integer Length of the SLP SPI
srvloc.attrreq.taglist Tag List String
srvloc.attrreq.taglistlen Tag List Length Unsigned 16-bit integer
srvloc.attrreq.url Service URL String URL of service
srvloc.attrreq.urllen URL Length Unsigned 16-bit integer
srvloc.attrrply.attrlist Attribute List String
srvloc.attrrply.attrlistlen Attribute List Length Unsigned 16-bit integer Length of Attribute List
srvloc.authblkv2.slpspi SLP SPI String
srvloc.authblkv2.slpspilen SLP SPI Length Unsigned 16-bit integer Length of the SLP SPI
srvloc.authblkv2.timestamp Timestamp Date/Time stamp Timestamp on Authentication Block
srvloc.authblkv2_bsd BSD Unsigned 16-bit integer Block Structure Descriptor
srvloc.authblkv2_len Length Unsigned 16-bit integer Length of Authentication Block
srvloc.daadvert.attrlist Attribute List String
srvloc.daadvert.attrlistlen Attribute List Length Unsigned 16-bit integer
srvloc.daadvert.authcount Auths Unsigned 8-bit integer Number of Authentication Blocks
srvloc.daadvert.scopelist Scope List String
srvloc.daadvert.scopelistlen Scope List Length Unsigned 16-bit integer Length of the Scope List
srvloc.daadvert.slpspi SLP SPI String
srvloc.daadvert.slpspilen SLP SPI Length Unsigned 16-bit integer Length of the SLP SPI
srvloc.daadvert.timestamp DAADVERT Timestamp Date/Time stamp Timestamp on DA Advert
srvloc.daadvert.url URL String
srvloc.daadvert.urllen URL Length Unsigned 16-bit integer
srvloc.err Error Code Unsigned 16-bit integer
srvloc.errv2 Error Code Unsigned 16-bit integer
srvloc.flags_v1 Flags Unsigned 8-bit integer
srvloc.flags_v1.attribute_auth Attribute Authentication Boolean Can whole packet fit into a datagram?
srvloc.flags_v1.fresh Fresh Registration Boolean Is this a new registration?
srvloc.flags_v1.monolingual Monolingual Boolean Can whole packet fit into a datagram?
srvloc.flags_v1.overflow. Overflow Boolean Can whole packet fit into a datagram?
srvloc.flags_v1.url_auth URL Authentication Boolean Can whole packet fit into a datagram?
srvloc.flags_v2 Flags Unsigned 16-bit integer
srvloc.flags_v2.fresh Fresh Registration Boolean Is this a new registration?
srvloc.flags_v2.overflow Overflow Boolean Can whole packet fit into a datagram?
srvloc.flags_v2.reqmulti Multicast requested Boolean Do we want multicast?
srvloc.function Function Unsigned 8-bit integer
srvloc.langtag Lang Tag String
srvloc.langtaglen Lang Tag Len Unsigned 16-bit integer
srvloc.list.ipaddr IP Address IPv4 address IP Address of SLP server
srvloc.nextextoff Next Extension Offset Unsigned 24-bit integer
srvloc.pktlen Packet Length Unsigned 24-bit integer
srvloc.saadvert.attrlist Attribute List String
srvloc.saadvert.attrlistlen Attribute List Length Unsigned 16-bit integer
srvloc.saadvert.authcount Auths Unsigned 8-bit integer Number of Authentication Blocks
srvloc.saadvert.scopelist Scope List String
srvloc.saadvert.scopelistlen Scope List Length Unsigned 16-bit integer Length of the Scope List
srvloc.saadvert.url URL String
srvloc.saadvert.urllen URL Length Unsigned 16-bit integer
srvloc.srvdereq.scopelist Scope List String
srvloc.srvdereq.scopelistlen Scope List Length Unsigned 16-bit integer
srvloc.srvdereq.taglist Tag List String
srvloc.srvdereq.taglistlen Tag List Length Unsigned 16-bit integer
srvloc.srvreq.attrauthcount Attr Auths Unsigned 8-bit integer Number of Attribute Authentication Blocks
srvloc.srvreq.attrlist Attribute List String
srvloc.srvreq.attrlistlen Attribute List Length Unsigned 16-bit integer
srvloc.srvreq.predicate Predicate String
srvloc.srvreq.predicatelen Predicate Length Unsigned 16-bit integer Length of the Predicate
srvloc.srvreq.prlist Previous Response List String Previous Response List
srvloc.srvreq.prlistlen Previous Response List Length Unsigned 16-bit integer Length of Previous Response List
srvloc.srvreq.scopelist Scope List String
srvloc.srvreq.scopelistlen Scope List Length Unsigned 16-bit integer Length of the Scope List
srvloc.srvreq.slpspi SLP SPI String
srvloc.srvreq.slpspilen SLP SPI Length Unsigned 16-bit integer Length of the SLP SPI
srvloc.srvreq.srvtype Service Type String
srvloc.srvreq.srvtypelen Service Type Length Unsigned 16-bit integer Length of Service Type List
srvloc.srvreq.srvtypelist Service Type List String
srvloc.srvreq.urlcount Number of URLs Unsigned 16-bit integer
srvloc.srvtypereq.nameauthlist Naming Authority List String
srvloc.srvtypereq.nameauthlistlen Naming Authority List Length Unsigned 16-bit integer Length of the Naming Authority List
srvloc.srvtypereq.prlist Previous Response List String Previous Response List
srvloc.srvtypereq.prlistlen Previous Response List Length Unsigned 16-bit integer Length of Previous Response List
srvloc.srvtypereq.scopelist Scope List String
srvloc.srvtypereq.scopelistlen Scope List Length Unsigned 16-bit integer Length of the Scope List
srvloc.srvtypereq.srvtypelen Service Type Length Unsigned 16-bit integer Length of the Service Type
srvloc.srvtypereq.srvtypelistlen Service Type List Length Unsigned 16-bit integer Length of the Service Type List
srvloc.srvtyperply.srvtype Service Type String
srvloc.srvtyperply.srvtypelist Service Type List String
srvloc.url.lifetime URL lifetime Unsigned 16-bit integer
srvloc.url.numauths Num Auths Unsigned 8-bit integer
srvloc.url.reserved Reserved Unsigned 8-bit integer
srvloc.url.url URL String
srvloc.url.urllen URL Length Unsigned 16-bit integer
srvloc.version Version Unsigned 8-bit integer
srvloc.xid XID Unsigned 24-bit integer Transaction ID
sap.auth Authentication data No value Auth data
sap.auth.flags Authentication data flags Unsigned 8-bit integer Auth flags
sap.auth.flags.p Padding Bit Boolean Compression
sap.auth.flags.t Authentication Type Unsigned 8-bit integer Auth type
sap.auth.flags.v Version Number Unsigned 8-bit integer Version
sap.flags Flags Unsigned 8-bit integer Bits in the beginning of the SAP header
sap.flags.a Address Type Boolean Originating source address type
sap.flags.c Compression Bit Boolean Compression
sap.flags.e Encryption Bit Boolean Encryption
sap.flags.r Reserved Boolean Reserved
sap.flags.t Message Type Boolean Announcement type
sap.flags.v Version Number Unsigned 8-bit integer 3 bit version field in the SAP header
sdp.bandwidth Bandwidth Information (b) String Bandwidth Information
sdp.bandwidth.modifier Bandwidth Modifier String Bandwidth Modifier
sdp.bandwidth.value Bandwidth Value String Bandwidth Value (in kbits/s)
sdp.connection_info Connection Information (c) String Connection Information
sdp.connection_info.address Connection Address String Connection Address
sdp.connection_info.address_type Connection Address Type String Connection Address Type
sdp.connection_info.network_type Connection Network Type String Connection Network Type
sdp.connection_info.num_addr Connection Number of Addresses String Connection Number of Addresses
sdp.connection_info.ttl Connection TTL String Connection TTL
sdp.email E-mail Address (e) String E-mail Address
sdp.encryption_key Encryption Key (k) String Encryption Key
sdp.encryption_key.data Key Data String Data
sdp.encryption_key.type Key Type String Type
sdp.invalid Invalid line String Invalid line
sdp.media Media Description, name and address (m) String Media Description, name and address
sdp.media.format Media Format String Media Format
sdp.media.media Media Type String Media Type
sdp.media.port Media Port String Media Port
sdp.media.portcount Media Port Count String Media Port Count
sdp.media.proto Media Proto String Media Protocol
sdp.media_attr Media Attribute (a) String Media Attribute
sdp.media_attribute.field Media Attribute Fieldname String Media Attribute Fieldname
sdp.media_attribute.value Media Attribute Value String Media Attribute Value
sdp.media_title Media Title (i) String Media Title
sdp.owner Owner/Creator, Session Id (o) String Owner/Creator, Session Id
sdp.owner.address Owner Address String Owner Address
sdp.owner.address_type Owner Address Type String Owner Address Type
sdp.owner.network_type Owner Network Type String Owner Network Type
sdp.owner.sessionid Session ID String Session ID
sdp.owner.username Owner Username String Owner Username
sdp.owner.version Session Version String Session Version
sdp.phone Phone Number (p) String Phone Number
sdp.repeat_time Repeat Time (r) String Repeat Time
sdp.repeat_time.duration Repeat Duration String Repeat Duration
sdp.repeat_time.interval Repeat Interval String Repeat Interval
sdp.repeat_time.offset Repeat Offset String Repeat Offset
sdp.session_attr Session Attribute (a) String Session Attribute
sdp.session_attr.field Session Attribute Fieldname String Session Attribute Fieldname
sdp.session_attr.value Session Attribute Value String Session Attribute Value
sdp.session_info Session Information (i) String Session Information
sdp.session_name Session Name (s) String Session Name
sdp.time Time Description, active time (t) String Time Description, active time
sdp.time.start Session Start Time String Session Start Time
sdp.time.stop Session Stop Time String Session Stop Time
sdp.timezone Time Zone Adjustments (z) String Time Zone Adjustments
sdp.timezone.offset Timezone Offset String Timezone Offset
sdp.timezone.time Timezone Time String Timezone Time
sdp.unknown Unknown String Unknown
sdp.uri URI of Description (u) String URI of Description
sdp.version Session Description Protocol Version (v) String Session Description Protocol Version
sip.Accept Accept String RFC 3261: Accept Header
sip.Accept-Contact Accept-Contact String RFC 3841: Accept-Contact Header
sip.Accept-Encoding Accept-Encoding String RFC 3841: Accept-Encoding Header
sip.Accept-Language Accept-Language String RFC 3261: Accept-Language Header
sip.Accept-Resource-Priority Accept-Resource-Priority String Draft: Accept-Resource-Priority Header
sip.Alert-Info Alert-Info String RFC 3261: Alert-Info Header
sip.Allow Allow String RFC 3261: Allow Header
sip.Allow-Events Allow-Events String RFC 3265: Allow-Events Header
sip.Authentication-Info Authentication-Info String RFC 3261: Authentication-Info Header
sip.Authorization Authorization String RFC 3261: Authorization Header
sip.CSeq CSeq String RFC 3261: CSeq Header
sip.Call-ID Call-ID String RFC 3261: Call-ID Header
sip.Call-Info Call-Info String RFC 3261: Call-Info Header
sip.Contact Contact String RFC 3261: Contact Header
sip.Content-Disposition Content-Disposition String RFC 3261: Content-Disposition Header
sip.Content-Encoding Content-Encoding String RFC 3261: Content-Encoding Header
sip.Content-Language Content-Language String RFC 3261: Content-Language Header
sip.Content-Length Content-Length String RFC 3261: Content-Length Header
sip.Content-Type Content-Type String RFC 3261: Content-Type Header
sip.Date Date String RFC 3261: Date Header
sip.ETag ETag String SIP-ETag Header
sip.Error-Info Error-Info String RFC 3261: Error-Info Header
sip.Event Event String RFC 3265: Event Header
sip.Expires Expires String RFC 3261: Expires Header
sip.From From String RFC 3261: From Header
sip.If_Match If_Match String SIP-If-Match Header
sip.In-Reply-To In-Reply-To String RFC 3261: In-Reply-To Header
sip.Join Join String Draft: Join Header
sip.MIME-Version MIME-Version String RFC 3261: MIME-Version Header
sip.Max-Forwards Max-Forwards String RFC 3261: Max-Forwards Header
sip.Method Method String SIP Method
sip.Min-Expires Min-Expires String RFC 3261: Min-Expires Header
sip.Min-SE Min-SE String Draft: Min-SE Header
sip.Organization Organization String RFC 3261: Organization Header
sip.P-Access-Network-Info P-Access-Network-Info String P-Access-Network-Info Header
sip.P-Asserted-Identity P-Asserted-Identity String P-Asserted-Identity Header
sip.P-Associated-URI P-Associated-URI String P-Associated-URI Header
sip.P-Called-Party-ID P-Called-Party-ID String P-Called-Party-ID Header
sip.P-Charging-Function-Addresses P-Charging-Function-Addresses String P-Charging-Function-Addresses
sip.P-Charging-Vector P-Charging-Vector String P-Charging-Vector Header
sip.P-DCS-Billing-Info P-DCS-Billing-Info String P-DCS-Billing-Info Header
sip.P-DCS-LAES P-DCS-LAES String P-DCS-LAES Header
sip.P-DCS-OSPS P-DCS-OSPS String P-DCS-OSPS Header
sip.P-DCS-Redirect P-DCS-Redirect String P-DCS-Redirect Header
sip.P-DCS-Trace-Party-ID P-DCS-Trace-Party-ID String P-DCS-Trace-Party-ID Header
sip.P-Media-Authorization P-Media-Authorization String P-Media-Authorization Header
sip.P-Preferred-Identity P-Preferred-Identity String P-Preferred-Identity Header
sip.P-Visited-Network-ID P-Visited-Network-ID String P-Visited-Network-ID Header
sip.Path Path String Path Header
sip.Priority Priority String RFC 3261: Priority Header
sip.Privacy Privacy String Privacy Header
sip.Proxy-Authenticate Proxy-Authenticate String RFC 3261: Proxy-Authenticate Header
sip.Proxy-Authorization Proxy-Authorization String RFC 3261: Proxy-Authorization Header
sip.Proxy-Require Proxy-Require String RFC 3261: Proxy-Require Header
sip.RAck RAck String RFC 3262: RAck Header
sip.RSeq RSeq String RFC 3262: RSeq Header
sip.Reason Reason String RFC 3326 Reason Header
sip.Record-Route Record-Route String RFC 3261: Record-Route Header
sip.Refer-To Refer-To String Refer-To Header
sip.Refered-by Refered By String RFC 3892: Refered-by Header
sip.Reject-Contact Reject-Contact String RFC 3841: Reject-Contact Header
sip.Replaces Replaces String RFC 3891: Replaces Header
sip.Reply-To Reply-To String RFC 3261: Reply-To Header
sip.Request-Disposition Request-Disposition String RFC 3841: Request-Disposition Header
sip.Request-Line Request-Line String SIP Request-Line
sip.Require Require String RFC 3261: Require Header
sip.Resource-Priority Resource-Priority String Draft: Resource-Priority Header
sip.Retry-After Retry-After String RFC 3261: Retry-After Header
sip.Route Route String RFC 3261: Route Header
sip.Security-Client Security-Client String RFC 3329 Security-Client Header
sip.Security-Server Security-Server String RFC 3329 Security-Server Header
sip.Security-Verify Security-Verify String RFC 3329 Security-Verify Header
sip.Server Server String RFC 3261: Server Header
sip.Service-Route Service-Route String Service-Route Header
sip.Session-Expires Session-Expires String Session-Expires Header
sip.Status-Code Status-Code Unsigned 32-bit integer SIP Status Code
sip.Status-Line Status-Line String SIP Status-Line
sip.Subject Subject String RFC 3261: Subject Header
sip.Subscription-State Subscription-State String RFC 3265: Subscription-State Header
sip.Supported Supported String RFC 3261: Supported Header
sip.Timestamp Timestamp String RFC 3261: Timestamp Header
sip.To To String RFC 3261: To Header
sip.Unsupported Unsupported String RFC 3261: Unsupported Header
sip.User-Agent User-Agent String RFC 3261: User-Agent Header
sip.Via Via String RFC 3261: Via Header
sip.WWW-Authenticate WWW-Authenticate String RFC 3261: WWW-Authenticate Header
sip.Warning Warning String RFC 3261: Warning Header
sip.display.info SIP Display info String RFC 3261: Display info
sip.from.addr SIP from address String RFC 3261: from addr
sip.msg_hdr Message Header No value Message Header in SIP message
sip.resend Resent Packet Boolean
sip.resend-original Suspected resend of frame Frame number Original transmission of frame
sip.tag SIP tag String RFC 3261: tag
sip.to.addr SIP to address String RFC 3261: to addr
smpp.SC_interface_version SMSC-supported version String Version of SMPP interface supported by the SMSC.
smpp.additional_status_info_text Information String Description of the meaning of a response PDU.
smpp.addr_npi Numbering plan indicator Unsigned 8-bit integer Gives the numbering plan this address belongs to.
smpp.addr_ton Type of number Unsigned 8-bit integer Indicates the type of number, given in the address.
smpp.address_range Address String Given address or address range.
smpp.alert_on_message_delivery Alert on delivery No value Instructs the handset to alert user on message delivery.
smpp.callback_num Callback number No value Associates a call back number with the message.
smpp.callback_num.pres Presentation Unsigned 8-bit integer Controls the presentation indication.
smpp.callback_num.scrn Screening Unsigned 8-bit integer Controls screening of the callback-number.
smpp.callback_num_atag Callback number - alphanumeric display tag No value Associates an alphanumeric display with call back number.
smpp.command_id Operation Unsigned 32-bit integer Defines the SMPP PDU.
smpp.command_length Length Unsigned 32-bit integer Total length of the SMPP PDU.
smpp.command_status Result Unsigned 32-bit integer Indicates success or failure of the SMPP request.
smpp.data_coding Data coding Unsigned 8-bit integer Defines the encoding scheme of the message.
smpp.dcs SMPP Data Coding Scheme Unsigned 8-bit integer Data Coding Scheme according to SMPP.
smpp.dcs.cbs_class DCS CBS Message class Unsigned 8-bit integer Specifies the message class for GSM Cell Broadcast Service, for the Data coding / message handling code group.
smpp.dcs.cbs_coding_group DCS Coding Group for CBS Unsigned 8-bit integer Data Coding Scheme coding group for GSM Cell Broadcast Service.
smpp.dcs.cbs_language DCS CBS Message language Unsigned 8-bit integer Language of the GSM Cell Broadcast Service message.
smpp.dcs.charset DCS Character set Unsigned 8-bit integer Specifies the character set used in the message.
smpp.dcs.class DCS Message class Unsigned 8-bit integer Specifies the message class.
smpp.dcs.class_present DCS Class present Boolean Indicates if the message class is present (defined).
smpp.dcs.sms_coding_group DCS Coding Group for SMS Unsigned 8-bit integer Data Coding Scheme coding group for GSM Short Message Service.
smpp.dcs.text_compression DCS Text compression Boolean Indicates if text compression is used.
smpp.dcs.wap_class DCS CBS Message class Unsigned 8-bit integer Specifies the message class for GSM Cell Broadcast Service, as specified by the WAP Forum (WAP over GSM USSD).
smpp.dcs.wap_coding DCS Message coding Unsigned 8-bit integer Specifies the used message encoding, as specified by the WAP Forum (WAP over GSM USSD).
smpp.delivery_failure_reason Delivery failure reason Unsigned 8-bit integer Indicates the reason for a failed delivery attempt.
smpp.dest_addr_npi Numbering plan indicator (recipient) Unsigned 8-bit integer Gives recipient numbering plan this address belongs to.
smpp.dest_addr_subunit Subunit destination Unsigned 8-bit integer Subunit address within mobile to route message to.
smpp.dest_addr_ton Type of number (recipient) Unsigned 8-bit integer Indicates recipient type of number, given in the address.
smpp.dest_bearer_type Destination bearer Unsigned 8-bit integer Desired bearer for delivery of message.
smpp.dest_network_type Destination network Unsigned 8-bit integer Network associated with the destination address.
smpp.dest_telematics_id Telematic interworking (dest) Unsigned 16-bit integer Telematic interworking to be used for message delivery.
smpp.destination_addr Recipient address String Address of SME receiving this message.
smpp.destination_port Destination port Unsigned 16-bit integer Application port associated with the destination of the message.
smpp.display_time Display time Unsigned 8-bit integer Associates a display time with the message on the handset.
smpp.dl_name Distr. list name String The name of the distribution list.
smpp.dlist Destination list No value The list of destinations for a short message.
smpp.dlist_resp Unsuccesfull delivery list No value The list of unsuccesfull deliveries to destinations.
smpp.dpf_result Delivery pending set? Unsigned 8-bit integer Indicates whether Delivery Pending Flag was set.
smpp.error_code Error code Unsigned 8-bit integer Network specific error code defining reason for failure.
smpp.error_status_code Status Unsigned 32-bit integer Indicates success/failure of request for this address.
smpp.esm.submit.features GSM features Unsigned 8-bit integer GSM network specific features.
smpp.esm.submit.msg_mode Messaging mode Unsigned 8-bit integer Mode attribute for this message.
smpp.esm.submit.msg_type Message type Unsigned 8-bit integer Type attribute for this message.
smpp.esme_addr ESME address String Address of ESME originating this message.
smpp.esme_addr_npi Numbering plan indicator (ESME) Unsigned 8-bit integer Gives the numbering plan this address belongs to.
smpp.esme_addr_ton Type of number (ESME) Unsigned 8-bit integer Indicates recipient type of number, given in the address.
smpp.final_date Final date Date/Time stamp Date-time when the queried message reached a final state.
smpp.final_date_r Final date Time duration Date-time when the queried message reached a final state.
smpp.interface_version Version (if) String Version of SMPP interface supported.
smpp.its_reply_type Reply method Unsigned 8-bit integer Indicates the handset reply method on message receipt.
smpp.its_session.ind Session indicator Unsigned 8-bit integer Indicates whether this message is end of conversation.
smpp.its_session.number Session number Unsigned 8-bit integer Session number of interactive teleservice.
smpp.its_session.sequence Sequence number Unsigned 8-bit integer Sequence number of the dialogue unit.
smpp.language_indicator Language Unsigned 8-bit integer Indicates the language of the short message.
smpp.message Message No value The actual message or data.
smpp.message_id Message id. String Identifier of the submitted short message.
smpp.message_payload Payload No value Short message user data.
smpp.message_state Message state Unsigned 8-bit integer Specifies the status of the queried short message.
smpp.more_messages_to_send More messages? Unsigned 8-bit integer Indicates more messages pending for the same destination.
smpp.ms_availability_status Availability status Unsigned 8-bit integer Indicates the availability state of the handset.
smpp.ms_validity Validity info Unsigned 8-bit integer Associates validity info with the message on the handset.
smpp.msg_wait.ind Indication Unsigned 8-bit integer Indicates to the handset that a message is waiting.
smpp.msg_wait.type Type Unsigned 8-bit integer Indicates type of message that is waiting.
smpp.network_error.code Error code Unsigned 16-bit integer Gives the actual network error code.
smpp.network_error.type Error type Unsigned 8-bit integer Indicates the network type.
smpp.number_of_messages Number of messages Unsigned 8-bit integer Indicates number of messages stored in a mailbox.
smpp.opt_param Optional parameters No value The list of optional parameters in this operation.
smpp.password Password String Password used for authentication.
smpp.payload_type Payload Unsigned 8-bit integer PDU type contained in the message payload.
smpp.priority_flag Priority level Unsigned 8-bit integer The priority level of the short message.
smpp.privacy_indicator Privacy indicator Unsigned 8-bit integer Indicates the privacy level of the message.
smpp.protocol_id Protocol id. Unsigned 8-bit integer Protocol identifier according GSM 03.40.
smpp.qos_time_to_live Validity period Unsigned 32-bit integer Number of seconds to retain message before expiry.
smpp.receipted_message_id SMSC identifier String SMSC handle of the message being received.
smpp.regdel.acks Message type Unsigned 8-bit integer SME acknowledgement request.
smpp.regdel.notif Intermediate notif Unsigned 8-bit integer Intermediate notification request.
smpp.regdel.receipt Delivery receipt Unsigned 8-bit integer SMSC delivery receipt request.
smpp.replace_if_present_flag Replace Unsigned 8-bit integer Replace the short message with this one or not.
smpp.reserved_op Optional parameter - Reserved No value An optional parameter that is reserved in this version.
smpp.sar_msg_ref_num SAR reference number Unsigned 16-bit integer Reference number for a concatenated short message.
smpp.sar_segment_seqnum SAR sequence number Unsigned 8-bit integer Segment number within a concatenated short message.
smpp.sar_total_segments SAR size Unsigned 16-bit integer Number of segments of a concatenated short message.
smpp.schedule_delivery_time Scheduled delivery time Date/Time stamp Scheduled time for delivery of short message.
smpp.schedule_delivery_time_r Scheduled delivery time Time duration Scheduled time for delivery of short message.
smpp.sequence_number Sequence # Unsigned 32-bit integer A number to correlate requests with responses.
smpp.service_type Service type String SMS application service associated with the message.
smpp.set_dpf Request DPF set Unsigned 8-bit integer Request to set the DPF for certain failure scenario's.
smpp.sm_default_msg_id Predefined message Unsigned 8-bit integer Index of a predefined ('canned') short message.
smpp.sm_length Message length Unsigned 8-bit integer Length of the message content.
smpp.source_addr Originator address String Address of SME originating this message.
smpp.source_addr_npi Numbering plan indicator (originator) Unsigned 8-bit integer Gives originator numbering plan this address belongs to.
smpp.source_addr_subunit Subunit origin Unsigned 8-bit integer Subunit address within mobile that generated the message.
smpp.source_addr_ton Type of number (originator) Unsigned 8-bit integer Indicates originator type of number, given in the address.
smpp.source_bearer_type Originator bearer Unsigned 8-bit integer Bearer over which the message originated.
smpp.source_network_type Originator network Unsigned 8-bit integer Network associated with the originator address.
smpp.source_port Source port Unsigned 16-bit integer Application port associated with the source of the message.
smpp.source_telematics_id Telematic interworking (orig) Unsigned 16-bit integer Telematic interworking used for message submission.
smpp.system_id System ID String Identifies a system.
smpp.system_type System type String Categorises the system.
smpp.user_message_reference Message reference Unsigned 16-bit integer Reference to the message, assigned by the user.
smpp.user_response_code Application response code Unsigned 8-bit integer A response code set by the user.
smpp.ussd_service_op USSD service operation Unsigned 8-bit integer Indicates the USSD service operation.
smpp.validity_period Validity period Date/Time stamp Validity period of this message.
smpp.validity_period_r Validity period Time duration Validity period of this message.
smpp.vendor_op Optional parameter - Vendor-specific No value A supplied optional parameter specific to an SMSC-vendor.
smrse.address_type address-type Signed 32-bit integer SMS-Address/address-type
smrse.address_value address-value Unsigned 32-bit integer SMS-Address/address-value
smrse.alerting_MS_ISDN alerting-MS-ISDN No value RPError/alerting-MS-ISDN
smrse.connect_fail_reason connect-fail-reason Signed 32-bit integer SMR-Bind-Failure/connect-fail-reason
smrse.error_reason error-reason Signed 32-bit integer RPError/error-reason
smrse.length Length Unsigned 16-bit integer Length of SMRSE PDU
smrse.message_reference message-reference Unsigned 32-bit integer
smrse.mo_message_reference mo-message-reference Unsigned 32-bit integer RPDataMO/mo-message-reference
smrse.mo_originating_address mo-originating-address No value RPDataMO/mo-originating-address
smrse.mo_user_data mo-user-data Byte array RPDataMO/mo-user-data
smrse.moimsi moimsi Byte array RPDataMO/moimsi
smrse.ms_address ms-address No value RPAlertSC/ms-address
smrse.msg_waiting_set msg-waiting-set Boolean RPError/msg-waiting-set
smrse.mt_destination_address mt-destination-address No value RPDataMT/mt-destination-address
smrse.mt_message_reference mt-message-reference Unsigned 32-bit integer RPDataMT/mt-message-reference
smrse.mt_mms mt-mms Boolean RPDataMT/mt-mms
smrse.mt_origVMSCAddr mt-origVMSCAddr No value RPDataMT/mt-origVMSCAddr
smrse.mt_originating_address mt-originating-address No value RPDataMT/mt-originating-address
smrse.mt_priority_request mt-priority-request Boolean RPDataMT/mt-priority-request
smrse.mt_tariffClass mt-tariffClass Unsigned 32-bit integer RPDataMT/mt-tariffClass
smrse.mt_user_data mt-user-data Byte array RPDataMT/mt-user-data
smrse.numbering_plan numbering-plan Signed 32-bit integer SMS-Address/numbering-plan
smrse.octet_Format octet-Format String SMS-Address/address-value/octet-format
smrse.octet_format octet-format Byte array SMS-Address/address-value/octet-format
smrse.origVMSCAddr origVMSCAddr No value RPDataMO/origVMSCAddr
smrse.password password String SMR-Bind/password
smrse.reserved Reserved Unsigned 8-bit integer Reserved byte, must be 126
smrse.sc_address sc-address No value SMR-Bind/sc-address
smrse.sm_diag_info sm-diag-info Byte array RPError/sm-diag-info
smrse.tag Tag Unsigned 8-bit integer Tag
sigcomp.addr.output.start %Output_start[memory address] Unsigned 16-bit integer Output start
sigcomp.code.len Code length Unsigned 16-bit integer Code length
sigcomp.destination Destination Unsigned 8-bit integer Destination
sigcomp.length Partial state id. len. Unsigned 8-bit integer Sigcomp length
sigcomp.min.acc.len %Minimum access length Unsigned 16-bit integer Output length
sigcomp.output.length %Output_length Unsigned 16-bit integer Output length
sigcomp.output.length.addr %Output_length[memory address] Unsigned 16-bit integer Output length
sigcomp.output.start %Output_start Unsigned 16-bit integer Output start
sigcomp.partial.state.identifier Partial state identifier String Partial state identifier
sigcomp.req.feedback.loc %Requested feedback location Unsigned 16-bit integer Requested feedback location
sigcomp.ret.param.loc %Returned parameters location Unsigned 16-bit integer Output length
sigcomp.returned.feedback.item Returned_feedback item Byte array Returned feedback item
sigcomp.returned.feedback.item.len Returned feedback item length Unsigned 8-bit integer Returned feedback item length
sigcomp.t.bit T bit Unsigned 8-bit integer Sigcomp T bit
sigcomp.udvm.addr.destination %Destination[memory address] Unsigned 16-bit integer Destination
sigcomp.udvm.addr.j %j[memory address] Unsigned 16-bit integer j
sigcomp.udvm.addr.length %Length[memory address] Unsigned 16-bit integer Length
sigcomp.udvm.addr.offset %Offset[memory address] Unsigned 16-bit integer Offset
sigcomp.udvm.at.address @Address(mem_add_of_inst + D) mod 2^16) Unsigned 16-bit integer Address
sigcomp.udvm.bits %Bits Unsigned 16-bit integer Bits
sigcomp.udvm.destination %Destination Unsigned 16-bit integer Destination
sigcomp.udvm.instr UDVM instruction code Unsigned 8-bit integer UDVM instruction code
sigcomp.udvm.j %j Unsigned 16-bit integer j
sigcomp.udvm.length %Length Unsigned 16-bit integer Length
sigcomp.udvm.lit.bytecode UDVM bytecode Unsigned 8-bit integer UDVM bytecode
sigcomp.udvm.literal-num #n Unsigned 16-bit integer Literal number
sigcomp.udvm.lower.bound %Lower bound Unsigned 16-bit integer Lower_bound
sigcomp.udvm.multyt.bytecode UDVM bytecode Unsigned 8-bit integer UDVM bytecode
sigcomp.udvm.offset %Offset Unsigned 16-bit integer Offset
sigcomp.udvm.operand UDVM operand Unsigned 16-bit integer UDVM operand
sigcomp.udvm.operand.1 $Operand 1[memory address] Unsigned 16-bit integer Reference $ Operand 1
sigcomp.udvm.operand.2 %Operand 2 Unsigned 16-bit integer Operand 2
sigcomp.udvm.operand.2.addr %Operand 2[memory address] Unsigned 16-bit integer Operand 2
sigcomp.udvm.partial.identifier.length %Partial identifier length Unsigned 16-bit integer Partial identifier length
sigcomp.udvm.partial.identifier.start %Partial identifier start Unsigned 16-bit integer Partial identifier start
sigcomp.udvm.position %Position Unsigned 16-bit integer Position
sigcomp.udvm.ref.bytecode UDVM bytecode Unsigned 8-bit integer UDVM bytecode
sigcomp.udvm.ref.destination $Destination[memory address] Unsigned 16-bit integer (reference)Destination
sigcomp.udvm.start.address %State address Unsigned 16-bit integer State address
sigcomp.udvm.start.address.addr %State address[memory address] Unsigned 16-bit integer State address
sigcomp.udvm.start.instr %State instruction Unsigned 16-bit integer State instruction
sigcomp.udvm.start.value %Start value Unsigned 16-bit integer Start value
sigcomp.udvm.state.begin %State begin Unsigned 16-bit integer State begin
sigcomp.udvm.state.length %State length Unsigned 16-bit integer State length
sigcomp.udvm.state.length.addr %State length[memory address] Unsigned 16-bit integer State length
sigcomp.udvm.state.ret.pri %State retention priority Unsigned 16-bit integer Output length
sigcomp.udvm.uncompressed %Uncompressed Unsigned 16-bit integer Uncompressed
sigcomp.udvm.upper.bound %Upper bound Unsigned 16-bit integer Upper bound
sigcomp.udvm.value %Value Unsigned 16-bit integer Value
sccp.called.ansi_pc PC String
sccp.called.chinese_pc PC String
sccp.called.cluster PC Cluster Unsigned 24-bit integer
sccp.called.digits GT Digits String
sccp.called.es Encoding Scheme Unsigned 8-bit integer
sccp.called.gti Global Title Indicator Unsigned 8-bit integer
sccp.called.member PC Member Unsigned 24-bit integer
sccp.called.nai Nature of Address Indicator Unsigned 8-bit integer
sccp.called.network PC Network Unsigned 24-bit integer
sccp.called.ni National Indicator Unsigned 8-bit integer
sccp.called.np Numbering Plan Unsigned 8-bit integer
sccp.called.oe Odd/Even Indicator Unsigned 8-bit integer
sccp.called.pc PC Unsigned 16-bit integer
sccp.called.pci Point Code Indicator Unsigned 8-bit integer
sccp.called.ri Routing Indicator Unsigned 8-bit integer
sccp.called.ssn SubSystem Number Unsigned 8-bit integer
sccp.called.ssni SubSystem Number Indicator Unsigned 8-bit integer
sccp.called.tt Translation Type Unsigned 8-bit integer
sccp.calling.ansi_pc PC String
sccp.calling.chinese_pc PC String
sccp.calling.cluster PC Cluster Unsigned 24-bit integer
sccp.calling.digits GT Digits String
sccp.calling.es Encoding Scheme Unsigned 8-bit integer
sccp.calling.gti Global Title Indicator Unsigned 8-bit integer
sccp.calling.member PC Member Unsigned 24-bit integer
sccp.calling.nai Nature of Address Indicator Unsigned 8-bit integer
sccp.calling.network PC Network Unsigned 24-bit integer
sccp.calling.ni National Indicator Unsigned 8-bit integer
sccp.calling.np Numbering Plan Unsigned 8-bit integer
sccp.calling.oe Odd/Even Indicator Unsigned 8-bit integer
sccp.calling.pc PC Unsigned 16-bit integer
sccp.calling.pci Point Code Indicator Unsigned 8-bit integer
sccp.calling.ri Routing Indicator Unsigned 8-bit integer
sccp.calling.ssn SubSystem Number Unsigned 8-bit integer
sccp.calling.ssni SubSystem Number Indicator Unsigned 8-bit integer
sccp.calling.tt Translation Type Unsigned 8-bit integer
sccp.class Class Unsigned 8-bit integer
sccp.credit Credit Unsigned 8-bit integer
sccp.digits Called or Calling GT Digits String
sccp.dlr Destination Local Reference Unsigned 24-bit integer
sccp.error_cause Error Cause Unsigned 8-bit integer
sccp.handling Message handling Unsigned 8-bit integer
sccp.hops Hop Counter Unsigned 8-bit integer
sccp.importance Importance Unsigned 8-bit integer
sccp.isni.counter ISNI Counter Unsigned 8-bit integer
sccp.isni.iri ISNI Routing Indicator Unsigned 8-bit integer
sccp.isni.mi ISNI Mark for Identification Indicator Unsigned 8-bit integer
sccp.isni.netspec ISNI Network Specific (Type 1) Unsigned 8-bit integer
sccp.isni.ti ISNI Type Indicator Unsigned 8-bit integer
sccp.message_type Message Type Unsigned 8-bit integer
sccp.more More data Unsigned 8-bit integer
sccp.optional_pointer Pointer to Optional parameter Unsigned 16-bit integer
sccp.refusal_cause Refusal Cause Unsigned 8-bit integer
sccp.release_cause Release Cause Unsigned 8-bit integer
sccp.reset_cause Reset Cause Unsigned 8-bit integer
sccp.return_cause Return Cause Unsigned 8-bit integer
sccp.rsn Receive Sequence Number Unsigned 8-bit integer
sccp.segmentation.class Segmentation: Class Unsigned 8-bit integer
sccp.segmentation.first Segmentation: First Unsigned 8-bit integer
sccp.segmentation.remaining Segmentation: Remaining Unsigned 8-bit integer
sccp.segmentation.slr Segmentation: Source Local Reference Unsigned 24-bit integer
sccp.sequencing_segmenting.more Sequencing Segmenting: More Unsigned 8-bit integer
sccp.sequencing_segmenting.rsn Sequencing Segmenting: Receive Sequence Number Unsigned 8-bit integer
sccp.sequencing_segmenting.ssn Sequencing Segmenting: Send Sequence Number Unsigned 8-bit integer
sccp.slr Source Local Reference Unsigned 24-bit integer
sccp.ssn Called or Calling SubSystem Number Unsigned 8-bit integer
sccp.variable_pointer1 Pointer to first Mandatory Variable parameter Unsigned 16-bit integer
sccp.variable_pointer2 Pointer to second Mandatory Variable parameter Unsigned 16-bit integer
sccp.variable_pointer3 Pointer to third Mandatory Variable parameter Unsigned 16-bit integer
sccpmg.ansi_pc Affected Point Code String
sccpmg.chinese_pc Affected Point Code String
sccpmg.cluster Affected PC Cluster Unsigned 24-bit integer
sccpmg.congestion SCCP Congestionl Level (ITU) Unsigned 8-bit integer
sccpmg.member Affected PC Member Unsigned 24-bit integer
sccpmg.message_type Message Type Unsigned 8-bit integer
sccpmg.network Affected PC Network Unsigned 24-bit integer
sccpmg.pc Affected Point Code Unsigned 16-bit integer
sccpmg.smi Subsystem Multiplicity Indicator Unsigned 8-bit integer
sccpmg.ssn Affected SubSystem Number Unsigned 8-bit integer
smtp.req Request Boolean
smtp.req.command Command String
smtp.req.parameter Request parameter String
smtp.response.code Response code Unsigned 32-bit integer
smtp.rsp Response Boolean
smtp.rsp.parameter Response parameter String
snmp.agent Agent address IPv4 address
snmp.community Community String
snmp.enterprise Enterprise String
snmp.error Error Status Unsigned 8-bit integer
snmp.id Request Id Unsigned 32-bit integer Id for this transaction
snmp.oid Object identifier String
snmp.pdutype PDU type Unsigned 8-bit integer
snmp.spectraptype Specific trap type Unsigned 32-bit integer
snmp.timestamp Timestamp Unsigned 8-bit integer
snmp.traptype Trap type Unsigned 8-bit integer
snmp.version Version Unsigned 8-bit integer
snmpv3.flags SNMPv3 Flags Unsigned 8-bit integer
snmpv3.flags.auth Authenticated Boolean
snmpv3.flags.crypt Encrypted Boolean
snmpv3.flags.report Reportable Boolean
stun.att Attributes No value
stun.att.change.ip Change IP Boolean
stun.att.change.port Change Port Boolean
stun.att.error Error Code Unsigned 8-bit integer
stun.att.error.class Error Class Unsigned 8-bit integer
stun.att.error.reason Error Reason Phase String
stun.att.family Protocol Family Unsigned 16-bit integer
stun.att.ip IP IPv4 address
stun.att.length Attribute Length Unsigned 16-bit integer
stun.att.port Port Unsigned 16-bit integer
stun.att.type Attribute Type Unsigned 16-bit integer
stun.att.unknown Unknown Attribute Unsigned 16-bit integer
stun.att.value Value Byte array
stun.id Message Transaction ID Byte array
stun.length Message Length Unsigned 16-bit integer
stun.type Message Type Unsigned 16-bit integer
h1.dbnr Memory block number Unsigned 8-bit integer
h1.dlen Length in words Signed 16-bit integer
h1.dwnr Address within memory block Unsigned 16-bit integer
h1.empty Empty field Unsigned 8-bit integer
h1.empty_len Empty field length Unsigned 8-bit integer
h1.header H1-Header Unsigned 16-bit integer
h1.len Length indicator Unsigned 16-bit integer
h1.opcode Opcode Unsigned 8-bit integer
h1.opfield Operation identifier Unsigned 8-bit integer
h1.oplen Operation length Unsigned 8-bit integer
h1.org Memory type Unsigned 8-bit integer
h1.reqlen Request length Unsigned 8-bit integer
h1.request Request identifier Unsigned 8-bit integer
h1.reslen Response length Unsigned 8-bit integer
h1.response Response identifier Unsigned 8-bit integer
h1.resvalue Response value Unsigned 8-bit integer
sipfrag.line Line String Line
skinny.DSCPValue DSCPValue Unsigned 32-bit integer DSCPValue.
skinny.MPI MPI Unsigned 32-bit integer MPI.
skinny.RTPPayloadFormat RTPPayloadFormat Unsigned 32-bit integer RTPPayloadFormat.
skinny.activeConferenceOnRegistration ActiveConferenceOnRegistration Unsigned 32-bit integer ActiveConferenceOnRegistration.
skinny.activeForward Active Forward Unsigned 32-bit integer This is non zero to indicate that a forward is active on the line
skinny.activeStreamsOnRegistration ActiveStreamsOnRegistration Unsigned 32-bit integer ActiveStreamsOnRegistration.
skinny.addParticipantResults AddParticipantResults Unsigned 32-bit integer The add conference participant results
skinny.alarmParam1 AlarmParam1 Unsigned 32-bit integer An as yet undecoded param1 value from the alarm message
skinny.alarmParam2 AlarmParam2 IPv4 address This is the second alarm parameter i think it's an ip address
skinny.alarmSeverity AlarmSeverity Unsigned 32-bit integer The severity of the reported alarm.
skinny.annPlayMode annPlayMode Unsigned 32-bit integer AnnPlayMode
skinny.annPlayStatus AnnPlayStatus Unsigned 32-bit integer AnnPlayStatus
skinny.annexNandWFutureUse AnnexNandWFutureUse Unsigned 32-bit integer AnnexNandWFutureUse.
skinny.appConfID AppConfID Unsigned 8-bit integer App Conf ID Data.
skinny.appData AppData Unsigned 8-bit integer App data.
skinny.appID AppID Unsigned 32-bit integer AppID.
skinny.appInstanceID AppInstanceID Unsigned 32-bit integer appInstanceID.
skinny.applicationID ApplicationID Unsigned 32-bit integer Application ID.
skinny.audioCapCount AudioCapCount Unsigned 32-bit integer AudioCapCount.
skinny.auditParticipantResults AuditParticipantResults Unsigned 32-bit integer The audit participant results
skinny.bandwidth Bandwidth Unsigned 32-bit integer Bandwidth.
skinny.buttonCount ButtonCount Unsigned 32-bit integer Number of (VALID) button definitions in this message.
skinny.buttonDefinition ButtonDefinition Unsigned 8-bit integer The button type for this instance (ie line, speed dial, ....
skinny.buttonInstanceNumber InstanceNumber Unsigned 8-bit integer The button instance number for a button or the StationKeyPad value, repeats allowed.
skinny.buttonOffset ButtonOffset Unsigned 32-bit integer Offset is the number of the first button referenced by this message.
skinny.callIdentifier Call Identifier Unsigned 32-bit integer Call identifier for this call.
skinny.callSelectStat CallSelectStat Unsigned 32-bit integer CallSelectStat.
skinny.callState CallState Unsigned 32-bit integer The D channel call state of the call
skinny.callType Call Type Unsigned 32-bit integer What type of call, in/out/etc
skinny.calledParty CalledParty String The number called.
skinny.calledPartyName Called Party Name String The name of the party we are calling.
skinny.callingPartyName Calling Party Name String The passed name of the calling party.
skinny.capCount CapCount Unsigned 32-bit integer How many capabilities
skinny.clockConversionCode ClockConversionCode Unsigned 32-bit integer ClockConversionCode.
skinny.clockDivisor ClockDivisor Unsigned 32-bit integer Clock Divisor.
skinny.confServiceNum ConfServiceNum Unsigned 32-bit integer ConfServiceNum.
skinny.conferenceID Conference ID Unsigned 32-bit integer The conference ID
skinny.country Country Unsigned 32-bit integer Country ID (Network locale).
skinny.createConfResults CreateConfResults Unsigned 32-bit integer The create conference results
skinny.customPictureFormatCount CustomPictureFormatCount Unsigned 32-bit integer CustomPictureFormatCount.
skinny.data Data Unsigned 8-bit integer dataPlace holder for unknown data.
skinny.dataCapCount DataCapCount Unsigned 32-bit integer DataCapCount.
skinny.data_length Data Length Unsigned 32-bit integer Number of bytes in the data portion.
skinny.dateMilliseconds Milliseconds Unsigned 32-bit integer Milliseconds
skinny.dateSeconds Seconds Unsigned 32-bit integer Seconds
skinny.dateTemplate DateTemplate String The display format for the date/time on the phone.
skinny.day Day Unsigned 32-bit integer The day of the current month
skinny.dayOfWeek DayOfWeek Unsigned 32-bit integer The day of the week
skinny.deleteConfResults DeleteConfResults Unsigned 32-bit integer The delete conference results
skinny.detectInterval HF Detect Interval Unsigned 32-bit integer The number of milliseconds that determines a hook flash has occured
skinny.deviceName DeviceName String The device name of the phone.
skinny.deviceResetType Reset Type Unsigned 32-bit integer How the devices it to be reset (reset/restart)
skinny.deviceTone Tone Unsigned 32-bit integer Which tone to play
skinny.deviceType DeviceType Unsigned 32-bit integer DeviceType of the station.
skinny.deviceUnregisterStatus Unregister Status Unsigned 32-bit integer The status of the device unregister request (*CAN* be refused)
skinny.directoryNumber Directory Number String The number we are reporting statistics for.
skinny.displayMessage DisplayMessage String The message displayed on the phone.
skinny.displayPriority DisplayPriority Unsigned 32-bit integer Display Priority.
skinny.echoCancelType Echo Cancel Type Unsigned 32-bit integer Is echo cancelling enabled or not
skinny.endOfAnnAck EndOfAnnAck Unsigned 32-bit integer EndOfAnnAck
skinny.featureID FeatureID Unsigned 32-bit integer FeatureID.
skinny.featureIndex FeatureIndex Unsigned 32-bit integer FeatureIndex.
skinny.featureStatus FeatureStatus Unsigned 32-bit integer FeatureStatus.
skinny.featureTextLabel FeatureTextLabel String The feature lable text that is displayed on the phone.
skinny.firstGOB FirstGOB Unsigned 32-bit integer FirstGOB.
skinny.firstMB FirstMB Unsigned 32-bit integer FirstMB.
skinny.format Format Unsigned 32-bit integer Format.
skinny.forwardAllActive Forward All Unsigned 32-bit integer Forward all calls
skinny.forwardBusyActive Forward Busy Unsigned 32-bit integer Forward calls when busy
skinny.forwardNoAnswerActive Forward NoAns Unsigned 32-bit integer Forward only when no answer
skinny.forwardNumber Forward Number String The number to forward calls to.
skinny.fqdn DisplayName String The full display name for this line.
skinny.g723BitRate G723 BitRate Unsigned 32-bit integer The G723 bit rate for this stream/JUNK if not g723 stream
skinny.h263_capability_bitfield H263_capability_bitfield Unsigned 32-bit integer H263_capability_bitfield.
skinny.headsetMode Headset Mode Unsigned 32-bit integer Turns on and off the headset on the set
skinny.hearingConfPartyMask HearingConfPartyMask Unsigned 32-bit integer Bit mask of conference parties to hear media received on this stream. Bit0 = matrixConfPartyID[0], Bit1 = matrixConfPartiID[1].
skinny.hookFlashDetectMode Hook Flash Mode Unsigned 32-bit integer Which method to use to detect that a hook flash has occured
skinny.hour Hour Unsigned 32-bit integer Hour of the day
skinny.ipAddress IP Address IPv4 address An IP address
skinny.isConferenceCreator IsConferenceCreator Unsigned 32-bit integer IsConferenceCreator.
skinny.jitter Jitter Unsigned 32-bit integer Average jitter during the call.
skinny.keepAliveInterval KeepAliveInterval Unsigned 32-bit integer How often are keep alives exchanges between the client and the call manager.
skinny.lampMode LampMode Unsigned 32-bit integer The lamp mode
skinny.last Last Unsigned 32-bit integer Last.
skinny.latency Latency(ms) Unsigned 32-bit integer Average packet latency during the call.
skinny.layout Layout Unsigned 32-bit integer Layout
skinny.layoutCount LayoutCount Unsigned 32-bit integer LayoutCount.
skinny.levelPreferenceCount LevelPreferenceCount Unsigned 32-bit integer LevelPreferenceCount.
skinny.lineDirNumber Line Dir Number String The directory number for this line.
skinny.lineInstance Line Instance Unsigned 32-bit integer The display call plane associated with this call.
skinny.lineNumber LineNumber Unsigned 32-bit integer Line Number
skinny.locale Locale Unsigned 32-bit integer User locale ID.
skinny.longTermPictureIndex LongTermPictureIndex Unsigned 32-bit integer LongTermPictureIndex.
skinny.matrixConfPartyID MatrixConfPartyID Unsigned 32-bit integer existing conference parties.
skinny.maxBW MaxBW Unsigned 32-bit integer MaxBW.
skinny.maxBitRate MaxBitRate Unsigned 32-bit integer MaxBitRate.
skinny.maxConferences MaxConferences Unsigned 32-bit integer MaxConferences.
skinny.maxFramesPerPacket MaxFramesPerPacket Unsigned 16-bit integer Max frames per packet
skinny.maxStreams MaxStreams Unsigned 32-bit integer 32 bit unsigned integer indicating the maximum number of simultansous RTP duplex streams that the client can handle.
skinny.maxStreamsPerConf MaxStreamsPerConf Unsigned 32-bit integer Maximum number of streams per conference.
skinny.mediaEnunciationType Enunciation Type Unsigned 32-bit integer No clue.
skinny.messageTimeOutValue Message Timeout Unsigned 32-bit integer The timeout in seconds for this message
skinny.messageid Message ID Unsigned 32-bit integer The function requested/done with this message.
skinny.microphoneMode Microphone Mode Unsigned 32-bit integer Turns on and off the microphone on the set
skinny.millisecondPacketSize MS/Packet Unsigned 32-bit integer The number of milliseconds of conversation in each packet
skinny.minBitRate MinBitRate Unsigned 32-bit integer MinBitRate.
skinny.minute Minute Unsigned 32-bit integer Minute
skinny.miscCommandType MiscCommandType Unsigned 32-bit integer MiscCommandType
skinny.modelNumber ModelNumber Unsigned 32-bit integer ModelNumber.
skinny.modifyConfResults ModifyConfResults Unsigned 32-bit integer The modify conference results
skinny.month Month Unsigned 32-bit integer The current month
skinny.multicastIpAddress Multicast Ip Address IPv4 address The multicast address for this conference
skinny.multicastPort Multicast Port Unsigned 32-bit integer The multicast port the to listens on.
skinny.notify Notify String The message notify text that is displayed on the phone.
skinny.numberLines Number of Lines Unsigned 32-bit integer How many lines this device has
skinny.numberOfActiveParticipants NumberOfActiveParticipants Unsigned 32-bit integer numberOfActiveParticipants.
skinny.numberOfEntries NumberOfEntries Unsigned 32-bit integer Number of entries in list.
skinny.numberOfGOBs NumberOfGOBs Unsigned 32-bit integer NumberOfGOBs.
skinny.numberOfInServiceStreams NumberOfInServiceStreams Unsigned 32-bit integer Number of in service streams.
skinny.numberOfMBs NumberOfMBs Unsigned 32-bit integer NumberOfMBs.
skinny.numberOfOutOfServiceStreams NumberOfOutOfServiceStreams Unsigned 32-bit integer Number of out of service streams.
skinny.numberOfReservedParticipants NumberOfReservedParticipants Unsigned 32-bit integer numberOfReservedParticipants.
skinny.numberSpeedDials Number of SpeedDials Unsigned 32-bit integer The number of speed dials this device has
skinny.octetsRecv Octets Received Unsigned 32-bit integer Octets received during the call.
skinny.octetsSent Octets Sent Unsigned 32-bit integer Octets sent during the call.
skinny.openReceiveChannelStatus OpenReceiveChannelStatus Unsigned 32-bit integer The status of the opened receive channel.
skinny.originalCalledParty Original Called Party String The number of the original calling party.
skinny.originalCalledPartyName Original Called Party Name String name of the original person who placed the call.
skinny.packetsLost Packets Lost Unsigned 32-bit integer Packets lost during the call.
skinny.packetsRecv Packets Received Unsigned 32-bit integer Packets received during the call.
skinny.packetsSent Packets Sent Unsigned 32-bit integer Packets Sent during the call.
skinny.participantEntry ParticipantEntry Unsigned 32-bit integer Participant Entry.
skinny.passThruData PassThruData Unsigned 8-bit integer Pass Through data.
skinny.passThruPartyID PassThruPartyID Unsigned 32-bit integer The pass thru party id
skinny.payloadCapability PayloadCapability Unsigned 32-bit integer The payload capability for this media capability structure.
skinny.payloadDtmf PayloadDtmf Unsigned 32-bit integer RTP payload type.
skinny.payloadType PayloadType Unsigned 32-bit integer PayloadType.
skinny.payload_rfc_number Payload_rfc_number Unsigned 32-bit integer Payload_rfc_number.
skinny.pictureFormatCount PictureFormatCount Unsigned 32-bit integer PictureFormatCount.
skinny.pictureHeight PictureHeight Unsigned 32-bit integer PictureHeight.
skinny.pictureNumber PictureNumber Unsigned 32-bit integer PictureNumber.
skinny.pictureWidth PictureWidth Unsigned 32-bit integer PictureWidth.
skinny.pixelAspectRatio PixelAspectRatio Unsigned 32-bit integer PixelAspectRatio.
skinny.portNumber Port Number Unsigned 32-bit integer A port number
skinny.precedenceValue Precedence Unsigned 32-bit integer Precedence value
skinny.priority Priority Unsigned 32-bit integer Priority.
skinny.protocolDependentData ProtocolDependentData Unsigned 32-bit integer ProtocolDependentData.
skinny.receptionStatus ReceptionStatus Unsigned 32-bit integer The current status of the multicast media.
skinny.recoveryReferencePictureCount RecoveryReferencePictureCount Unsigned 32-bit integer RecoveryReferencePictureCount.
skinny.remoteIpAddr Remote Ip Address IPv4 address The remote end ip address for this stream
skinny.remotePortNumber Remote Port Unsigned 32-bit integer The remote port number listening for this stream
skinny.reserved Reserved Unsigned 32-bit integer Reserved for future(?) use.
skinny.resourceTypes ResourceType Unsigned 32-bit integer Resource Type
skinny.ringType Ring Type Unsigned 32-bit integer What type of ring to play
skinny.routingID routingID Unsigned 32-bit integer routingID.
skinny.secondaryKeepAliveInterval SecondaryKeepAliveInterval Unsigned 32-bit integer How often are keep alives exchanges between the client and the secondary call manager.
skinny.sequenceFlag SequenceFlag Unsigned 32-bit integer Sequence Flag
skinny.serverIdentifier Server Identifier String Server Identifier.
skinny.serverIpAddress Server Ip Address IPv4 address The IP address for this server
skinny.serverListenPort Server Port Unsigned 32-bit integer The port the server listens on.
skinny.serverName Server Name String The server name for this device.
skinny.serviceNum ServiceNum Unsigned 32-bit integer ServiceNum.
skinny.serviceNumber ServiceNumber Unsigned 32-bit integer ServiceNumber.
skinny.serviceResourceCount ServiceResourceCount Unsigned 32-bit integer ServiceResourceCount.
skinny.serviceURL ServiceURL String ServiceURL.
skinny.serviceURLDisplayName ServiceURLDisplayName String ServiceURLDisplayName.
skinny.serviceURLIndex serviceURLIndex Unsigned 32-bit integer serviceURLIndex.
skinny.sessionType Session Type Unsigned 32-bit integer The type of this session.
skinny.silenceSuppression Silence Suppression Unsigned 32-bit integer Mode for silence suppression
skinny.softKeyCount SoftKeyCount Unsigned 32-bit integer The number of valid softkeys in this message.
skinny.softKeyEvent SoftKeyEvent Unsigned 32-bit integer Which softkey event is being reported.
skinny.softKeyInfoIndex SoftKeyInfoIndex Unsigned 16-bit integer Array of size 16 16-bit unsigned integers containing an index into the soft key description information.
skinny.softKeyLabel SoftKeyLabel String The text label for this soft key.
skinny.softKeyMap SoftKeyMap Unsigned 16-bit integer
skinny.softKeyMap.0 SoftKey0 Boolean
skinny.softKeyMap.1 SoftKey1 Boolean
skinny.softKeyMap.10 SoftKey10 Boolean
skinny.softKeyMap.11 SoftKey11 Boolean
skinny.softKeyMap.12 SoftKey12 Boolean
skinny.softKeyMap.13 SoftKey13 Boolean
skinny.softKeyMap.14 SoftKey14 Boolean
skinny.softKeyMap.15 SoftKey15 Boolean
skinny.softKeyMap.2 SoftKey2 Boolean
skinny.softKeyMap.3 SoftKey3 Boolean
skinny.softKeyMap.4 SoftKey4 Boolean
skinny.softKeyMap.5 SoftKey5 Boolean
skinny.softKeyMap.6 SoftKey6 Boolean
skinny.softKeyMap.7 SoftKey7 Boolean
skinny.softKeyMap.8 SoftKey8 Boolean
skinny.softKeyMap.9 SoftKey9 Boolean
skinny.softKeyOffset SoftKeyOffset Unsigned 32-bit integer The offset for the first soft key in this message.
skinny.softKeySetCount SoftKeySetCount Unsigned 32-bit integer The number of valid softkey sets in this message.
skinny.softKeySetDescription SoftKeySet Unsigned 8-bit integer A text description of what this softkey when this softkey set is displayed
skinny.softKeySetOffset SoftKeySetOffset Unsigned 32-bit integer The offset for the first soft key set in this message.
skinny.softKeyTemplateIndex SoftKeyTemplateIndex Unsigned 8-bit integer Array of size 16 8-bit unsigned ints containing an index into the softKeyTemplate.
skinny.speakerMode Speaker Unsigned 32-bit integer This message sets the speaker mode on/off
skinny.speedDialDirNum SpeedDial Number String the number to dial for this speed dial.
skinny.speedDialDisplay SpeedDial Display String The text to display for this speed dial.
skinny.speedDialNumber SpeedDialNumber Unsigned 32-bit integer Which speed dial number
skinny.stationInstance StationInstance Unsigned 32-bit integer The stations instance.
skinny.stationIpPort StationIpPort Unsigned 16-bit integer The station IP port
skinny.stationKeypadButton KeypadButton Unsigned 32-bit integer The button pressed on the phone.
skinny.stationUserId StationUserId Unsigned 32-bit integer The station user id.
skinny.statsProcessingType StatsProcessingType Unsigned 32-bit integer What do do after you send the stats.
skinny.stillImageTransmission StillImageTransmission Unsigned 32-bit integer StillImageTransmission.
skinny.stimulus Stimulus Unsigned 32-bit integer Reason for the device stimulus message.
skinny.stimulusInstance StimulusInstance Unsigned 32-bit integer The instance of the stimulus
skinny.temporalSpatialTradeOff TemporalSpatialTradeOff Unsigned 32-bit integer TemporalSpatialTradeOff.
skinny.temporalSpatialTradeOffCapability TemporalSpatialTradeOffCapability Unsigned 32-bit integer TemporalSpatialTradeOffCapability.
skinny.timeStamp Timestamp Unsigned 32-bit integer Time stamp for the call reference
skinny.tokenRejWaitTime Retry Wait Time Unsigned 32-bit integer The time to wait before retrying this token request.
skinny.totalButtonCount TotalButtonCount Unsigned 32-bit integer The total number of buttons defined for this phone.
skinny.totalSoftKeyCount TotalSoftKeyCount Unsigned 32-bit integer The total number of softkeys for this device.
skinny.totalSoftKeySetCount TotalSoftKeySetCount Unsigned 32-bit integer The total number of softkey sets for this device.
skinny.transactionID TransactionID Unsigned 32-bit integer Transaction ID.
skinny.transmitOrReceive TransmitOrReceive Unsigned 32-bit integer TransmitOrReceive
skinny.transmitPreference TransmitPreference Unsigned 32-bit integer TransmitPreference.
skinny.unknown Data Unsigned 32-bit integer Place holder for unknown data.
skinny.userName Username String Username for this device.
skinny.version Version String Version.
skinny.videoCapCount VideoCapCount Unsigned 32-bit integer VideoCapCount.
skinny.year Year Unsigned 32-bit integer The current year
slimp3.control Control Packet Boolean SLIMP3 control
slimp3.data Data Boolean SLIMP3 Data
slimp3.data_ack Data Ack Boolean SLIMP3 Data Ack
slimp3.data_req Data Request Boolean SLIMP3 Data Request
slimp3.discovery_req Discovery Request Boolean SLIMP3 Discovery Request
slimp3.discovery_response Discovery Response Boolean SLIMP3 Discovery Response
slimp3.display Display Boolean SLIMP3 display
slimp3.hello Hello Boolean SLIMP3 hello
slimp3.i2c I2C Boolean SLIMP3 I2C
slimp3.ir Infrared Unsigned 32-bit integer SLIMP3 Infrared command
slimp3.opcode Opcode Unsigned 8-bit integer SLIMP3 message type
lacp.actorInfo Actor Information Unsigned 8-bit integer TLV type = Actor
lacp.actorInfoLen Actor Information Length Unsigned 8-bit integer The length of the Actor TLV
lacp.actorKey Actor Key Unsigned 16-bit integer The operational Key value assigned to the port by the Actor
lacp.actorPort Actor Port Unsigned 16-bit integer The port number assigned to the port by the Actor (via Management or Admin)
lacp.actorPortPriority Actor Port Priority Unsigned 16-bit integer The priority assigned to the port by the Actor (via Management or Admin)
lacp.actorState Actor State Unsigned 8-bit integer The Actor's state variables for the port, encoded as bits within a single octet
lacp.actorState.activity LACP Activity Boolean Activity control value for this link. Active = 1, Passive = 0
lacp.actorState.aggregation Aggregation Boolean Aggregatable = 1, Individual = 0
lacp.actorState.collecting Collecting Boolean Collection of incoming frames is: Enabled = 1, Disabled = 0
lacp.actorState.defaulted Defaulted Boolean 1 = Actor Rx machine is using DEFAULT Partner info, 0 = using info in Rx'd LACPDU
lacp.actorState.distributing Distributing Boolean Distribution of outgoing frames is: Enabled = 1, Disabled = 0
lacp.actorState.expired Expired Boolean 1 = Actor Rx machine is EXPIRED, 0 = is NOT EXPIRED
lacp.actorState.synchronization Synchronization Boolean In Sync = 1, Out of Sync = 0
lacp.actorState.timeout LACP Timeout Boolean Timeout control value for this link. Short Timeout = 1, Long Timeout = 0
lacp.actorSysPriority Actor System Priority Unsigned 16-bit integer The priority assigned to this System by management or admin
lacp.actorSystem Actor System 6-byte Hardware (MAC) Address The Actor's System ID encoded as a MAC address
lacp.collectorInfo Collector Information Unsigned 8-bit integer TLV type = Collector
lacp.collectorInfoLen Collector Information Length Unsigned 8-bit integer The length of the Collector TLV
lacp.collectorMaxDelay Collector Max Delay Unsigned 16-bit integer The max delay of the station tx'ing the LACPDU (in tens of usecs)
lacp.partnerInfo Partner Information Unsigned 8-bit integer TLV type = Partner
lacp.partnerInfoLen Partner Information Length Unsigned 8-bit integer The length of the Partner TLV
lacp.partnerKey Partner Key Unsigned 16-bit integer The operational Key value assigned to the port associated with this link by the Partner
lacp.partnerPort Partner Port Unsigned 16-bit integer The port number associated with this link assigned to the port by the Partner (via Management or Admin)
lacp.partnerPortPriority Partner Port Priority Unsigned 16-bit integer The priority assigned to the port by the Partner (via Management or Admin)
lacp.partnerState Partner State Unsigned 8-bit integer The Partner's state variables for the port, encoded as bits within a single octet
lacp.partnerState.activity LACP Activity Boolean Activity control value for this link. Active = 1, Passive = 0
lacp.partnerState.aggregation Aggregation Boolean Aggregatable = 1, Individual = 0
lacp.partnerState.collecting Collecting Boolean Collection of incoming frames is: Enabled = 1, Disabled = 0
lacp.partnerState.defaulted Defaulted Boolean 1 = Actor Rx machine is using DEFAULT Partner info, 0 = using info in Rx'd LACPDU
lacp.partnerState.distributing Distributing Boolean Distribution of outgoing frames is: Enabled = 1, Disabled = 0
lacp.partnerState.expired Expired Boolean 1 = Actor Rx machine is EXPIRED, 0 = is NOT EXPIRED
lacp.partnerState.synchronization Synchronization Boolean In Sync = 1, Out of Sync = 0
lacp.partnerState.timeout LACP Timeout Boolean Timeout control value for this link. Short Timeout = 1, Long Timeout = 0
lacp.partnerSysPriority Partner System Priority Unsigned 16-bit integer The priority assigned to the Partner System by management or admin
lacp.partnerSystem Partner System 6-byte Hardware (MAC) Address The Partner's System ID encoded as a MAC address
lacp.reserved Reserved Byte array
lacp.termInfo Terminator Information Unsigned 8-bit integer TLV type = Terminator
lacp.termLen Terminator Length Unsigned 8-bit integer The length of the Terminator TLV
lacp.version LACP Version Number Unsigned 8-bit integer Identifies the LACP version
marker.requesterPort Requester Port Unsigned 16-bit integer The Requester Port
marker.requesterSystem Requester System 6-byte Hardware (MAC) Address The Requester System ID encoded as a MAC address
marker.requesterTransId Requester Transaction ID Unsigned 32-bit integer The Requester Transaction ID
marker.tlvLen TLV Length Unsigned 8-bit integer The length of the Actor TLV
marker.tlvType TLV Type Unsigned 8-bit integer Marker TLV type
marker.version Version Number Unsigned 8-bit integer Identifies the Marker version
oam.code OAMPDU code Unsigned 8-bit integer Identifies the TLVs code
oam.event.efeErrors Errored Frames Unsigned 32-bit integer Number of symbols in error
oam.event.efeThreshold Errored Frame Threshold Unsigned 32-bit integer Number of frames required to generate the Event
oam.event.efeTotalErrors Error Running Total Unsigned 64-bit integer Number of frames in error since reset of the sublayer
oam.event.efeTotalEvents Event Running Total Unsigned 32-bit integer Total Event generated since reset of the sublayer
oam.event.efeWindow Errored Frame Window Unsigned 16-bit integer Number of symbols in the period
oam.event.efpeThreshold Errored Frame Threshold Unsigned 32-bit integer Number of frames required to generate the Event
oam.event.efpeTotalErrors Error Running Total Unsigned 64-bit integer Number of frames in error since reset of the sublayer
oam.event.efpeTotalEvents Event Running Total Unsigned 32-bit integer Total Event generated since reset of the sublayer
oam.event.efpeWindow Errored Frame Window Unsigned 32-bit integer Number of frame in error during the period
oam.event.efsseThreshold Errored Frame Threshold Unsigned 16-bit integer Number of frames required to generate the Event
oam.event.efsseTotalErrors Error Running Total Unsigned 64-bit integer Number of frames in error since reset of the sublayer
oam.event.efsseTotalEvents Event Running Total Unsigned 32-bit integer Total Event generated since reset of the sublayer
oam.event.efsseWindow Errored Frame Window Unsigned 16-bit integer Number of frame in error during the period
oam.event.espeErrors Errored Symbols Unsigned 64-bit integer Number of symbols in error
oam.event.espeThreshold Errored Symbol Threshold Unsigned 64-bit integer Number of symbols required to generate the Event
oam.event.espeTotalErrors Error Running Total Unsigned 64-bit integer Number of symbols in error since reset of the sublayer
oam.event.espeTotalEvents Event Running Total Unsigned 32-bit integer Total Event generated since reset of the sublayer
oam.event.espeWindow Errored Symbol Window Unsigned 64-bit integer Number of symbols in the period
oam.event.length Event Length Unsigned 8-bit integer This field indicates the length in octets of the TLV-tuple
oam.event.sequence Sequence Number Unsigned 16-bit integer Identifies the Event Notification TLVs
oam.event.timestamp Event Timestamp (100ms) Unsigned 16-bit integer Event Time Stamp in term of 100 ms intervals
oam.event.type Event Type Unsigned 8-bit integer Identifies the TLV type
oam.flags Flags Unsigned 16-bit integer The Flags Field
oam.flags.criticalEvent Critical Event Boolean A critical event has occurred. True = 1, False = 0
oam.flags.dyingGasp Dying Gasp Boolean An unrecoverable local failure occured. True = 1, False = 0
oam.flags.linkFault Link Fault Boolean The PHY detected a fault in the receive direction. True = 1, False = 0
oam.flags.localEvaluating Local Evaluating Boolean Local DTE Discovery process in progress. True = 1, False = 0
oam.flags.localStable Local Stable Boolean Local DTE is Stable. True = 1, False = 0
oam.flags.remoteEvaluating Remote Evaluating Boolean Remote DTE Discovery process in progress. True = 1, False = 0
oam.flags.remoteStable Remote Stable Boolean Remote DTE is Stable. True = 1, False = 0
oam.info.length TLV Length Unsigned 8-bit integer Identifies the TLVs type
oam.info.oamConfig OAM Configuration Unsigned 8-bit integer OAM Configuration
oam.info.oamConfig.mode OAM Mode Boolean
oam.info.oampduConfig Max OAMPDU Size Unsigned 16-bit integer OAMPDU Configuration
oam.info.oui Organizationally Unique Identifier Byte array
oam.info.revision TLV Revision Unsigned 16-bit integer Identifies the TLVs revision
oam.info.state OAM DTE States Unsigned 8-bit integer OAM DTE State of the Mux and the Parser
oam.info.state.muxiplexer Muxiplexer Action Boolean Muxiplexer Action
oam.info.state.parser Parser Action Boolean Parser Action
oam.info.type Type Unsigned 8-bit integer Identifies the TLV type
oam.info.vendor Vendor Specific Information Byte array
oam.info.version TLV Version Unsigned 8-bit integer Identifies the TLVs version
oam.lpbk.commands Commands Unsigned 8-bit integer The List of Loopback Commands
oam.lpbk.commands.disable Disable Remote Loopback Boolean Disable Remote Loopback Command
oam.lpbk.commands.enable Enable Remote Loopback Boolean Enable Remote Loopback Command
oam.variable.attribute Leaf Unsigned 16-bit integer Attribute, derived from the CMIP protocol in Annex 30A
oam.variable.binding Leaf Unsigned 16-bit integer Binding, derived from the CMIP protocol in Annex 30A
oam.variable.branch Branch Unsigned 8-bit integer Variable Branch, derived from the CMIP protocol in Annex 30A
oam.variable.indication Variable indication Unsigned 8-bit integer Variable indication
oam.variable.object Leaf Unsigned 16-bit integer Object, derived from the CMIP protocol in Annex 30A
oam.variable.package Leaf Unsigned 16-bit integer Package, derived from the CMIP protocol in Annex 30A
oam.variable.value Variable Value Byte array Value
oam.variable.width Variable Width Unsigned 8-bit integer Width
slow.subtype Slow Protocols subtype Unsigned 8-bit integer Identifies the LACP version
socks.command Command Unsigned 8-bit integer
socks.dst Remote Address IPv4 address
socks.dstV6 Remote Address(ipv6) IPv6 address
socks.dstport Remote Port Unsigned 16-bit integer
socks.results Results(V5) Unsigned 8-bit integer
socks.results_v4 Results(V4) Unsigned 8-bit integer
socks.results_v5 Results(V5) Unsigned 8-bit integer
socks.username User Name String
socks.v4a_dns_name SOCKS v4a Remote Domain Name String
socks.version Version Unsigned 8-bit integer
slsk.average.speed Average Speed Unsigned 32-bit integer Average Speed
slsk.byte Byte Unsigned 8-bit integer Byte
slsk.chat.message Chat Message String Chat Message
slsk.chat.message.id Chat Message ID Unsigned 32-bit integer Chat Message ID
slsk.checksum Checksum Unsigned 32-bit integer Checksum
slsk.code Code Unsigned 32-bit integer Code
slsk.compr.packet [zlib compressed packet] No value zlib compressed packet
slsk.connection.type Connection Type String Connection Type
slsk.day.count Number of Days Unsigned 32-bit integer Number of Days
slsk.directories Directories Unsigned 32-bit integer Directories
slsk.directory Directory String Directory
slsk.download.number Download Number Unsigned 32-bit integer Download Number
slsk.file.count File Count Unsigned 32-bit integer File Count
slsk.filename Filename String Filename
slsk.files Files Unsigned 32-bit integer Files
slsk.folder.count Folder Count Unsigned 32-bit integer Folder Count
slsk.integer Integer Unsigned 32-bit integer Integer
slsk.ip.address IP Address IPv4 address IP Address
slsk.login.message Login Message String Login Message
slsk.login.successfull Login successfull Unsigned 8-bit integer Login Successfull
slsk.message.code Message Code Unsigned 32-bit integer Message Code
slsk.message.length Message Length Unsigned 32-bit integer Message Length
slsk.nodes.in.cache.before.disconnect Nodes In Cache Before Disconnect Unsigned 32-bit integer Nodes In Cache Before Disconnect
slsk.parent.min.speed Parent Min Speed Unsigned 32-bit integer Parent Min Speed
slsk.parent.speed.connection.ratio Parent Speed Connection Ratio Unsigned 32-bit integer Parent Speed Connection Ratio
slsk.password Password String Password
slsk.port.number Port Number Unsigned 32-bit integer Port Number
slsk.queue.place Place in Queue Unsigned 32-bit integer Place in Queue
slsk.ranking Ranking Unsigned 32-bit integer Ranking
slsk.recommendation Recommendation String Recommendation
slsk.room Room String Room
slsk.room.count Number of Rooms Unsigned 32-bit integer Number of Rooms
slsk.room.users Users in Room Unsigned 32-bit integer Number of Users in Room
slsk.search.text Search Text String Search Text
slsk.seconds.before.ping.children Seconds Before Ping Children Unsigned 32-bit integer Seconds Before Ping Children
slsk.seconds.parent.inactivity.before.disconnect Seconds Parent Inactivity Before Disconnect Unsigned 32-bit integer Seconds Parent Inactivity Before Disconnect
slsk.seconds.server.inactivity.before.disconnect Seconds Server Inactivity Before Disconnect Unsigned 32-bit integer Seconds Server Inactivity Before Disconnect
slsk.server.ip Client IP IPv4 address Client IP Address
slsk.size Size Unsigned 32-bit integer File Size
slsk.slots.full Slots full Unsigned 32-bit integer Upload Slots Full
slsk.status.code Status Code Unsigned 32-bit integer Status Code
slsk.string String String String
slsk.string.length String Length Unsigned 32-bit integer String Length
slsk.timestamp Timestamp Unsigned 32-bit integer Timestamp
slsk.token Token Unsigned 32-bit integer Token
slsk.transfer.direction Transfer Direction Unsigned 32-bit integer Transfer Direction
slsk.uploads.available Upload Slots available Unsigned 8-bit integer Upload Slots available
slsk.uploads.queued Queued uploads Unsigned 32-bit integer Queued uploads
slsk.uploads.total Total uploads allowed Unsigned 32-bit integer Total uploads allowed
slsk.uploads.user User uploads Unsigned 32-bit integer User uploads
slsk.user.allowed Download allowed Unsigned 8-bit integer allowed
slsk.user.count Number of Users Unsigned 32-bit integer Number of Users
slsk.user.description User Description String User Description
slsk.user.exists user exists Unsigned 8-bit integer User exists
slsk.user.picture Picture String User Picture
slsk.user.picture.exists Picture exists Unsigned 8-bit integer User has a picture
slsk.username Username String Username
slsk.version Version Unsigned 32-bit integer Version
mstp.cist_bridge.hw CIST Bridge Identifier 6-byte Hardware (MAC) Address
mstp.cist_internal_root_path_cost CIST Internal Root Path Cost Unsigned 32-bit integer
mstp.cist_remaining_hops CIST Remaining hops Unsigned 8-bit integer
mstp.config_digest MST Config digest Byte array
mstp.config_format_selector MST Config ID format selector Unsigned 8-bit integer
mstp.config_name MST Config name String
mstp.config_revision_level MST Config revision Unsigned 16-bit integer
mstp.msti.bridge_priority Bridge Identifier Priority Unsigned 8-bit integer
mstp.msti.flags MSTI flags Unsigned 8-bit integer
mstp.msti.port_priority Port identifier prority Unsigned 8-bit integer
mstp.msti.remaining_hops Remaining hops Unsigned 8-bit integer
mstp.msti.root.hw Regional Root 6-byte Hardware (MAC) Address
mstp.msti.root_cost Internal root path cost Unsigned 32-bit integer
mstp.version_3_length MST Extension, Length Unsigned 16-bit integer
stp.bridge.hw Bridge Identifier 6-byte Hardware (MAC) Address
stp.flags BPDU flags Unsigned 8-bit integer
stp.flags.agreement Agreement Boolean
stp.flags.forwarding Forwarding Boolean
stp.flags.learning Learning Boolean
stp.flags.port_role Port Role Unsigned 8-bit integer
stp.flags.proposal Proposal Boolean
stp.flags.tc Topology Change Boolean
stp.flags.tcack Topology Change Acknowledgment Boolean
stp.forward Forward Delay Double-precision floating point
stp.hello Hello Time Double-precision floating point
stp.max_age Max Age Double-precision floating point
stp.msg_age Message Age Double-precision floating point
stp.port Port identifier Unsigned 16-bit integer
stp.protocol Protocol Identifier Unsigned 16-bit integer
stp.root.cost Root Path Cost Unsigned 32-bit integer
stp.root.hw Root Identifier 6-byte Hardware (MAC) Address
stp.type BPDU Type Unsigned 8-bit integer
stp.version Protocol Version Identifier Unsigned 8-bit integer
stp.version_1_length Version 1 Length Unsigned 8-bit integer
gssapi.reqflags.anon Anonymous Authentication Boolean Anonymous Authentication
gssapi.reqflags.conf Per-message Confidentiality Boolean Per-message Confidentiality
gssapi.reqflags.deleg Delegation Boolean Delegation
gssapi.reqflags.integ Per-message Integrity Boolean Per-message Integrity
gssapi.reqflags.mutual Mutual Authentication Boolean Mutual Authentication
gssapi.reqflags.replay Replay Detection Boolean Replay Detection
gssapi.reqflags.sequence Out-of-sequence Detection Boolean Out-of-sequence Detection
spnego.krb5.blob krb5_blob Byte array krb5_blob
spnego.krb5.confounder krb5_confounder Byte array KRB5 Confounder
spnego.krb5.seal_alg krb5_seal_alg Unsigned 16-bit integer KRB5 Sealing Algorithm
spnego.krb5.sgn_alg krb5_sgn_alg Unsigned 16-bit integer KRB5 Signing Algorithm
spnego.krb5.sgn_cksum krb5_sgn_cksum Byte array KRB5 Data Checksum
spnego.krb5.snd_seq krb5_snd_seq Byte array KRB5 Encrypted Sequence Number
spnego.krb5.tok_id krb5_tok_id Unsigned 16-bit integer KRB5 Token Id
spnego.mechlistmic mechListMIC No value SPNEGO mechListMIC
spnego.negtokeninit negTokenInit No value SPNEGO negTokenInit
spnego.negtokeninit.mechtoken mechToken No value SPNEGO negTokenInit mechToken
spnego.negtokeninit.mechtype mechType No value SPNEGO negTokenInit mechTypes
spnego.negtokeninit.negresult negResult Unsigned 16-bit integer negResult
spnego.negtokeninit.reqflags reqFlags Byte array reqFlags
spnego.negtokentarg negTokenTarg No value SPNEGO negTokenTarg
spnego.negtokentarg.responsetoken responseToken No value SPNEGO responseToken
spnego.wraptoken wrapToken No value SPNEGO wrapToken
sctp.abort_t_bit T-Bit Boolean
sctp.adapation_layer_indication Indication Unsigned 32-bit integer
sctp.asconf_ack_serial_number Serial Number Unsigned 32-bit integer
sctp.asconf_serial_number Serial Number Unsigned 32-bit integer
sctp.cause_code Cause code Unsigned 16-bit integer
sctp.cause_information Cause information Byte array
sctp.cause_length Cause length Unsigned 16-bit integer
sctp.cause_measure_of_staleness Measure of staleness in usec Unsigned 32-bit integer
sctp.cause_missing_parameter_type Missing parameter type Unsigned 16-bit integer
sctp.cause_nr_of_missing_parameters Number of missing parameters Unsigned 32-bit integer
sctp.cause_padding Cause padding Byte array
sctp.cause_reserved Reserved Unsigned 16-bit integer
sctp.cause_stream_identifier Stream identifier Unsigned 16-bit integer
sctp.cause_tsn TSN Unsigned 32-bit integer
sctp.checksum Checksum Unsigned 32-bit integer
sctp.checksum_bad Bad checksum Boolean
sctp.chunk_bit_1 Bit Boolean
sctp.chunk_bit_2 Bit Boolean
sctp.chunk_flags Chunk flags Unsigned 8-bit integer
sctp.chunk_length Chunk length Unsigned 16-bit integer
sctp.chunk_padding Chunk padding Byte array
sctp.chunk_type Chunk type Unsigned 8-bit integer
sctp.chunk_value Chunk value Byte array
sctp.cookie Cookie Byte array
sctp.correlation_id Correlation_id Unsigned 32-bit integer
sctp.cumulative_tsn_ack Cumulative TSN Ack Unsigned 32-bit integer
sctp.cwr_lowest_tsn Lowest TSN Unsigned 32-bit integer
sctp.data_b_bit B-Bit Boolean
sctp.data_e_bit E-Bit Boolean
sctp.data_payload_proto_id Payload protocol identifier Unsigned 32-bit integer
sctp.data_sid Stream Identifier Unsigned 16-bit integer
sctp.data_ssn Stream sequence number Unsigned 16-bit integer
sctp.data_tsn TSN Unsigned 32-bit integer
sctp.data_u_bit U-Bit Boolean
sctp.dstport Destination port Unsigned 16-bit integer
sctp.ecne_lowest_tsn Lowest TSN Unsigned 32-bit integer
sctp.forward_tsn_sid Stream identifier Unsigned 16-bit integer
sctp.forward_tsn_ssn Stream sequence number Unsigned 16-bit integer
sctp.forward_tsn_tsn New cumulative TSN Unsigned 32-bit integer
sctp.init_credit Advertised receiver window credit (a_rwnd) Unsigned 32-bit integer
sctp.init_initial_tsn Initial TSN Unsigned 32-bit integer
sctp.init_initiate_tag Initiate tag Unsigned 32-bit integer
sctp.init_nr_in_streams Number of inbound streams Unsigned 16-bit integer
sctp.init_nr_out_streams Number of outbound streams Unsigned 16-bit integer
sctp.initack_credit Advertised receiver window credit (a_rwnd) Unsigned 32-bit integer
sctp.initack_initial_tsn Initial TSN Unsigned 32-bit integer
sctp.initack_initiate_tag Initiate tag Unsigned 32-bit integer
sctp.initack_nr_in_streams Number of inbound streams Unsigned 16-bit integer
sctp.initack_nr_out_streams Number of outbound streams Unsigned 16-bit integer
sctp.initiate_tag Initiate tag Unsigned 32-bit integer
sctp.parameter_bit_1 Bit Boolean
sctp.parameter_bit_2 Bit Boolean
sctp.parameter_cookie_preservative_incr Suggested Cookie life-span increment (msec) Unsigned 32-bit integer
sctp.parameter_heartbeat_information Heartbeat information Byte array
sctp.parameter_hostname Hostname String
sctp.parameter_ipv4_address IP Version 4 address IPv4 address
sctp.parameter_ipv6_address IP Version 6 address IPv6 address
sctp.parameter_length Parameter length Unsigned 16-bit integer
sctp.parameter_padding Parameter padding Byte array
sctp.parameter_state_cookie State cookie Byte array
sctp.parameter_supported_addres_type Supported address type Unsigned 16-bit integer
sctp.parameter_type Parameter type Unsigned 16-bit integer
sctp.parameter_value Parameter value Byte array
sctp.pckdrop_b_bit B-Bit Boolean
sctp.pckdrop_m_bit M-Bit Boolean
sctp.pckdrop_t_bit T-Bit Boolean
sctp.pktdrop_bandwidth Bandwidth Unsigned 32-bit integer
sctp.pktdrop_datafield Data field Byte array
sctp.pktdrop_queuesize Queuesize Unsigned 32-bit integer
sctp.pktdrop_reserved Reserved Unsigned 16-bit integer
sctp.pktdrop_truncated_length Truncated length Unsigned 16-bit integer
sctp.port Port Unsigned 16-bit integer
sctp.sack_a_rwnd Advertised receiver window credit (a_rwnd) Unsigned 32-bit integer
sctp.sack_cumulative_tsn_ack Cumulative TSN ACK Unsigned 32-bit integer
sctp.sack_duplicate_tsn Duplicate TSN Unsigned 16-bit integer
sctp.sack_gap_block_end End Unsigned 16-bit integer
sctp.sack_gap_block_start Start Unsigned 16-bit integer
sctp.sack_number_of_duplicated_tsns Number of duplicated TSNs Unsigned 16-bit integer
sctp.sack_number_of_gap_blocks Number of gap acknowldgement blocks Unsigned 16-bit integer
sctp.shutdown_complete_t_bit T-Bit Boolean
sctp.shutdown_cumulative_tsn_ack Cumulative TSN Ack Unsigned 32-bit integer
sctp.srcport Source port Unsigned 16-bit integer
sctp.verification_tag Verification tag Unsigned 32-bit integer
npdu.fragment N-PDU Fragment Frame number N-PDU Fragment
npdu.fragment.error Defragmentation error Frame number Defragmentation error due to illegal fragments
npdu.fragment.multipletails Multiple tail fragments found Boolean Several tails were found when defragmenting the packet
npdu.fragment.overlap Fragment overlap Boolean Fragment overlaps with other fragments
npdu.fragment.overlap.conflict Conflicting data in fragment overlap Boolean Overlapping fragments contained conflicting data
npdu.fragment.toolongfragment Fragment too long Boolean Fragment contained data past end of packet
npdu.fragments N-PDU Fragments No value N-PDU Fragments
npdu.reassembled.in Reassembled in Frame number N-PDU fragments are reassembled in the given packet
sndcp.dcomp DCOMP Unsigned 8-bit integer Data compression coding
sndcp.f First segment indicator bit Boolean First segment indicator bit
sndcp.m More bit Boolean More bit
sndcp.npdu N-PDU Unsigned 8-bit integer N-PDU
sndcp.nsapi NSAPI Unsigned 8-bit integer Network Layer Service Access Point Identifier
sndcp.nsapib NSAPI Unsigned 8-bit integer Network Layer Service Access Point Identifier
sndcp.pcomp PCOMP Unsigned 8-bit integer Protocol compression coding
sndcp.segment Segment Unsigned 16-bit integer Segment number
sndcp.t Type Boolean SN-PDU Type
sndcp.x Spare bit Boolean Spare bit (should be 0)
symantec.if Interface IPv4 address Interface
symantec.type Type Unsigned 16-bit integer
sdlc.address Address Field Unsigned 8-bit integer Address
sdlc.control Control Field Unsigned 16-bit integer Control field
sdlc.control.f Final Boolean
sdlc.control.ftype Frame type Unsigned 8-bit integer
sdlc.control.n_r N(R) Unsigned 8-bit integer
sdlc.control.n_s N(S) Unsigned 8-bit integer
sdlc.control.p Poll Boolean
sdlc.control.s_ftype Supervisory frame type Unsigned 8-bit integer
sdlc.control.u_modifier_cmd Command Unsigned 8-bit integer
sdlc.control.u_modifier_resp Response Unsigned 8-bit integer
syslog.facility Facility Unsigned 8-bit integer Message facility
syslog.level Level Unsigned 8-bit integer Message level
syslog.msg Message String Message Text
sna.control.05.delay Channel Delay Unsigned 16-bit integer
sna.control.05.ptp Point-to-point Boolean
sna.control.05.type Network Address Type Unsigned 8-bit integer
sna.control.0e.type Type Unsigned 8-bit integer
sna.control.0e.value Value String
sna.control.hprkey Control Vector HPR Key Unsigned 8-bit integer
sna.control.key Control Vector Key Unsigned 8-bit integer
sna.control.len Control Vector Length Unsigned 8-bit integer
sna.gds GDS Variable No value
sna.gds.cont Continuation Flag Boolean
sna.gds.len GDS Variable Length Unsigned 16-bit integer
sna.gds.type Type of Variable Unsigned 16-bit integer
sna.nlp.frh Transmission Priority Field Unsigned 8-bit integer
sna.nlp.nhdr Network Layer Packet Header No value NHDR
sna.nlp.nhdr.0 Network Layer Packet Header Byte 0 Unsigned 8-bit integer
sna.nlp.nhdr.1 Network Layer Packet Header Byte 1 Unsigned 8-bit integer
sna.nlp.nhdr.anr Automatic Network Routing Entry Byte array
sna.nlp.nhdr.fra Function Routing Address Entry Byte array
sna.nlp.nhdr.ft Function Type Unsigned 8-bit integer
sna.nlp.nhdr.slowdn1 Slowdown 1 Boolean
sna.nlp.nhdr.slowdn2 Slowdown 2 Boolean
sna.nlp.nhdr.sm Switching Mode Field Unsigned 8-bit integer
sna.nlp.nhdr.tpf Transmission Priority Field Unsigned 8-bit integer
sna.nlp.nhdr.tspi Time Sensitive Packet Indicator Boolean
sna.nlp.thdr RTP Transport Header No value THDR
sna.nlp.thdr.8 RTP Transport Packet Header Byte 8 Unsigned 8-bit integer
sna.nlp.thdr.9 RTP Transport Packet Header Byte 9 Unsigned 8-bit integer
sna.nlp.thdr.bsn Byte Sequence Number Unsigned 32-bit integer
sna.nlp.thdr.cqfi Connection Qualifyer Field Indicator Boolean
sna.nlp.thdr.dlf Data Length Field Unsigned 32-bit integer
sna.nlp.thdr.eomi End Of Message Indicator Boolean
sna.nlp.thdr.lmi Last Message Indicator Boolean
sna.nlp.thdr.offset Data Offset/4 Unsigned 16-bit integer Data Offset in Words
sna.nlp.thdr.optional.0d.arb ARB Flow Control Boolean
sna.nlp.thdr.optional.0d.dedicated Dedicated RTP Connection Boolean
sna.nlp.thdr.optional.0d.reliable Reliable Connection Boolean
sna.nlp.thdr.optional.0d.target Target Resource ID Present Boolean
sna.nlp.thdr.optional.0d.version Version Unsigned 16-bit integer
sna.nlp.thdr.optional.0e.4 Connection Setup Byte 4 Unsigned 8-bit integer
sna.nlp.thdr.optional.0e.abspbeg ABSP Begin Unsigned 32-bit integer
sna.nlp.thdr.optional.0e.abspend ABSP End Unsigned 32-bit integer
sna.nlp.thdr.optional.0e.echo Status Acknowledge Number Unsigned 16-bit integer
sna.nlp.thdr.optional.0e.gap Gap Detected Boolean
sna.nlp.thdr.optional.0e.idle RTP Idle Packet Boolean
sna.nlp.thdr.optional.0e.nabsp Number Of ABSP Unsigned 8-bit integer
sna.nlp.thdr.optional.0e.rseq Received Sequence Number Unsigned 32-bit integer
sna.nlp.thdr.optional.0e.stat Status Unsigned 8-bit integer
sna.nlp.thdr.optional.0e.sync Status Report Number Unsigned 16-bit integer
sna.nlp.thdr.optional.0f.bits Client Bits Unsigned 8-bit integer
sna.nlp.thdr.optional.10.tcid Transport Connection Identifier Byte array TCID
sna.nlp.thdr.optional.12.sense Sense Data Byte array
sna.nlp.thdr.optional.14.rr.2 Return Route TG Descriptor Byte 2 Unsigned 8-bit integer
sna.nlp.thdr.optional.14.rr.bfe BF Entry Indicator Boolean
sna.nlp.thdr.optional.14.rr.key Key Unsigned 8-bit integer
sna.nlp.thdr.optional.14.rr.len Length Unsigned 8-bit integer
sna.nlp.thdr.optional.14.rr.num Number Of TG Control Vectors Unsigned 8-bit integer
sna.nlp.thdr.optional.14.si.2 Switching Information Byte 2 Unsigned 8-bit integer
sna.nlp.thdr.optional.14.si.alive RTP Alive Timer Unsigned 32-bit integer
sna.nlp.thdr.optional.14.si.dirsearch Directory Search Required on Path Switch Indicator Boolean
sna.nlp.thdr.optional.14.si.key Key Unsigned 8-bit integer
sna.nlp.thdr.optional.14.si.len Length Unsigned 8-bit integer
sna.nlp.thdr.optional.14.si.limitres Limited Resource Link Indicator Boolean
sna.nlp.thdr.optional.14.si.maxpsize Maximum Packet Size On Return Path Unsigned 32-bit integer
sna.nlp.thdr.optional.14.si.mnpsrscv MNPS RSCV Retention Indicator Boolean
sna.nlp.thdr.optional.14.si.mobility Mobility Indicator Boolean
sna.nlp.thdr.optional.14.si.ncescope NCE Scope Indicator Boolean
sna.nlp.thdr.optional.14.si.refifo Resequencing (REFIFO) Indicator Boolean
sna.nlp.thdr.optional.14.si.switch Path Switch Time Unsigned 32-bit integer
sna.nlp.thdr.optional.22.2 Adaptive Rate Based Segment Byte 2 Unsigned 8-bit integer
sna.nlp.thdr.optional.22.3 Adaptive Rate Based Segment Byte 3 Unsigned 8-bit integer
sna.nlp.thdr.optional.22.arb ARB Mode Unsigned 8-bit integer
sna.nlp.thdr.optional.22.field1 Field 1 Unsigned 32-bit integer
sna.nlp.thdr.optional.22.field2 Field 2 Unsigned 32-bit integer
sna.nlp.thdr.optional.22.field3 Field 3 Unsigned 32-bit integer
sna.nlp.thdr.optional.22.field4 Field 4 Unsigned 32-bit integer
sna.nlp.thdr.optional.22.parity Parity Indicator Boolean
sna.nlp.thdr.optional.22.raa Rate Adjustment Action Unsigned 8-bit integer
sna.nlp.thdr.optional.22.raterep Rate Reply Correlator Unsigned 8-bit integer
sna.nlp.thdr.optional.22.ratereq Rate Request Correlator Unsigned 8-bit integer
sna.nlp.thdr.optional.22.type Message Type Unsigned 8-bit integer
sna.nlp.thdr.optional.len Optional Segment Length/4 Unsigned 8-bit integer
sna.nlp.thdr.optional.type Optional Segment Type Unsigned 8-bit integer
sna.nlp.thdr.osi Optional Segments Present Indicator Boolean
sna.nlp.thdr.rasapi Reply ASAP Indicator Boolean
sna.nlp.thdr.retryi Retry Indicator Boolean
sna.nlp.thdr.setupi Setup Indicator Boolean
sna.nlp.thdr.somi Start Of Message Indicator Boolean
sna.nlp.thdr.sri Session Request Indicator Boolean
sna.nlp.thdr.tcid Transport Connection Identifier Byte array TCID
sna.rh Request/Response Header No value
sna.rh.0 Request/Response Header Byte 0 Unsigned 8-bit integer
sna.rh.1 Request/Response Header Byte 1 Unsigned 8-bit integer
sna.rh.2 Request/Response Header Byte 2 Unsigned 8-bit integer
sna.rh.bbi Begin Bracket Indicator Boolean
sna.rh.bci Begin Chain Indicator Boolean
sna.rh.cdi Change Direction Indicator Boolean
sna.rh.cebi Conditional End Bracket Indicator Boolean
sna.rh.csi Code Selection Indicator Unsigned 8-bit integer
sna.rh.dr1 Definite Response 1 Indicator Boolean
sna.rh.dr2 Definite Response 2 Indicator Boolean
sna.rh.ebi End Bracket Indicator Boolean
sna.rh.eci End Chain Indicator Boolean
sna.rh.edi Enciphered Data Indicator Boolean
sna.rh.eri Exception Response Indicator Boolean
sna.rh.fi Format Indicator Boolean
sna.rh.lcci Length-Checked Compression Indicator Boolean
sna.rh.pdi Padded Data Indicator Boolean
sna.rh.pi Pacing Indicator Boolean
sna.rh.qri Queued Response Indicator Boolean
sna.rh.rlwi Request Larger Window Indicator Boolean
sna.rh.rri Request/Response Indicator Unsigned 8-bit integer
sna.rh.rti Response Type Indicator Boolean
sna.rh.ru_category Request/Response Unit Category Unsigned 8-bit integer
sna.rh.sdi Sense Data Included Boolean
sna.th Transmission Header No value
sna.th.0 Transmission Header Byte 0 Unsigned 8-bit integer TH Byte 0
sna.th.cmd_fmt Command Format Unsigned 8-bit integer
sna.th.cmd_sn Command Sequence Number Unsigned 16-bit integer
sna.th.cmd_type Command Type Unsigned 8-bit integer
sna.th.daf Destination Address Field Unsigned 16-bit integer
sna.th.dcf Data Count Field Unsigned 16-bit integer
sna.th.def Destination Element Field Unsigned 16-bit integer
sna.th.dsaf Destination Subarea Address Field Unsigned 32-bit integer
sna.th.efi Expedited Flow Indicator Unsigned 8-bit integer
sna.th.er_vr_supp_ind ER and VR Support Indicator Unsigned 8-bit integer
sna.th.ern Explicit Route Number Unsigned 8-bit integer
sna.th.fid Format Identifer Unsigned 8-bit integer
sna.th.iern Initial Explicit Route Number Unsigned 8-bit integer
sna.th.lsid Local Session Identification Unsigned 8-bit integer
sna.th.mft MPR FID4 Type Boolean
sna.th.mpf Mapping Field Unsigned 8-bit integer
sna.th.nlp_cp NLP Count or Padding Unsigned 8-bit integer
sna.th.nlpoi NLP Offset Indicator Unsigned 8-bit integer
sna.th.ntwk_prty Network Priority Unsigned 8-bit integer
sna.th.oaf Origin Address Field Unsigned 16-bit integer
sna.th.odai ODAI Assignment Indicator Unsigned 8-bit integer
sna.th.oef Origin Element Field Unsigned 16-bit integer
sna.th.osaf Origin Subarea Address Field Unsigned 32-bit integer
sna.th.piubf PIU Blocking Field Unsigned 8-bit integer
sna.th.sa Session Address Byte array
sna.th.snai SNA Indicator Boolean Used to identify whether the PIU originated or is destined for an SNA or non-SNA device.
sna.th.snf Sequence Number Field Unsigned 16-bit integer
sna.th.tg_nonfifo_ind Transmission Group Non-FIFO Indicator Boolean
sna.th.tg_snf Transmission Group Sequence Number Field Unsigned 16-bit integer
sna.th.tg_sweep Transmission Group Sweep Unsigned 8-bit integer
sna.th.tgsf Transmission Group Segmenting Field Unsigned 8-bit integer
sna.th.tpf Transmission Priority Field Unsigned 8-bit integer
sna.th.vr_cwi Virtual Route Change Window Indicator Unsigned 16-bit integer Change Window Indicator
sna.th.vr_cwri Virtual Route Change Window Reply Indicator Unsigned 16-bit integer
sna.th.vr_pac_cnt_ind Virtual Route Pacing Count Indicator Unsigned 8-bit integer
sna.th.vr_rwi Virtual Route Reset Window Indicator Boolean
sna.th.vr_snf_send Virtual Route Send Sequence Number Field Unsigned 16-bit integer Send Sequence Number Field
sna.th.vr_sqti Virtual Route Sequence and Type Indicator Unsigned 16-bit integer Route Sequence and Type
sna.th.vrn Virtual Route Number Unsigned 8-bit integer
sna.th.vrprq Virtual Route Pacing Request Boolean
sna.th.vrprs Virtual Route Pacing Response Boolean
sna.xid XID No value XID Frame
sna.xid.0 XID Byte 0 Unsigned 8-bit integer
sna.xid.format XID Format Unsigned 8-bit integer
sna.xid.id Node Identification Unsigned 32-bit integer
sna.xid.idblock ID Block Unsigned 32-bit integer
sna.xid.idnum ID Number Unsigned 32-bit integer
sna.xid.len XID Length Unsigned 8-bit integer
sna.xid.type XID Type Unsigned 8-bit integer
sna.xid.type3.10 XID Type 3 Byte 10 Unsigned 8-bit integer
sna.xid.type3.11 XID Type 3 Byte 11 Unsigned 8-bit integer
sna.xid.type3.12 XID Type 3 Byte 12 Unsigned 8-bit integer
sna.xid.type3.15 XID Type 3 Byte 15 Unsigned 8-bit integer
sna.xid.type3.8 Characteristics of XID sender Unsigned 16-bit integer
sna.xid.type3.actpu ACTPU suppression indicator Boolean
sna.xid.type3.asend_bind Adaptive BIND pacing support as sender Boolean Pacing support as sender
sna.xid.type3.asend_recv Adaptive BIND pacing support as receiver Boolean Pacing support as receive
sna.xid.type3.branch Branch Indicator Unsigned 8-bit integer
sna.xid.type3.brnn Option Set 1123 Indicator Boolean
sna.xid.type3.cp Control Point Services Boolean
sna.xid.type3.cpchange CP name change support Boolean
sna.xid.type3.cpcp CP-CP session support Boolean
sna.xid.type3.dedsvc Dedicated SVC Idicator Boolean
sna.xid.type3.dlc XID DLC Unsigned 8-bit integer
sna.xid.type3.dlen DLC Dependent Section Length Unsigned 8-bit integer
sna.xid.type3.dlur Dependent LU Requester Indicator Boolean
sna.xid.type3.dlus DLUS Served LU Registration Indicator Boolean
sna.xid.type3.exbn Extended HPR Border Node Boolean
sna.xid.type3.gener_bind Whole BIND PIU generated indicator Boolean Whole BIND PIU generated
sna.xid.type3.genodai Generalized ODAI Usage Option Boolean
sna.xid.type3.initself INIT-SELF support Boolean
sna.xid.type3.negcomp Negotiation Complete Boolean
sna.xid.type3.negcsup Negotiation Complete Supported Boolean
sna.xid.type3.nonact Nonactivation Exchange Boolean
sna.xid.type3.nwnode Sender is network node Boolean
sna.xid.type3.pacing Qualifier for adaptive BIND pacing support Unsigned 8-bit integer
sna.xid.type3.partg Parallel TG Support Boolean
sna.xid.type3.pbn Peripheral Border Node Boolean
sna.xid.type3.pucap PU Capabilities Boolean
sna.xid.type3.quiesce Quiesce TG Request Boolean
sna.xid.type3.recve_bind Whole BIND PIU required indicator Boolean Whole BIND PIU required
sna.xid.type3.stand_bind Stand-Alone BIND Support Boolean
sna.xid.type3.state XID exchange state indicator Unsigned 16-bit integer
sna.xid.type3.tg XID TG Unsigned 8-bit integer
sna.xid.type3.tgshare TG Sharing Prohibited Indicator Boolean
h245.fec_npackets Fec npackets Signed 32-bit integer fec_npackets value
t38.Data_Field Data Field No value Data_Field sequence of
t38.Data_Field_field_data Data_Field_field_data Byte array Data_Field_field_data octet string
t38.Data_Field_field_type Data_Field_field_type Unsigned 32-bit integer Data_Field_field_type choice
t38.Data_Field_item Data_Field_item No value Data_Field_item sequence
t38.IFPPacket IFPPacket No value IFPPacket sequence
t38.Type_of_msg_type Type of msg Unsigned 32-bit integer Type_of_msg choice
t38.UDPTLPacket UDPTLPacket No value UDPTLPacket sequence
t38.error_recovery Error recovery Unsigned 32-bit integer error_recovery choice
t38.fec_data Fec data No value fec_data sequence of
t38.fec_info Fec info No value fec_info sequence
t38.primary_ifp_packet Primary IFPPacket Byte array primary_ifp_packet octet string
t38.primary_ifp_packet_length primary_ifp_packet_length Unsigned 32-bit integer primary_ifp_packet_length
t38.secondary_ifp_packets Secondary IFPPackets No value secondary_ifp_packets sequence of
t38.secondary_ifp_packets_item Secondary IFPPackets item Byte array secondary_ifp_packets_item octet string
t38.secondary_ifp_packets_item_length secondary_ifp_packets_item_length Unsigned 32-bit integer secondary_ifp_packets_item_length
t38.seq_number Sequence number Unsigned 32-bit integer seq_number
t38.setup Stream setup String Stream setup, method and frame number
t38.setup-frame Stream frame Frame number Frame that set up this stream
t38.setup-method Stream Method String Method used to set up this stream
t38.t30_indicator T30 indicator Unsigned 32-bit integer t30_indicator
t38.t38_data data Unsigned 32-bit integer data
t38.t38_fec_data_item t38_fec_data_item Byte array t38_fec_data_item octet string
tacacs.destaddr Destination address IPv4 address Destination address
tacacs.destport Destination port Unsigned 16-bit integer Destination port
tacacs.line Line Unsigned 16-bit integer Line
tacacs.nonce Nonce Unsigned 16-bit integer Nonce
tacacs.passlen Password length Unsigned 8-bit integer Password length
tacacs.reason Reason Unsigned 8-bit integer Reason
tacacs.response Response Unsigned 8-bit integer Response
tacacs.result1 Result 1 Unsigned 32-bit integer Result 1
tacacs.result2 Result 2 Unsigned 32-bit integer Result 2
tacacs.result3 Result 3 Unsigned 16-bit integer Result 3
tacacs.type Type Unsigned 8-bit integer Type
tacacs.userlen Username length Unsigned 8-bit integer Username length
tacacs.version Version Unsigned 8-bit integer Version
tacplus.acct.flags Flags Unsigned 8-bit integer Flags
tacplus.flags Flags Unsigned 8-bit integer Flags
tacplus.flags.singleconn Single Connection Boolean Is this a single connection?
tacplus.flags.unencrypted Unencrypted Boolean Is payload unencrypted?
tacplus.majvers Major version Unsigned 8-bit integer Major version number
tacplus.minvers Minor version Unsigned 8-bit integer Minor version number
tacplus.packet_len Packet length Unsigned 32-bit integer Packet length
tacplus.request Request Boolean TRUE if TACACS+ request
tacplus.response Response Boolean TRUE if TACACS+ response
tacplus.seqno Sequence number Unsigned 8-bit integer Sequence number
tacplus.session_id Session ID Unsigned 32-bit integer Session ID
tacplus.type Type Unsigned 8-bit integer Type
tei.action Action Unsigned 8-bit integer Action Indicator
tei.entity Entity Unsigned 8-bit integer Layer Management Entity Identifier
tei.extend Extend Unsigned 8-bit integer Extension Indicator
tei.msg Msg Unsigned 8-bit integer Message Type
tei.reference Reference Unsigned 16-bit integer Reference Number
tpkt.length Length Unsigned 16-bit integer
tpkt.reserved Reserved Unsigned 8-bit integer
tpkt.version Version Unsigned 8-bit integer
tds.channel Channel Unsigned 16-bit integer Channel Number
tds.fragment TDS Fragment Frame number TDS Fragment
tds.fragment.error Defragmentation error Frame number Defragmentation error due to illegal fragments
tds.fragment.multipletails Multiple tail fragments found Boolean Several tails were found when defragmenting the packet
tds.fragment.overlap Segment overlap Boolean Fragment overlaps with other fragments
tds.fragment.overlap.conflict Conflicting data in fragment overlap Boolean Overlapping fragments contained conflicting data
tds.fragment.toolongfragment Segment too long Boolean Segment contained data past end of packet
tds.fragments TDS Fragments No value TDS Fragments
tds.packet_number Packet Number Unsigned 8-bit integer Packet Number
tds.reassembled_in Reassembled TDS in frame Frame number This TDS packet is reassembled in this frame
tds.size Size Unsigned 16-bit integer Packet Size
tds.status Status Unsigned 8-bit integer Frame status
tds.type Type Unsigned 8-bit integer Packet Type
tds.window Window Unsigned 8-bit integer Window
tds7.message Message String
tds7login.client_pid Client PID Unsigned 32-bit integer Client PID
tds7login.client_version Client version Unsigned 32-bit integer Client version
tds7login.collation Collation Unsigned 32-bit integer Collation
tds7login.connection_id Connection ID Unsigned 32-bit integer Connection ID
tds7login.option_flags1 Option Flags 1 Unsigned 8-bit integer Option Flags 1
tds7login.option_flags2 Option Flags 2 Unsigned 8-bit integer Option Flags 2
tds7login.packet_size Packet Size Unsigned 32-bit integer Packet size
tds7login.reserved_flags Reserved Flags Unsigned 8-bit integer reserved flags
tds7login.sql_type_flags SQL Type Flags Unsigned 8-bit integer SQL Type Flags
tds7login.time_zone Time Zone Unsigned 32-bit integer Time Zone
tds7login.total_len Total Packet Length Unsigned 32-bit integer TDS7 Login Packet total packet length
tds7login.version TDS version Unsigned 32-bit integer TDS version
tzsp.encap Encapsulation Unsigned 16-bit integer Encapsulation
tzsp.original_length Original Length Signed 16-bit integer OrigLength
tzsp.sensormac Sensor Address 6-byte Hardware (MAC) Address Sensor MAC
tzsp.type Type Unsigned 8-bit integer Type
tzsp.unknown Unknown tag Byte array Unknown
tzsp.version Version Unsigned 8-bit integer Version
tzsp.wlan.channel Channel Unsigned 8-bit integer Channel
tzsp.wlan.rate Rate Unsigned 8-bit integer Rate
tzsp.wlan.signal Signal Signed 8-bit integer Signal
tzsp.wlan.silence Silence Signed 8-bit integer Silence
tzsp.wlan.status Status Unsigned 16-bit integer Status
tzsp.wlan.status.fcs_err FCS Boolean Frame check sequence
tzsp.wlan.status.mac_port Port Unsigned 8-bit integer MAC port
tzsp.wlan.status.msg_type Type Unsigned 8-bit integer Message type
tzsp.wlan.status.pcf PCF Boolean Point Coordination Function
tzsp.wlan.status.undecrypted Undecrypted Boolean Undecrypted
tzsp.wlan.time Time Unsigned 32-bit integer Time
telnet.auth.cmd Auth Cmd Unsigned 8-bit integer Authentication Command
telnet.auth.krb5.cmd Command Unsigned 8-bit integer Krb5 Authentication sub-command
telnet.auth.mod.cred_fwd Cred Fwd Boolean Modifier: Whether client will forward creds or not
telnet.auth.mod.enc Encrypt Unsigned 8-bit integer Modifier: How to enable Encryption
telnet.auth.mod.how How Boolean Modifier: How to mask
telnet.auth.mod.who Who Boolean Modifier: Who to mask
telnet.auth.name Name String Name of user being authenticated
telnet.auth.type Auth Type Unsigned 8-bit integer Authentication Type
teredo.auth Teredo Authentication header No value Teredo Authentication header
teredo.auth.aulen Authentication value length Unsigned 8-bit integer Authentication value length (AU-len)
teredo.auth.conf Confirmation byte Byte array Confirmation byte is zero upon successful authentication.
teredo.auth.id Client identifier Byte array Client identifier (ID)
teredo.auth.idlen Client identifier length Unsigned 8-bit integer Client identifier length (ID-len)
teredo.auth.nonce Nonce value Byte array Nonce value prevents spoofing Teredo server.
teredo.auth.value Authentication value Byte array Authentication value (hash)
teredo.orig Teredo Origin Indication header No value Teredo Origin Indication
teredo.orig.addr Origin IPv4 address IPv4 address Origin IPv4 address
teredo.orig.port Origin UDP port Unsigned 16-bit integer Origin UDP port
time.time Time Unsigned 32-bit integer Seconds since 00:00 (midnight) 1 January 1900 GMT
tsp.hopcnt Hop Count Unsigned 8-bit integer Hop Count
tsp.name Machine Name String Sender Machine Name
tsp.sec Seconds Unsigned 32-bit integer Seconds
tsp.sequence Sequence Unsigned 16-bit integer Sequence Number
tsp.type Type Unsigned 8-bit integer Packet Type
tsp.usec Microseconds Unsigned 32-bit integer Microseconds
tsp.version Version Unsigned 8-bit integer Protocol Version Number
tr.ac Access Control Unsigned 8-bit integer
tr.addr Source or Destination Address 6-byte Hardware (MAC) Address Source or Destination Hardware Address
tr.broadcast Broadcast Type Unsigned 8-bit integer Type of Token-Ring Broadcast
tr.direction Direction Unsigned 8-bit integer Direction of RIF
tr.dst Destination 6-byte Hardware (MAC) Address Destination Hardware Address
tr.fc Frame Control Unsigned 8-bit integer
tr.frame Frame Boolean
tr.frame_pcf Frame PCF Unsigned 8-bit integer
tr.frame_type Frame Type Unsigned 8-bit integer
tr.max_frame_size Maximum Frame Size Unsigned 8-bit integer
tr.monitor_cnt Monitor Count Unsigned 8-bit integer
tr.priority Priority Unsigned 8-bit integer
tr.priority_reservation Priority Reservation Unsigned 8-bit integer
tr.rif Ring-Bridge Pairs String String representing Ring-Bridge Pairs
tr.rif.bridge RIF Bridge Unsigned 8-bit integer
tr.rif.ring RIF Ring Unsigned 16-bit integer
tr.rif_bytes RIF Bytes Unsigned 8-bit integer Number of bytes in Routing Information Fields, including the two bytes of Routing Control Field
tr.sr Source Routed Boolean Source Routed
tr.src Source 6-byte Hardware (MAC) Address Source Hardware Address
trmac.dstclass Destination Class Unsigned 8-bit integer
trmac.errors.abort Abort Delimiter Transmitted Errors Unsigned 8-bit integer
trmac.errors.ac A/C Errors Unsigned 8-bit integer
trmac.errors.burst Burst Errors Unsigned 8-bit integer
trmac.errors.congestion Receiver Congestion Errors Unsigned 8-bit integer
trmac.errors.fc Frame-Copied Errors Unsigned 8-bit integer
trmac.errors.freq Frequency Errors Unsigned 8-bit integer
trmac.errors.internal Internal Errors Unsigned 8-bit integer
trmac.errors.iso Isolating Errors Unsigned 16-bit integer
trmac.errors.line Line Errors Unsigned 8-bit integer
trmac.errors.lost Lost Frame Errors Unsigned 8-bit integer
trmac.errors.noniso Non-Isolating Errors Unsigned 16-bit integer
trmac.errors.token Token Errors Unsigned 8-bit integer
trmac.length Total Length Unsigned 8-bit integer
trmac.mvec Major Vector Unsigned 8-bit integer
trmac.naun NAUN 6-byte Hardware (MAC) Address
trmac.srcclass Source Class Unsigned 8-bit integer
trmac.svec Sub-Vector Unsigned 8-bit integer
tcap.data Binary Data Byte array
tcap.dlg.appconname Application Context Name Byte array
tcap.dlgtype Dialogue Type Unsigned 8-bit integer
tcap.id Value Unsigned 8-bit integer
tcap.len Length Unsigned 8-bit integer
tcap.msgtype Tag Unsigned 8-bit integer
tcap.oid OID String
tcap.ssn Called or Calling SubSystem Number Unsigned 8-bit integer
tcap.tid Transaction Id Unsigned 32-bit integer
tcp.ack Acknowledgement number Unsigned 32-bit integer
tcp.analysis.ack_lost_segment ACKed Lost Packet No value This frame ACKs a lost segment
tcp.analysis.ack_rtt The RTT to ACK the segment was Time duration How long time it took to ACK the segment (RTT)
tcp.analysis.acks_frame This is an ACK to the segment in frame Frame number Which previous segment is this an ACK for
tcp.analysis.duplicate_ack Duplicate ACK No value This is a duplicate ACK
tcp.analysis.duplicate_ack_frame Duplicate to the ACK in frame Frame number This is a duplicate to the ACK in frame #
tcp.analysis.duplicate_ack_num Duplicate ACK # Unsigned 32-bit integer This is duplicate ACK number #
tcp.analysis.fast_retransmission Fast Retransmission No value This frame is a suspected TCP fast retransmission
tcp.analysis.flags TCP Analysis Flags No value This frame has some of the TCP analysis flags set
tcp.analysis.keep_alive Keep Alive No value This is a keep-alive segment
tcp.analysis.keep_alive_ack Keep Alive ACK No value This is an ACK to a keep-alive segment
tcp.analysis.lost_segment Previous Segment Lost No value A segment before this one was lost from the capture
tcp.analysis.out_of_order Out Of Order No value This frame is a suspected Out-Of-Order segment
tcp.analysis.retransmission Retransmission No value This frame is a suspected TCP retransmission
tcp.analysis.window_full Window full No value The this segment has caused the allowed window to become 100% full
tcp.analysis.window_update Window update No value This frame is a tcp window update
tcp.analysis.zero_window Zero Window No value This is a zero-window
tcp.analysis.zero_window_probe Zero Window Probe No value This is a zero-window-probe
tcp.analysis.zero_window_violation Zero Window Violation No value This is a zero-window violation, an attempt to write >1 byte to a zero-window
tcp.checksum Checksum Unsigned 16-bit integer
tcp.checksum_bad Bad Checksum Boolean
tcp.continuation_to This is a continuation to the PDU in frame Frame number This is a continuation to the PDU in frame #
tcp.dstport Destination Port Unsigned 16-bit integer
tcp.flags Flags Unsigned 8-bit integer
tcp.flags.ack Acknowledgment Boolean
tcp.flags.cwr Congestion Window Reduced (CWR) Boolean
tcp.flags.ecn ECN-Echo Boolean
tcp.flags.fin Fin Boolean
tcp.flags.push Push Boolean
tcp.flags.reset Reset Boolean
tcp.flags.syn Syn Boolean
tcp.flags.urg Urgent Boolean
tcp.hdr_len Header Length Unsigned 8-bit integer
tcp.len TCP Segment Len Unsigned 32-bit integer
tcp.nxtseq Next sequence number Unsigned 32-bit integer
tcp.options.cc TCP CC Option Boolean TCP CC Option
tcp.options.ccecho TCP CC Echo Option Boolean TCP CC Echo Option
tcp.options.ccnew TCP CC New Option Boolean TCP CC New Option
tcp.options.echo TCP Echo Option Boolean TCP Sack Echo
tcp.options.echo_reply TCP Echo Reply Option Boolean TCP Echo Reply Option
tcp.options.md5 TCP MD5 Option Boolean TCP MD5 Option
tcp.options.mss TCP MSS Option Boolean TCP MSS Option
tcp.options.mss_val TCP MSS Option Value Unsigned 16-bit integer TCP MSS Option Value
tcp.options.sack TCP Sack Option Boolean TCP Sack Option
tcp.options.sack_le TCP Sack Left Edge Unsigned 32-bit integer TCP Sack Left Edge
tcp.options.sack_perm TCP Sack Perm Option Boolean TCP Sack Perm Option
tcp.options.sack_re TCP Sack Right Edge Unsigned 32-bit integer TCP Sack Right Edge
tcp.options.time_stamp TCP Time Stamp Option Boolean TCP Time Stamp Option
tcp.options.wscale TCP Window Scale Option Boolean TCP Window Option
tcp.options.wscale_val TCP Windows Scale Option Value Unsigned 8-bit integer TCP Window Scale Value
tcp.pdu.last_frame Last frame of this PDU Frame number This is the last frame of the PDU starting in this segment
tcp.pdu.time Time until the last segment of this PDU Time duration How long time has passed until the last frame of this PDU
tcp.port Source or Destination Port Unsigned 16-bit integer
tcp.reassembled_in Reassembled PDU in frame Frame number The PDU that doesn't end in this segment is reassembled in this frame
tcp.segment TCP Segment Frame number TCP Segment
tcp.segment.error Reassembling error Frame number Reassembling error due to illegal segments
tcp.segment.multipletails Multiple tail segments found Boolean Several tails were found when reassembling the pdu
tcp.segment.overlap Segment overlap Boolean Segment overlaps with other segments
tcp.segment.overlap.conflict Conflicting data in segment overlap Boolean Overlapping segments contained conflicting data
tcp.segment.toolongfragment Segment too long Boolean Segment contained data past end of the pdu
tcp.segments TCP Segments No value TCP Segments
tcp.seq Sequence number Unsigned 32-bit integer
tcp.srcport Source Port Unsigned 16-bit integer
tcp.urgent_pointer Urgent pointer Unsigned 16-bit integer
tcp.window_size Window size Unsigned 32-bit integer
tns.abort Abort Boolean Abort
tns.abort_data Abort Data String Abort Data
tns.abort_reason_system Abort Reason (User) Unsigned 8-bit integer Abort Reason from System
tns.abort_reason_user Abort Reason (User) Unsigned 8-bit integer Abort Reason from Application
tns.accept Accept Boolean Accept
tns.accept_data Accept Data String Accept Data
tns.accept_data_length Accept Data Length Unsigned 16-bit integer Length of Accept Data
tns.accept_data_offset Offset to Accept Data Unsigned 16-bit integer Offset to Accept Data
tns.compat_version Version (Compatible) Unsigned 16-bit integer Version (Compatible)
tns.connect Connect Boolean Connect
tns.connect_data Connect Data String Connect Data
tns.connect_data_length Length of Connect Data Unsigned 16-bit integer Length of Connect Data
tns.connect_data_max Maximum Receivable Connect Data Unsigned 32-bit integer Maximum Receivable Connect Data
tns.connect_data_offset Offset to Connect Data Unsigned 16-bit integer Offset to Connect Data
tns.connect_flags.enablena NA services enabled Boolean NA services enabled
tns.connect_flags.ichg Interchange is involved Boolean Interchange is involved
tns.connect_flags.nalink NA services linked in Boolean NA services linked in
tns.connect_flags.nareq NA services required Boolean NA services required
tns.connect_flags.wantna NA services wanted Boolean NA services wanted
tns.connect_flags0 Connect Flags 0 Unsigned 8-bit integer Connect Flags 0
tns.connect_flags1 Connect Flags 1 Unsigned 8-bit integer Connect Flags 1
tns.control Control Boolean Control
tns.control.cmd Control Command Unsigned 16-bit integer Control Command
tns.control.data Control Data Byte array Control Data
tns.data Data Boolean Data
tns.data_flag Data Flag Unsigned 16-bit integer Data Flag
tns.data_flag.c Confirmation Boolean Confirmation
tns.data_flag.dic Do Immediate Confirmation Boolean Do Immediate Confirmation
tns.data_flag.eof End of File Boolean End of File
tns.data_flag.more More Data to Come Boolean More Data to Come
tns.data_flag.rc Request Confirmation Boolean Request Confirmation
tns.data_flag.reserved Reserved Boolean Reserved
tns.data_flag.rts Request To Send Boolean Request To Send
tns.data_flag.send Send Token Boolean Send Token
tns.data_flag.sntt Send NT Trailer Boolean Send NT Trailer
tns.header_checksum Header Checksum Unsigned 16-bit integer Checksum of Header Data
tns.length Packet Length Unsigned 16-bit integer Length of TNS packet
tns.line_turnaround Line Turnaround Value Unsigned 16-bit integer Line Turnaround Value
tns.marker Marker Boolean Marker
tns.marker.data Marker Data Unsigned 16-bit integer Marker Data
tns.marker.databyte Marker Data Byte Unsigned 8-bit integer Marker Data Byte
tns.marker.type Marker Type Unsigned 8-bit integer Marker Type
tns.max_tdu_size Maximum Transmission Data Unit Size Unsigned 16-bit integer Maximum Transmission Data Unit Size
tns.nt_proto_characteristics NT Protocol Characteristics Unsigned 16-bit integer NT Protocol Characteristics
tns.ntp_flag.asio ASync IO Supported Boolean ASync IO Supported
tns.ntp_flag.cbio Callback IO supported Boolean Callback IO supported
tns.ntp_flag.crel Confirmed release Boolean Confirmed release
tns.ntp_flag.dfio Full duplex IO supported Boolean Full duplex IO supported
tns.ntp_flag.dtest Data test Boolean Data Test
tns.ntp_flag.grant Can grant connection to another Boolean Can grant connection to another
tns.ntp_flag.handoff Can handoff connection to another Boolean Can handoff connection to another
tns.ntp_flag.hangon Hangon to listener connect Boolean Hangon to listener connect
tns.ntp_flag.pio Packet oriented IO Boolean Packet oriented IO
tns.ntp_flag.sigio Generate SIGIO signal Boolean Generate SIGIO signal
tns.ntp_flag.sigpipe Generate SIGPIPE signal Boolean Generate SIGPIPE signal
tns.ntp_flag.sigurg Generate SIGURG signal Boolean Generate SIGURG signal
tns.ntp_flag.srun Spawner running Boolean Spawner running
tns.ntp_flag.tduio TDU based IO Boolean TDU based IO
tns.ntp_flag.testop Test operation Boolean Test operation
tns.ntp_flag.urgentio Urgent IO supported Boolean Urgent IO supported
tns.packet_checksum Packet Checksum Unsigned 16-bit integer Checksum of Packet Data
tns.redirect Redirect Boolean Redirect
tns.redirect_data Redirect Data String Redirect Data
tns.redirect_data_length Redirect Data Length Unsigned 16-bit integer Length of Redirect Data
tns.refuse Refuse Boolean Refuse
tns.refuse_data Refuse Data String Refuse Data
tns.refuse_data_length Refuse Data Length Unsigned 16-bit integer Length of Refuse Data
tns.refuse_reason_system Refuse Reason (System) Unsigned 8-bit integer Refuse Reason from System
tns.refuse_reason_user Refuse Reason (User) Unsigned 8-bit integer Refuse Reason from Application
tns.request Request Boolean TRUE if TNS request
tns.reserved_byte Reserved Byte Byte array Reserved Byte
tns.response Response Boolean TRUE if TNS response
tns.sdu_size Session Data Unit Size Unsigned 16-bit integer Session Data Unit Size
tns.service_options Service Options Unsigned 16-bit integer Service Options
tns.so_flag.ap Attention Processing Boolean Attention Processing
tns.so_flag.bconn Broken Connect Notify Boolean Broken Connect Notify
tns.so_flag.dc1 Don't Care Boolean Don't Care
tns.so_flag.dc2 Don't Care Boolean Don't Care
tns.so_flag.dio Direct IO to Transport Boolean Direct IO to Transport
tns.so_flag.fd Full Duplex Boolean Full Duplex
tns.so_flag.hc Header Checksum Boolean Header Checksum
tns.so_flag.hd Half Duplex Boolean Half Duplex
tns.so_flag.pc Packet Checksum Boolean Packet Checksum
tns.so_flag.ra Can Receive Attention Boolean Can Receive Attention
tns.so_flag.sa Can Send Attention Boolean Can Send Attention
tns.trace_cf1 Trace Cross Facility Item 1 Unsigned 32-bit integer Trace Cross Facility Item 1
tns.trace_cf2 Trace Cross Facility Item 2 Unsigned 32-bit integer Trace Cross Facility Item 2
tns.trace_cid Trace Unique Connection ID Unsigned 64-bit integer Trace Unique Connection ID
tns.type Packet Type Unsigned 8-bit integer Type of TNS packet
tns.value_of_one Value of 1 in Hardware Byte array Value of 1 in Hardware
tns.version Version Unsigned 16-bit integer Version
tali.msu_length Length Unsigned 16-bit integer TALI MSU Length
tali.opcode Opcode String TALI Operation Code
tali.sync Sync String TALI SYNC
tftp.block Block Unsigned 16-bit integer Block number
tftp.destination_file DESTINATION File String TFTP source file name
tftp.error.code Error code Unsigned 16-bit integer Error code in case of TFTP error message
tftp.error.message Error message String Error string in case of TFTP error message
tftp.opcode Opcode Unsigned 16-bit integer TFTP message type
tftp.source_file Source File String TFTP source file name
tftp.type Type String TFTP transfer type
ucp.hdr.LEN Length Unsigned 16-bit integer Total number of characters between <stx>...<etx>.
ucp.hdr.OT Operation Unsigned 8-bit integer The operation that is requested with this message.
ucp.hdr.O_R Type Unsigned 8-bit integer Your basic 'is a request or response'.
ucp.hdr.TRN Transaction Reference Number Unsigned 8-bit integer Transaction number for this command, used in windowing.
ucp.message Data No value The actual message or data.
ucp.parm Data No value The actual content of the operation.
ucp.parm.AAC AAC String Accumulated charges.
ucp.parm.AC AC String Authentication code.
ucp.parm.ACK (N)Ack Unsigned 8-bit integer Positive or negative acknowledge of the operation.
ucp.parm.AMsg AMsg String The alphanumeric message that is being sent.
ucp.parm.A_D A_D Unsigned 8-bit integer Add to/delete from fixed subscriber address list record.
ucp.parm.AdC AdC String Address code recipient.
ucp.parm.BAS BAS Unsigned 8-bit integer Barring status flag.
ucp.parm.CPg CPg String Reserved for Code Page.
ucp.parm.CS CS Unsigned 8-bit integer Additional character set number.
ucp.parm.CT CT Date/Time stamp Accumulated charges timestamp.
ucp.parm.DAdC DAdC String Diverted address code.
ucp.parm.DCs DCs Unsigned 8-bit integer Data coding scheme (deprecated).
ucp.parm.DD DD Unsigned 8-bit integer Deferred delivery requested.
ucp.parm.DDT DDT Date/Time stamp Deferred delivery time.
ucp.parm.DSCTS DSCTS Date/Time stamp Delivery timestamp.
ucp.parm.Dst Dst Unsigned 8-bit integer Delivery status.
ucp.parm.EC Error code Unsigned 8-bit integer The result of the requested operation.
ucp.parm.GA GA String GA?? haven't got a clue.
ucp.parm.GAdC GAdC String Group address code.
ucp.parm.HPLMN HPLMN String Home PLMN address.
ucp.parm.IVR5x IVR5x String UCP release number supported/accepted.
ucp.parm.L1P L1P String New leg. code for level 1 priority.
ucp.parm.L1R L1R Unsigned 8-bit integer Leg. code for priority 1 flag.
ucp.parm.L3P L3P String New leg. code for level 3 priority.
ucp.parm.L3R L3R Unsigned 8-bit integer Leg. code for priority 3 flag.
ucp.parm.LAC LAC String New leg. code for all calls.
ucp.parm.LAR LAR Unsigned 8-bit integer Leg. code for all calls flag.
ucp.parm.LAdC LAdC String Address for VSMSC list operation.
ucp.parm.LCR LCR Unsigned 8-bit integer Leg. code for reverse charging flag.
ucp.parm.LMN LMN Unsigned 8-bit integer Last message number.
ucp.parm.LNPI LNPI Unsigned 8-bit integer Numbering plan id. list address.
ucp.parm.LNo LNo String Standard text list number requested by calling party.
ucp.parm.LPID LPID Unsigned 16-bit integer Last resort PID value.
ucp.parm.LPR LPR String Legitimisation code for priority requested.
ucp.parm.LRAd LRAd String Last resort address.
ucp.parm.LRC LRC String Legitimisation code for reverse charging.
ucp.parm.LRP LRP String Legitimisation code for repitition.
ucp.parm.LRR LRR Unsigned 8-bit integer Leg. code for repitition flag.
ucp.parm.LRq LRq Unsigned 8-bit integer Last resort address request.
ucp.parm.LST LST String Legitimisation code for standard text.
ucp.parm.LTON LTON Unsigned 8-bit integer Type of number list address.
ucp.parm.LUM LUM String Legitimisation code for urgent message.
ucp.parm.LUR LUR Unsigned 8-bit integer Leg. code for urgent message flag.
ucp.parm.MCLs MCLs Unsigned 8-bit integer Message class.
ucp.parm.MMS MMS Unsigned 8-bit integer More messages to send.
ucp.parm.MNo MNo String Message number.
ucp.parm.MT MT Unsigned 8-bit integer Message type.
ucp.parm.MVP MVP Date/Time stamp Mofified validity period.
ucp.parm.NAC NAC String New authentication code.
ucp.parm.NAdC NAdC String Notification address.
ucp.parm.NB NB String No. of bits in Transparent Data (TD) message.
ucp.parm.NMESS NMESS Unsigned 8-bit integer Number of stored messages.
ucp.parm.NMESS_str NMESS_str String Number of stored messages.
ucp.parm.NPID NPID Unsigned 16-bit integer Notification PID value.
ucp.parm.NPL NPL Unsigned 16-bit integer Number of parameters in the following list.
ucp.parm.NPWD NPWD String New password.
ucp.parm.NRq NRq Unsigned 8-bit integer Notification request.
ucp.parm.NT NT Unsigned 8-bit integer Notification type.
ucp.parm.NoA NoA Unsigned 16-bit integer Maximum number of alphanumerical characters accepted.
ucp.parm.NoB NoB Unsigned 16-bit integer Maximum number of data bits accepted.
ucp.parm.NoN NoN Unsigned 16-bit integer Maximum number of numerical characters accepted.
ucp.parm.OAC OAC String Authentication code, originator.
ucp.parm.OAdC OAdC String Address code originator.
ucp.parm.ONPI ONPI Unsigned 8-bit integer Originator numbering plan id.
ucp.parm.OPID OPID Unsigned 8-bit integer Originator protocol identifier.
ucp.parm.OTOA OTOA String Originator Type Of Address.
ucp.parm.OTON OTON Unsigned 8-bit integer Originator type of number.
ucp.parm.PID PID Unsigned 16-bit integer SMT PID value.
ucp.parm.PNC PNC Unsigned 8-bit integer Paging network controller.
ucp.parm.PR PR Unsigned 8-bit integer Priority requested.
ucp.parm.PWD PWD String Current password.
ucp.parm.RC RC Unsigned 8-bit integer Reverse charging request.
ucp.parm.REQ_OT REQ_OT Unsigned 8-bit integer UCP release number supported/accepted.
ucp.parm.RES1 RES1 String Reserved for future use.
ucp.parm.RES2 RES2 String Reserved for future use.
ucp.parm.RES4 RES4 String Reserved for future use.
ucp.parm.RES5 RES5 String Reserved for future use.
ucp.parm.RP RP Unsigned 8-bit integer Repitition requested.
ucp.parm.RPI RPI Unsigned 8-bit integer Reply path.
ucp.parm.RPID RPID String Replace PID
ucp.parm.RPLy RPLy String Reserved for Reply type.
ucp.parm.RT RT Unsigned 8-bit integer Receiver type.
ucp.parm.R_T R_T Unsigned 8-bit integer Message number.
ucp.parm.Rsn Rsn Unsigned 16-bit integer Reason code.
ucp.parm.SCTS SCTS Date/Time stamp Service Centre timestamp.
ucp.parm.SM SM String System message.
ucp.parm.SP SP Date/Time stamp Stop time.
ucp.parm.SSTAT SSTAT Unsigned 8-bit integer Supplementary services for which status is requested.
ucp.parm.ST ST Date/Time stamp Start time.
ucp.parm.STYP0 STYP0 Unsigned 8-bit integer Subtype of operation.
ucp.parm.STYP1 STYP1 Unsigned 8-bit integer Subtype of operation.
ucp.parm.STx STx No value Standard text.
ucp.parm.TNo TNo String Standard text number requested by calling party.
ucp.parm.UM UM Unsigned 8-bit integer Urgent message indicator.
ucp.parm.VERS VERS String Version number.
ucp.parm.VP VP Date/Time stamp Validity period.
ucp.parm.XSer Extra services: No value Extra services.
ucp.xser.service Type of service Unsigned 8-bit integer The type of service specified.
udp.checksum Checksum Unsigned 16-bit integer
udp.checksum_bad Bad Checksum Boolean
udp.dstport Destination Port Unsigned 16-bit integer
udp.length Length Unsigned 16-bit integer
udp.port Source or Destination Port Unsigned 16-bit integer
udp.srcport Source Port Unsigned 16-bit integer
vrrp.adver_int Adver Int Unsigned 8-bit integer Time interval (in seconds) between ADVERTISEMENTS
vrrp.auth_type Auth Type Unsigned 8-bit integer The authentication method being utilized
vrrp.count_ip_addrs Count IP Addrs Unsigned 8-bit integer The number of IP addresses contained in this VRRP advertisement
vrrp.ip_addr IP Address IPv4 address IP address associated with the virtual router
vrrp.ipv6_addr IPv6 Address IPv6 address IPv6 address associated with the virtual router
vrrp.prio Priority Unsigned 8-bit integer Sending VRRP router's priority for the virtual router
vrrp.type VRRP packet type Unsigned 8-bit integer VRRP type
vrrp.typever VRRP message version and type Unsigned 8-bit integer VRRP version and type
vrrp.version VRRP protocol version Unsigned 8-bit integer VRRP version
vrrp.virt_rtr_id Virtual Rtr ID Unsigned 8-bit integer Virtual router this packet is reporting status for
vtp.code Code Unsigned 8-bit integer
vtp.conf_rev_num Configuration Revision Number Unsigned 32-bit integer Revision number of the configuration information
vtp.followers Followers Unsigned 8-bit integer Number of following Subset-Advert messages
vtp.md Management Domain String Management domain
vtp.md5_digest MD5 Digest Byte array
vtp.md_len Management Domain Length Unsigned 8-bit integer Length of management domain string
vtp.seq_num Sequence Number Unsigned 8-bit integer Order of this frame in the sequence of Subset-Advert frames
vtp.start_value Start Value Unsigned 16-bit integer Virtual LAN ID of first VLAN for which information is requested
vtp.upd_id Updater Identity IPv4 address IP address of the updater
vtp.upd_ts Update Timestamp String Time stamp of the current configuration revision
vtp.version Version Unsigned 8-bit integer
vtp.vlan_info.802_10_index 802.10 Index Unsigned 32-bit integer IEEE 802.10 security association identifier for this VLAN
vtp.vlan_info.isl_vlan_id ISL VLAN ID Unsigned 16-bit integer ID of this VLAN on ISL trunks
vtp.vlan_info.len VLAN Information Length Unsigned 8-bit integer Length of the VLAN information field
vtp.vlan_info.mtu_size MTU Size Unsigned 16-bit integer MTU for this VLAN
vtp.vlan_info.status.vlan_susp VLAN suspended Boolean VLAN suspended
vtp.vlan_info.tlv_len Length Unsigned 8-bit integer
vtp.vlan_info.tlv_type Type Unsigned 8-bit integer
vtp.vlan_info.vlan_name VLAN Name String VLAN name
vtp.vlan_info.vlan_name_len VLAN Name Length Unsigned 8-bit integer Length of VLAN name string
vtp.vlan_info.vlan_type VLAN Type Unsigned 8-bit integer Type of VLAN
wbxml.charset Character Set Unsigned 32-bit integer WBXML Character Set
wbxml.public_id.known Public Identifier (known) Unsigned 32-bit integer WBXML Known Public Identifier (integer)
wbxml.public_id.literal Public Identifier (literal) String WBXML Literal Public Identifier (text string)
wbxml.version Version Unsigned 8-bit integer WBXML Version
wap.sir Session Initiation Request No value Session Initiation Request content
wap.sir.app_id_list Application-ID List No value Application-ID list
wap.sir.app_id_list.length Application-ID List Length Unsigned 32-bit integer Length of the Application-ID list (bytes)
wap.sir.contact_points Non-WSP Contact Points No value Non-WSP Contact Points list
wap.sir.contact_points.length Non-WSP Contact Points Length Unsigned 32-bit integer Length of the Non-WSP Contact Points list (bytes)
wap.sir.cpi_tag CPITag Byte array CPITag (OTA-HTTP)
wap.sir.cpi_tag.length CPITag List Entries Unsigned 32-bit integer Number of entries in the CPITag list
wap.sir.protocol_options Protocol Options Unsigned 16-bit integer Protocol Options list
wap.sir.protocol_options.length Protocol Options List Entries Unsigned 32-bit integer Number of entries in the Protocol Options list
wap.sir.prov_url X-Wap-ProvURL String X-Wap-ProvURL (Identifies the WAP Client Provisioning Context)
wap.sir.prov_url.length X-Wap-ProvURL Length Unsigned 32-bit integer Length of the X-Wap-ProvURL (Identifies the WAP Client Provisioning Context)
wap.sir.version Version Unsigned 8-bit integer Version of the Session Initiation Request document
wap.sir.wsp_contact_points WSP Contact Points No value WSP Contact Points list
wap.sir.wsp_contact_points.length WSP Contact Points Length Unsigned 32-bit integer Length of the WSP Contact Points list (bytes)
wccp.cache_ip Web Cache IP address IPv4 address The IP address of a Web cache
wccp.change_num Change Number Unsigned 32-bit integer The Web-Cache list entry change number
wccp.hash_revision Hash Revision Unsigned 32-bit integer The cache hash revision
wccp.message WCCP Message Type Unsigned 32-bit integer The WCCP message that was sent
wccp.recvd_id Received ID Unsigned 32-bit integer The number of I_SEE_YOU's that have been sent
wccp.version WCCP Version Unsigned 32-bit integer The WCCP version
mq.api.completioncode Completion code Unsigned 32-bit integer API Completion code
mq.api.hobj Object handle Unsigned 32-bit integer API Object handle
mq.api.reasoncode Reason code Unsigned 32-bit integer API Reason code
mq.api.replylength Reply length Unsigned 32-bit integer API Reply length
mq.conn.acttoken Accounting token Byte array CONN accounting token
mq.conn.appname Application name String CONN application name
mq.conn.apptype Application type Signed 32-bit integer CONN application type
mq.conn.options Options Unsigned 32-bit integer CONN options
mq.conn.qm Queue manager String CONN queue manager
mq.conn.version Version Unsigned 32-bit integer CONN version
mq.dh.flagspmr Flags PMR Unsigned 32-bit integer DH flags PMR
mq.dh.nbrrec Number of records Unsigned 32-bit integer DH number of records
mq.dh.offsetor Offset of first OR Unsigned 32-bit integer DH offset of first OR
mq.dh.offsetpmr Offset of first PMR Unsigned 32-bit integer DH offset of first PMR
mq.dlh.ccsid Character set Signed 32-bit integer DLH character set
mq.dlh.destq Destination queue String DLH destination queue
mq.dlh.destqmgr Destination queue manager String DLH destination queue manager
mq.dlh.encoding Encoding Unsigned 32-bit integer DLH encoding
mq.dlh.format Format String DLH format
mq.dlh.putapplname Put application name String DLH put application name
mq.dlh.putappltype Put application type Signed 32-bit integer DLH put application type
mq.dlh.putdate Put date String DLH put date
mq.dlh.puttime Put time String DLH put time
mq.dlh.reason Reason Unsigned 32-bit integer DLH reason
mq.dlh.structid DLH structid String DLH structid
mq.dlh.version Version Unsigned 32-bit integer DLH version
mq.gmo.grpstat Group status Unsigned 8-bit integer GMO group status
mq.gmo.matchopt Match options Unsigned 32-bit integer GMO match options
mq.gmo.msgtoken Message token Byte array GMO message token
mq.gmo.options Options Unsigned 32-bit integer GMO options
mq.gmo.reserved Reserved Unsigned 8-bit integer GMO reserved
mq.gmo.resolvq Resolved queue name String GMO resolved queue name
mq.gmo.retlen Returned length Signed 32-bit integer GMO returned length
mq.gmo.segmentation Segmentation Unsigned 8-bit integer GMO segmentation
mq.gmo.sgmtstat Segment status Unsigned 8-bit integer GMO segment status
mq.gmo.signal1 Signal 1 Unsigned 32-bit integer GMO signal 1
mq.gmo.signal2 Signal 2 Unsigned 32-bit integer GMO signal 2
mq.gmo.structid GMO structid String GMO structid
mq.gmo.version Version Unsigned 32-bit integer GMO version
mq.gmo.waitint Wait Interval Signed 32-bit integer GMO wait interval
mq.head.ccsid Character set Signed 32-bit integer Header character set
mq.head.encoding Encoding Unsigned 32-bit integer Header encoding
mq.head.flags Flags Unsigned 32-bit integer Header flags
mq.head.format Format String Header format
mq.head.length Length Unsigned 32-bit integer Header length
mq.head.struct Struct Byte array Header struct
mq.head.structid Structid String Header structid
mq.head.version Structid Unsigned 32-bit integer Header version
mq.id.capflags Capability flags Unsigned 8-bit integer ID Capability flags
mq.id.ccsid Character set Unsigned 16-bit integer ID character set
mq.id.channelname Channel name String ID channel name
mq.id.flags Flags Unsigned 8-bit integer ID flags
mq.id.hbint Heartbeat interval Unsigned 32-bit integer ID Heartbeat interval
mq.id.icf.convcap Conversion capable Boolean ID ICF Conversion capable
mq.id.icf.mqreq MQ request Boolean ID ICF MQ request
mq.id.icf.msgseq Message sequence Boolean ID ICF Message sequence
mq.id.icf.runtime Runtime application Boolean ID ICF Runtime application
mq.id.icf.splitmsg Split messages Boolean ID ICF Split message
mq.id.icf.svrsec Server connection security Boolean ID ICF Server connection security
mq.id.ief Initial error flags Unsigned 8-bit integer ID initial error flags
mq.id.ief.ccsid Invalid CCSID Boolean ID invalid CCSID
mq.id.ief.enc Invalid encoding Boolean ID invalid encoding
mq.id.ief.fap Invalid FAP level Boolean ID invalid FAP level
mq.id.ief.hbint Invalid heartbeat interval Boolean ID invalid heartbeat interval
mq.id.ief.mxmsgpb Invalid maximum message per batch Boolean ID maximum message per batch
mq.id.ief.mxmsgsz Invalid message size Boolean ID invalid message size
mq.id.ief.mxtrsz Invalid maximum transmission size Boolean ID invalid maximum transmission size
mq.id.ief.seqwrap Invalid sequence wrap value Boolean ID invalid sequence wrap value
mq.id.level FAP level Unsigned 8-bit integer ID Formats And Protocols level
mq.id.maxmsgperbatch Maximum messages per batch Unsigned 16-bit integer ID max msg per batch
mq.id.maxmsgsize Maximum message size Unsigned 32-bit integer ID max msg size
mq.id.maxtranssize Maximum transmission size Unsigned 32-bit integer ID max trans size
mq.id.qm Queue manager String ID Queue manager
mq.id.seqwrap Sequence wrap value Unsigned 32-bit integer ID seq wrap value
mq.id.structid ID structid String ID structid
mq.id.unknown2 Unknown2 Unsigned 8-bit integer ID unknown2
mq.id.unknown4 Unknown4 Unsigned 16-bit integer ID unknown4
mq.id.unknown5 Unknown5 Unsigned 8-bit integer ID unknown5
mq.id.unknown6 Unknown6 Unsigned 16-bit integer ID unknown6
mq.inq.charlen Character length Unsigned 32-bit integer INQ Character length
mq.inq.charvalues Char values String INQ Character values
mq.inq.intvalue Integer value Unsigned 32-bit integer INQ Integer value
mq.inq.nbint Integer count Unsigned 32-bit integer INQ Integer count
mq.inq.nbsel Selector count Unsigned 32-bit integer INQ Selector count
mq.inq.sel Selector Unsigned 32-bit integer INQ Selector
mq.md.acttoken Accounting token Byte array MD accounting token
mq.md.appldata ApplicationId data String MD Put applicationId data
mq.md.applname Put Application Name String MD Put application name
mq.md.appltype Put Application Type Signed 32-bit integer MD Put application type
mq.md.backount Backount count Unsigned 32-bit integer MD Backount count
mq.md.ccsid Character set Signed 32-bit integer MD character set
mq.md.correlid CorrelationId Byte array MD Correlation Id
mq.md.date Put date String MD Put date
mq.md.encoding Encoding Unsigned 32-bit integer MD encoding
mq.md.expiry Expiry Signed 32-bit integer MD expiry
mq.md.feedback Feedback Unsigned 32-bit integer MD feedback
mq.md.format Format String MD format
mq.md.groupid GroupId Byte array MD GroupId
mq.md.lastformat Last format String MD Last format
mq.md.msgflags Message flags Unsigned 32-bit integer MD Message flags
mq.md.msgid MessageId Byte array MD Message Id
mq.md.msgseqnumber Message sequence number Unsigned 32-bit integer MD Message sequence number
mq.md.msgtype Message type Unsigned 32-bit integer MD message type
mq.md.offset Offset Unsigned 32-bit integer MD Offset
mq.md.origdata Application original data String MD Application original data
mq.md.persistence Persistence Unsigned 32-bit integer MD persistence
mq.md.priority Priority Signed 32-bit integer MD priority
mq.md.report Report Unsigned 32-bit integer MD report
mq.md.structid MD structid String MD structid
mq.md.time Put time String MD Put time
mq.md.userid UserId String MD UserId
mq.md.version Version Unsigned 32-bit integer MD version
mq.msh.buflength Buffer length Unsigned 32-bit integer MSH buffer length
mq.msh.msglength Message length Unsigned 32-bit integer MSH message length
mq.msh.seqnum Sequence number Unsigned 32-bit integer MSH sequence number
mq.msh.structid MSH structid String MSH structid
mq.msh.unknown1 Unknown1 Unsigned 32-bit integer MSH unknown1
mq.od.addror Address of first OR Unsigned 32-bit integer OD address of first OR
mq.od.addrrr Address of first RR Unsigned 32-bit integer OD address of first RR
mq.od.altsecid Alternate security id String OD alternate security id
mq.od.altuserid Alternate user id String OD alternate userid
mq.od.dynqname Dynamic queue name String OD dynamic queue name
mq.od.idestcount Invalid destination count Unsigned 32-bit integer OD invalid destination count
mq.od.kdestcount Known destination count Unsigned 32-bit integer OD known destination count
mq.od.nbrrec Number of records Unsigned 32-bit integer OD number of records
mq.od.objname Object name String OD object name
mq.od.objqmgrname Object queue manager name String OD object queue manager name
mq.od.objtype Object type Unsigned 32-bit integer OD object type
mq.od.offsetor Offset of first OR Unsigned 32-bit integer OD offset of first OR
mq.od.offsetrr Offset of first RR Unsigned 32-bit integer OD offset of first RR
mq.od.resolvq Resolved queue name String OD resolved queue name
mq.od.resolvqmgr Resolved queue manager name String OD resolved queue manager name
mq.od.structid OD structid String OD structid
mq.od.udestcount Unknown destination count Unsigned 32-bit integer OD unknown destination count
mq.od.version Version Unsigned 32-bit integer OD version
mq.open.options Options Unsigned 32-bit integer OPEN options
mq.ping.buffer Buffer Byte array PING buffer
mq.ping.length Length Unsigned 32-bit integer PING length
mq.ping.seqnum Sequence number Unsigned 32-bit integer RESET sequence number
mq.pmo.addrrec Address of first record Unsigned 32-bit integer PMO address of first record
mq.pmo.addrres Address of first response record Unsigned 32-bit integer PMO address of first response record
mq.pmo.context Context Unsigned 32-bit integer PMO context
mq.pmo.flagspmr Flags PMR fields Unsigned 32-bit integer PMO flags PMR fields
mq.pmo.idestcount Invalid destination count Unsigned 32-bit integer PMO invalid destination count
mq.pmo.kdstcount Known destination count Unsigned 32-bit integer PMO known destination count
mq.pmo.nbrrec Number of records Unsigned 32-bit integer PMO number of records
mq.pmo.offsetpmr Offset of first PMR Unsigned 32-bit integer PMO offset of first PMR
mq.pmo.offsetrr Offset of first RR Unsigned 32-bit integer PMO offset of first RR
mq.pmo.options Options Unsigned 32-bit integer PMO options
mq.pmo.resolvq Resolved queue name String PMO resolved queue name
mq.pmo.resolvqmgr Resolved queue name manager String PMO resolved queue manager name
mq.pmo.structid PMO structid String PMO structid
mq.pmo.timeout Timeout Signed 32-bit integer PMO time out
mq.pmo.udestcount Unknown destination count Unsigned 32-bit integer PMO unknown destination count
mq.pmr.acttoken Accounting token Byte array PMR accounting token
mq.pmr.correlid Correlation Id Byte array PMR Correlation Id
mq.pmr.feedback Feedback Unsigned 32-bit integer PMR Feedback
mq.pmr.groupid GroupId Byte array PMR GroupId
mq.pmr.msgid Message Id Byte array PMR Message Id
mq.put.length Data length Unsigned 32-bit integer PUT Data length
mq.rr.completioncode Completion code Unsigned 32-bit integer OR completion code
mq.rr.reasoncode Reason code Unsigned 32-bit integer OR reason code
mq.spai.mode Mode Unsigned 32-bit integer SPI Activate Input mode
mq.spai.msgid Message Id String SPI Activate Input message id
mq.spai.unknown1 Unknown1 String SPI Activate Input unknown1
mq.spai.unknown2 Unknown2 String SPI Activate Input unknown2
mq.spgi.batchint Batch interval Unsigned 32-bit integer SPI Get Input batch interval
mq.spgi.batchsize Batch size Unsigned 32-bit integer SPI Get Input batch size
mq.spgi.maxmsgsize Max message size Unsigned 32-bit integer SPI Get Input max message size
mq.spgo.options Options Unsigned 32-bit integer SPI Get Output options
mq.spgo.size Size Unsigned 32-bit integer SPI Get Output size
mq.spi.options.blank Blank padded Boolean SPI Options blank padded
mq.spi.options.deferred Deferred Boolean SPI Options deferred
mq.spi.options.sync Syncpoint Boolean SPI Options syncpoint
mq.spi.replength Max reply size Unsigned 32-bit integer SPI Max reply size
mq.spi.verb SPI Verb Unsigned 32-bit integer SPI Verb
mq.spi.version Version Unsigned 32-bit integer SPI Version
mq.spib.length Length Unsigned 32-bit integer SPI Base Length
mq.spib.structid SPI Structid String SPI Base structid
mq.spib.version Version Unsigned 32-bit integer SPI Base Version
mq.spqo.flags Flags Unsigned 32-bit integer SPI Query Output flags
mq.spqo.maxiov Max InOut Version Unsigned 32-bit integer SPI Query Output Max InOut Version
mq.spqo.maxiv Max In Version Unsigned 32-bit integer SPI Query Output Max In Version
mq.spqo.maxov Max Out Version Unsigned 32-bit integer SPI Query Output Max Out Version
mq.spqo.nbverb Number of verbs Unsigned 32-bit integer SPI Query Output Number of verbs
mq.spqo.verb Verb Unsigned 32-bit integer SPI Query Output VerbId
mq.status.code Code Unsigned 32-bit integer STATUS code
mq.status.length Length Unsigned 32-bit integer STATUS length
mq.status.value Value Unsigned 32-bit integer STATUS value
mq.tsh.byteorder Byte order Unsigned 8-bit integer TSH Byte order
mq.tsh.ccsid Character set Unsigned 16-bit integer TSH CCSID
mq.tsh.cflags Control flags Unsigned 8-bit integer TSH Control flags
mq.tsh.encoding Encoding Unsigned 32-bit integer TSH Encoding
mq.tsh.luwid Logical unit of work identifier Byte array TSH logical unit of work identifier
mq.tsh.padding Padding Unsigned 16-bit integer TSH Padding
mq.tsh.reserved Reserved Unsigned 8-bit integer TSH Reserved
mq.tsh.seglength MQ Segment length Unsigned 32-bit integer TSH MQ Segment length
mq.tsh.structid TSH structid String TSH structid
mq.tsh.tcf.closechann Close channel Boolean TSH TCF Close channel
mq.tsh.tcf.confirmreq Confirm request Boolean TSH TCF Confirm request
mq.tsh.tcf.dlq DLQ used Boolean TSH TCF DLQ used
mq.tsh.tcf.error Error Boolean TSH TCF Error
mq.tsh.tcf.first First Boolean TSH TCF First
mq.tsh.tcf.last Last Boolean TSH TCF Last
mq.tsh.tcf.reqacc Request accepted Boolean TSH TCF Request accepted
mq.tsh.tcf.reqclose Request close Boolean TSH TCF Request close
mq.tsh.type Segment type Unsigned 8-bit integer TSH MQ segment type
mq.uid.longuserid Long User ID String UID long user id
mq.uid.password Password String UID password
mq.uid.securityid Security ID Byte array UID security id
mq.uid.structid UID structid String UID structid
mq.uid.userid User ID String UID structid
mq.xa.length Length Unsigned 32-bit integer XA Length
mq.xa.nbxid Number of Xid Unsigned 32-bit integer XA Number of Xid
mq.xa.returnvalue Return value Signed 32-bit integer XA Return Value
mq.xa.rmid Resource manager ID Unsigned 32-bit integer XA Resource Manager ID
mq.xa.tmflags Transaction Manager Flags Unsigned 32-bit integer XA Transaction Manager Flags
mq.xa.tmflags.endrscan ENDRSCAN Boolean XA TM Flags ENDRSCAN
mq.xa.tmflags.fail FAIL Boolean XA TM Flags FAIL
mq.xa.tmflags.join JOIN Boolean XA TM Flags JOIN
mq.xa.tmflags.onephase ONEPHASE Boolean XA TM Flags ONEPHASE
mq.xa.tmflags.resume RESUME Boolean XA TM Flags RESUME
mq.xa.tmflags.startrscan STARTRSCAN Boolean XA TM Flags STARTRSCAN
mq.xa.tmflags.success SUCCESS Boolean XA TM Flags SUCCESS
mq.xa.tmflags.suspend SUSPEND Boolean XA TM Flags SUSPEND
mq.xa.xainfo.length Length Unsigned 8-bit integer XA XA_info Length
mq.xa.xainfo.value Value String XA XA_info Value
mq.xa.xid.bq Branch Qualifier Byte array XA Xid Branch Qualifier
mq.xa.xid.bql Branch Qualifier Length Unsigned 8-bit integer XA Xid Branch Qualifier Length
mq.xa.xid.formatid Format ID Signed 32-bit integer XA Xid Format ID
mq.xa.xid.gxid Global TransactionId Byte array XA Xid Global TransactionId
mq.xa.xid.gxidl Global TransactionId Length Unsigned 8-bit integer XA Xid Global TransactionId Length
mq.xqh.remoteq Remote queue String XQH remote queue
mq.xqh.remoteqmgr Remote queue manager String XQH remote queue manager
mq.xqh.structid XQH structid String XQH structid
mq.xqh.version Version Unsigned 32-bit integer XQH version
mqpcf.cfh.command Command Unsigned 32-bit integer CFH command
mqpcf.cfh.compcode Completion code Unsigned 32-bit integer CFH completion code
mqpcf.cfh.control Control Unsigned 32-bit integer CFH control
mqpcf.cfh.length Length Unsigned 32-bit integer CFH length
mqpcf.cfh.msgseqnumber Message sequence number Unsigned 32-bit integer CFH message sequence number
mqpcf.cfh.paramcount Parameter count Unsigned 32-bit integer CFH parameter count
mqpcf.cfh.reasoncode Reason code Unsigned 32-bit integer CFH reason code
mqpcf.cfh.type Type Unsigned 32-bit integer CFH type
mqpcf.cfh.version Version Unsigned 32-bit integer CFH version
bofl.pdu PDU Unsigned 32-bit integer PDU; normally equals 0x01010000 or 0x01011111
bofl.sequence Sequence Unsigned 32-bit integer incremental counter
wcp.alg Alg Unsigned 8-bit integer Algorithm
wcp.alg1 Alg 1 Unsigned 8-bit integer Algorithm #1
wcp.alg2 Alg 2 Unsigned 8-bit integer Algorithm #2
wcp.alg3 Alg 3 Unsigned 8-bit integer Algorithm #3
wcp.alg4 Alg 4 Unsigned 8-bit integer Algorithm #4
wcp.alg_cnt Alg Count Unsigned 8-bit integer Algorithm Count
wcp.checksum Checksum Unsigned 8-bit integer Packet Checksum
wcp.cmd Command Unsigned 8-bit integer Compression Command
wcp.ext_cmd Extended Command Unsigned 8-bit integer Extended Compression Command
wcp.flag Compress Flag Unsigned 8-bit integer Compressed byte flag
wcp.hist History Unsigned 8-bit integer History Size
wcp.init Initiator Unsigned 8-bit integer Initiator
wcp.long_comp Long Compression Unsigned 16-bit integer Long Compression type
wcp.long_len Compress Length Unsigned 8-bit integer Compressed length
wcp.mark Compress Marker Unsigned 8-bit integer Compressed marker
wcp.off Source offset Unsigned 16-bit integer Data source offset
wcp.pib PIB Unsigned 8-bit integer PIB
wcp.ppc PerPackComp Unsigned 8-bit integer Per Packet Compression
wcp.rev Revision Unsigned 8-bit integer Revision
wcp.rexmit Rexmit Unsigned 8-bit integer Retransmit
wcp.seq SEQ Unsigned 16-bit integer Sequence Number
wcp.seq_size Seq Size Unsigned 8-bit integer Sequence Size
wcp.short_comp Short Compression Unsigned 8-bit integer Short Compression type
wcp.short_len Compress Length Unsigned 8-bit integer Compressed length
wcp.tid TID Unsigned 16-bit integer TID
wfleet_hdlc.address Address Unsigned 8-bit integer
wfleet_hdlc.command Command Unsigned 8-bit integer
who.boottime Boot Time Date/Time stamp
who.hostname Hostname String
who.idle Time Idle Unsigned 32-bit integer
who.loadav_10 Load Average Over Past 10 Minutes Double-precision floating point
who.loadav_15 Load Average Over Past 15 Minutes Double-precision floating point
who.loadav_5 Load Average Over Past 5 Minutes Double-precision floating point
who.recvtime Receive Time Date/Time stamp
who.sendtime Send Time Date/Time stamp
who.timeon Time On Date/Time stamp
who.tty TTY Name String
who.type Type Unsigned 8-bit integer
who.uid User ID String
who.vers Version Unsigned 8-bit integer
who.whoent Who utmp Entry No value
dnsserver.opnum Operation Unsigned 16-bit integer Operation
dnsserver.rc Return code Unsigned 32-bit integer Return code
wsp.TID Transaction ID Unsigned 8-bit integer WSP Transaction ID (for connectionless WSP)
wsp.address Address Record Unsigned 32-bit integer Address Record
wsp.address.bearer_type Bearer Type Unsigned 8-bit integer Bearer Type
wsp.address.flags Flags/Length Unsigned 8-bit integer Address Flags/Length
wsp.address.flags.bearer_type_included Bearer Type Included Boolean Address bearer type included
wsp.address.flags.length Address Length Unsigned 8-bit integer Address Length
wsp.address.flags.port_number_included Port Number Included Boolean Address port number included
wsp.address.ipv4 IPv4 Address IPv4 address Address (IPv4)
wsp.address.ipv6 IPv6 Address IPv6 address Address (IPv6)
wsp.address.port Port Number Unsigned 16-bit integer Port Number
wsp.address.unknown Address Byte array Address (unknown)
wsp.capabilities Capabilities No value Capabilities
wsp.capabilities.length Capabilities Length Unsigned 32-bit integer Length of Capabilities field (bytes)
wsp.capability.aliases Aliases Byte array Aliases
wsp.capability.client_message_size Client Message Size Unsigned 8-bit integer Client Message size (bytes)
wsp.capability.client_sdu_size Client SDU Size Unsigned 8-bit integer Client Service Data Unit size (bytes)
wsp.capability.code_pages Header Code Pages String Header Code Pages
wsp.capability.extended_methods Extended Methods String Extended Methods
wsp.capability.method_mor Method MOR Unsigned 8-bit integer Method MOR
wsp.capability.protocol_opt Protocol Options String Protocol Options
wsp.capability.protocol_option.ack_headers Acknowledgement headers Boolean If set, this CO-WSP session supports Acknowledgement headers
wsp.capability.protocol_option.confirmed_push Confirmed Push facility Boolean If set, this CO-WSP session supports the Confirmed Push facility
wsp.capability.protocol_option.large_data_transfer Large data transfer Boolean If set, this CO-WSP session supports Large data transfer
wsp.capability.protocol_option.push Push facility Boolean If set, this CO-WSP session supports the Push facility
wsp.capability.protocol_option.session_resume Session Resume facility Boolean If set, this CO-WSP session supports the Session Resume facility
wsp.capability.push_mor Push MOR Unsigned 8-bit integer Push MOR
wsp.capability.server_message_size Server Message Size Unsigned 8-bit integer Server Message size (bytes)
wsp.capability.server_sdu_size Server SDU Size Unsigned 8-bit integer Server Service Data Unit size (bytes)
wsp.code_page Switching to WSP header code-page Unsigned 8-bit integer Header code-page shift code
wsp.header.accept Accept String WSP header Accept
wsp.header.accept_application Accept-Application String WSP header Accept-Application
wsp.header.accept_charset Accept-Charset String WSP header Accept-Charset
wsp.header.accept_encoding Accept-Encoding String WSP header Accept-Encoding
wsp.header.accept_language Accept-Language String WSP header Accept-Language
wsp.header.accept_ranges Accept-Ranges String WSP header Accept-Ranges
wsp.header.age Age String WSP header Age
wsp.header.allow Allow String WSP header Allow
wsp.header.application_id Application-Id String WSP header Application-Id
wsp.header.authorization Authorization String WSP header Authorization
wsp.header.authorization.password Password String WSP header Authorization: password for basic authorization
wsp.header.authorization.scheme Authorization Scheme String WSP header Authorization: used scheme
wsp.header.authorization.user_id User-id String WSP header Authorization: user ID for basic authorization
wsp.header.bearer_indication Bearer-Indication String WSP header Bearer-Indication
wsp.header.cache_control Cache-Control String WSP header Cache-Control
wsp.header.connection Connection String WSP header Connection
wsp.header.content_base Content-Base String WSP header Content-Base
wsp.header.content_disposition Content-Disposition String WSP header Content-Disposition
wsp.header.content_encoding Content-Encoding String WSP header Content-Encoding
wsp.header.content_id Content-Id String WSP header Content-Id
wsp.header.content_language Content-Language String WSP header Content-Language
wsp.header.content_length Content-Length String WSP header Content-Length
wsp.header.content_location Content-Location String WSP header Content-Location
wsp.header.content_md5 Content-Md5 String WSP header Content-Md5
wsp.header.content_range Content-Range String WSP header Content-Range
wsp.header.content_range.entity_length Entity-length Unsigned 32-bit integer WSP header Content-Range: length of the entity
wsp.header.content_range.first_byte_pos First-byte-position Unsigned 32-bit integer WSP header Content-Range: position of first byte
wsp.header.content_type Content-Type String WSP header Content-Type
wsp.header.content_uri Content-Uri String WSP header Content-Uri
wsp.header.cookie Cookie String WSP header Cookie
wsp.header.date Date String WSP header Date
wsp.header.encoding_version Encoding-Version String WSP header Encoding-Version
wsp.header.etag ETag String WSP header ETag
wsp.header.expect Expect String WSP header Expect
wsp.header.expires Expires String WSP header Expires
wsp.header.from From String WSP header From
wsp.header.host Host String WSP header Host
wsp.header.if_match If-Match String WSP header If-Match
wsp.header.if_modified_since If-Modified-Since String WSP header If-Modified-Since
wsp.header.if_none_match If-None-Match String WSP header If-None-Match
wsp.header.if_range If-Range String WSP header If-Range
wsp.header.if_unmodified_since If-Unmodified-Since String WSP header If-Unmodified-Since
wsp.header.initiator_uri Initiator-Uri String WSP header Initiator-Uri
wsp.header.last_modified Last-Modified String WSP header Last-Modified
wsp.header.location Location String WSP header Location
wsp.header.max_forwards Max-Forwards String WSP header Max-Forwards
wsp.header.name Header name String Name of the WSP header
wsp.header.pragma Pragma String WSP header Pragma
wsp.header.profile Profile String WSP header Profile
wsp.header.profile_diff Profile-Diff String WSP header Profile-Diff
wsp.header.profile_warning Profile-Warning String WSP header Profile-Warning
wsp.header.proxy_authenticate Proxy-Authenticate String WSP header Proxy-Authenticate
wsp.header.proxy_authenticate.realm Authentication Realm String WSP header Proxy-Authenticate: used realm
wsp.header.proxy_authenticate.scheme Authentication Scheme String WSP header Proxy-Authenticate: used scheme
wsp.header.proxy_authorization Proxy-Authorization String WSP header Proxy-Authorization
wsp.header.proxy_authorization.password Password String WSP header Proxy-Authorization: password for basic authorization
wsp.header.proxy_authorization.scheme Authorization Scheme String WSP header Proxy-Authorization: used scheme
wsp.header.proxy_authorization.user_id User-id String WSP header Proxy-Authorization: user ID for basic authorization
wsp.header.public Public String WSP header Public
wsp.header.push_flag Push-Flag String WSP header Push-Flag
wsp.header.push_flag.authenticated Initiator URI is authenticated Unsigned 8-bit integer The X-Wap-Initiator-URI has been authenticated.
wsp.header.push_flag.last Last push message Unsigned 8-bit integer Indicates whether this is the last push message.
wsp.header.push_flag.trusted Content is trusted Unsigned 8-bit integer The push content is trusted.
wsp.header.range Range String WSP header Range
wsp.header.range.first_byte_pos First-byte-position Unsigned 32-bit integer WSP header Range: position of first byte
wsp.header.range.last_byte_pos Last-byte-position Unsigned 32-bit integer WSP header Range: position of last byte
wsp.header.range.suffix_length Suffix-length Unsigned 32-bit integer WSP header Range: length of the suffix
wsp.header.referer Referer String WSP header Referer
wsp.header.retry_after Retry-After String WSP header Retry-After
wsp.header.server Server String WSP header Server
wsp.header.set_cookie Set-Cookie String WSP header Set-Cookie
wsp.header.te Te String WSP header Te
wsp.header.trailer Trailer String WSP header Trailer
wsp.header.transfer_encoding Transfer-Encoding String WSP header Transfer-Encoding
wsp.header.upgrade Upgrade String WSP header Upgrade
wsp.header.user_agent User-Agent String WSP header User-Agent
wsp.header.vary Vary String WSP header Vary
wsp.header.via Via String WSP header Via
wsp.header.warning Warning String WSP header Warning
wsp.header.warning.agent Warning agent String WSP header Warning agent
wsp.header.warning.code Warning code Unsigned 8-bit integer WSP header Warning code
wsp.header.warning.text Warning text String WSP header Warning text
wsp.header.www_authenticate Www-Authenticate String WSP header Www-Authenticate
wsp.header.www_authenticate.realm Authentication Realm String WSP header WWW-Authenticate: used realm
wsp.header.www_authenticate.scheme Authentication Scheme String WSP header WWW-Authenticate: used scheme
wsp.header.x_up_1.x_up_devcap_em_size x-up-devcap-em-size String WSP Openwave header x-up-devcap-em-size
wsp.header.x_up_1.x_up_devcap_gui x-up-devcap-gui String WSP Openwave header x-up-devcap-gui
wsp.header.x_up_1.x_up_devcap_has_color x-up-devcap-has-color String WSP Openwave header x-up-devcap-has-color
wsp.header.x_up_1.x_up_devcap_immed_alert x-up-devcap-immed-alert String WSP Openwave header x-up-devcap-immed-alert
wsp.header.x_up_1.x_up_devcap_num_softkeys x-up-devcap-num-softkeys String WSP Openwave header x-up-devcap-num-softkeys
wsp.header.x_up_1.x_up_devcap_screen_chars x-up-devcap-screen-chars String WSP Openwave header x-up-devcap-screen-chars
wsp.header.x_up_1.x_up_devcap_screen_depth x-up-devcap-screen-depth String WSP Openwave header x-up-devcap-screen-depth
wsp.header.x_up_1.x_up_devcap_screen_pixels x-up-devcap-screen-pixels String WSP Openwave header x-up-devcap-screen-pixels
wsp.header.x_up_1.x_up_devcap_softkey_size x-up-devcap-softkey-size String WSP Openwave header x-up-devcap-softkey-size
wsp.header.x_up_1.x_up_proxy_ba_enable x-up-proxy-ba-enable String WSP Openwave header x-up-proxy-ba-enable
wsp.header.x_up_1.x_up_proxy_ba_realm x-up-proxy-ba-realm String WSP Openwave header x-up-proxy-ba-realm
wsp.header.x_up_1.x_up_proxy_bookmark x-up-proxy-bookmark String WSP Openwave header x-up-proxy-bookmark
wsp.header.x_up_1.x_up_proxy_enable_trust x-up-proxy-enable-trust String WSP Openwave header x-up-proxy-enable-trust
wsp.header.x_up_1.x_up_proxy_home_page x-up-proxy-home-page String WSP Openwave header x-up-proxy-home-page
wsp.header.x_up_1.x_up_proxy_linger x-up-proxy-linger String WSP Openwave header x-up-proxy-linger
wsp.header.x_up_1.x_up_proxy_net_ask x-up-proxy-net-ask String WSP Openwave header x-up-proxy-net-ask
wsp.header.x_up_1.x_up_proxy_notify x-up-proxy-notify String WSP Openwave header x-up-proxy-notify
wsp.header.x_up_1.x_up_proxy_operator_domain x-up-proxy-operator-domain String WSP Openwave header x-up-proxy-operator-domain
wsp.header.x_up_1.x_up_proxy_push_accept x-up-proxy-push-accept String WSP Openwave header x-up-proxy-push-accept
wsp.header.x_up_1.x_up_proxy_push_seq x-up-proxy-push-seq String WSP Openwave header x-up-proxy-push-seq
wsp.header.x_up_1.x_up_proxy_redirect_enable x-up-proxy-redirect-enable String WSP Openwave header x-up-proxy-redirect-enable
wsp.header.x_up_1.x_up_proxy_redirect_status x-up-proxy-redirect-status String WSP Openwave header x-up-proxy-redirect-status
wsp.header.x_up_1.x_up_proxy_request_uri x-up-proxy-request-uri String WSP Openwave header x-up-proxy-request-uri
wsp.header.x_up_1.x_up_proxy_tod x-up-proxy-tod String WSP Openwave header x-up-proxy-tod
wsp.header.x_up_1.x_up_proxy_trans_charset x-up-proxy-trans-charset String WSP Openwave header x-up-proxy-trans-charset
wsp.header.x_up_1.x_up_proxy_trust x-up-proxy-trust String WSP Openwave header x-up-proxy-trust
wsp.header.x_up_1.x_up_proxy_uplink_version x-up-proxy-uplink-version String WSP Openwave header x-up-proxy-uplink-version
wsp.header.x_wap_application_id X-Wap-Application-Id String WSP header X-Wap-Application-Id
wsp.header.x_wap_security X-Wap-Security String WSP header X-Wap-Security
wsp.header.x_wap_tod X-Wap-Tod String WSP header X-Wap-Tod
wsp.headers Headers No value Headers
wsp.headers_length Headers Length Unsigned 32-bit integer Length of Headers field (bytes)
wsp.multipart Part Unsigned 32-bit integer MIME part of multipart data.
wsp.multipart.data Data in this part No value The data of 1 MIME-multipart part.
wsp.parameter.charset Charset String Charset parameter
wsp.parameter.comment Comment String Comment parameter
wsp.parameter.domain Domain String Domain parameter
wsp.parameter.filename Filename String Filename parameter
wsp.parameter.level Level String Level parameter
wsp.parameter.mac MAC String MAC parameter (Content-Type: application/vnd.wap.connectivity-wbxml)
wsp.parameter.name Name String Name parameter
wsp.parameter.path Path String Path parameter
wsp.parameter.q Q String Q parameter
wsp.parameter.sec SEC Unsigned 8-bit integer SEC parameter (Content-Type: application/vnd.wap.connectivity-wbxml)
wsp.parameter.size Size Unsigned 32-bit integer Size parameter
wsp.parameter.start Start String Start parameter
wsp.parameter.start_info Start-info String Start-info parameter
wsp.parameter.type Type Unsigned 32-bit integer Type parameter
wsp.parameter.upart.type Type String Multipart type parameter
wsp.pdu_type PDU Type Unsigned 8-bit integer PDU Type
wsp.post.data Data (Post) No value Post Data
wsp.push.data Push Data No value Push Data
wsp.redirect.addresses Redirect Addresses No value List of Redirect Addresses
wsp.redirect.flags Flags Unsigned 8-bit integer Redirect Flags
wsp.redirect.flags.permanent Permanent Redirect Boolean Permanent Redirect
wsp.redirect.flags.reuse_security_session Reuse Security Session Boolean If set, the existing Security Session may be reused
wsp.reply.data Data No value Data
wsp.reply.status Status Unsigned 8-bit integer Reply Status
wsp.server.session_id Server Session ID Unsigned 32-bit integer Server Session ID
wsp.uri URI String URI
wsp.uri_length URI Length Unsigned 32-bit integer Length of URI field
wsp.version.major Version (Major) Unsigned 8-bit integer Version (Major)
wsp.version.minor Version (Minor) Unsigned 8-bit integer Version (Minor)
wtp.RID Re-transmission Indicator Boolean Re-transmission Indicator
wtp.TID Transaction ID Unsigned 16-bit integer Transaction ID
wtp.TID.response TID Response Boolean TID Response
wtp.abort.reason.provider Abort Reason Unsigned 8-bit integer Abort Reason
wtp.abort.reason.user Abort Reason Unsigned 8-bit integer Abort Reason
wtp.abort.type Abort Type Unsigned 8-bit integer Abort Type
wtp.ack.tvetok Tve/Tok flag Boolean Tve/Tok flag
wtp.continue_flag Continue Flag Boolean Continue Flag
wtp.fragment WTP Fragment Frame number WTP Fragment
wtp.fragment.error Defragmentation error Frame number Defragmentation error due to illegal fragments
wtp.fragment.multipletails Multiple tail fragments found Boolean Several tails were found when defragmenting the packet
wtp.fragment.overlap Fragment overlap Boolean Fragment overlaps with other fragments
wtp.fragment.overlap.conflict Conflicting data in fragment overlap Boolean Overlapping fragments contained conflicting data
wtp.fragment.toolongfragment Fragment too long Boolean Fragment contained data past end of packet
wtp.fragments WTP Fragments No value WTP Fragments
wtp.header.TIDNew TIDNew Boolean TIDNew
wtp.header.UP U/P flag Boolean U/P Flag
wtp.header.missing_packets Missing Packets Unsigned 8-bit integer Missing Packets
wtp.header.sequence Packet Sequence Number Unsigned 8-bit integer Packet Sequence Number
wtp.header.version Version Unsigned 8-bit integer Version
wtp.header_data Data Byte array Data
wtp.header_variable_part Header: Variable part Byte array Variable part of the header
wtp.inv.reserved Reserved Unsigned 8-bit integer Reserved
wtp.inv.transaction_class Transaction Class Unsigned 8-bit integer Transaction Class
wtp.pdu_type PDU Type Unsigned 8-bit integer PDU Type
wtp.reassembled.in Reassembled in Frame number WTP fragments are reassembled in the given packet
wtp.sub_pdu_size Sub PDU size Unsigned 16-bit integer Size of Sub-PDU (bytes)
wtp.tpi TPI Unsigned 8-bit integer Identification of the Transport Information Item
wtp.tpi.info Information No value The information being send by this TPI
wtp.tpi.opt Option Unsigned 8-bit integer The given option for this TPI
wtp.tpi.opt.val Option Value No value The value that is supplied with this option
wtp.tpi.psn Packet sequence number Unsigned 8-bit integer Sequence number of this packet
wtp.trailer_flags Trailer Flags Unsigned 8-bit integer Trailer Flags
wtls.alert Alert No value Alert
wtls.alert.description Description Unsigned 8-bit integer Description
wtls.alert.level Level Unsigned 8-bit integer Level
wtls.handshake Handshake Unsigned 8-bit integer Handshake
wtls.handshake.certificate Certificate No value Certificate
wtls.handshake.certificate.after Valid not after Date/Time stamp Valid not after
wtls.handshake.certificate.before Valid not before Date/Time stamp Valid not before
wtls.handshake.certificate.issuer.charset Charset Unsigned 16-bit integer Charset
wtls.handshake.certificate.issuer.name Name String Name
wtls.handshake.certificate.issuer.size Size Unsigned 8-bit integer Size
wtls.handshake.certificate.issuer.type Issuer Unsigned 8-bit integer Issuer
wtls.handshake.certificate.parameter Parameter Set String Parameter Set
wtls.handshake.certificate.parameter_index Parameter Index Unsigned 8-bit integer Parameter Index
wtls.handshake.certificate.public.type Public Key Type Unsigned 8-bit integer Public Key Type
wtls.handshake.certificate.rsa.exponent RSA Exponent Size Unsigned 32-bit integer RSA Exponent Size
wtls.handshake.certificate.rsa.modules RSA Modulus Size Unsigned 32-bit integer RSA Modulus Size
wtls.handshake.certificate.signature.signature Signature Size Unsigned 32-bit integer Signature Size
wtls.handshake.certificate.signature.type Signature Type Unsigned 8-bit integer Signature Type
wtls.handshake.certificate.subject.charset Charset Unsigned 16-bit integer Charset
wtls.handshake.certificate.subject.name Name String Name
wtls.handshake.certificate.subject.size Size Unsigned 8-bit integer Size
wtls.handshake.certificate.subject.type Subject Unsigned 8-bit integer Subject
wtls.handshake.certificate.type Type Unsigned 8-bit integer Type
wtls.handshake.certificate.version Version Unsigned 8-bit integer Version
wtls.handshake.certificates Certificates No value Certificates
wtls.handshake.client_hello Client Hello No value Client Hello
wtls.handshake.client_hello.cipher Cipher String Cipher
wtls.handshake.client_hello.ciphers Cipher Suites No value Cipher Suite
wtls.handshake.client_hello.client_keys_id Client Keys No value Client Keys
wtls.handshake.client_hello.client_keys_len Length Unsigned 16-bit integer Length
wtls.handshake.client_hello.comp_methods Compression Methods No value Compression Methods
wtls.handshake.client_hello.compression Compression Unsigned 8-bit integer Compression
wtls.handshake.client_hello.gmt Time GMT Date/Time stamp Time GMT
wtls.handshake.client_hello.ident_charset Identifier CharSet Unsigned 16-bit integer Identifier CharSet
wtls.handshake.client_hello.ident_name Identifier Name String Identifier Name
wtls.handshake.client_hello.ident_size Identifier Size Unsigned 8-bit integer Identifier Size
wtls.handshake.client_hello.ident_type Identifier Type Unsigned 8-bit integer Identifier Type
wtls.handshake.client_hello.identifier Identifier No value Identifier
wtls.handshake.client_hello.key.key_exchange Key Exchange Unsigned 8-bit integer Key Exchange
wtls.handshake.client_hello.key.key_exchange.suite Suite Unsigned 8-bit integer Suite
wtls.handshake.client_hello.parameter Parameter Set String Parameter Set
wtls.handshake.client_hello.parameter_index Parameter Index Unsigned 8-bit integer Parameter Index
wtls.handshake.client_hello.random Random No value Random
wtls.handshake.client_hello.refresh Refresh Unsigned 8-bit integer Refresh
wtls.handshake.client_hello.sequence_mode Sequence Mode Unsigned 8-bit integer Sequence Mode
wtls.handshake.client_hello.session.str Session ID String Session ID
wtls.handshake.client_hello.sessionid Session ID Unsigned 32-bit integer Session ID
wtls.handshake.client_hello.trusted_keys_id Trusted Keys No value Trusted Keys
wtls.handshake.client_hello.version Version Unsigned 8-bit integer Version
wtls.handshake.length Length Unsigned 16-bit integer Length
wtls.handshake.server_hello Server Hello No value Server Hello
wtls.handshake.server_hello.cipher Cipher No value Cipher
wtls.handshake.server_hello.cipher.bulk Cipher Bulk Unsigned 8-bit integer Cipher Bulk
wtls.handshake.server_hello.cipher.mac Cipher MAC Unsigned 8-bit integer Cipher MAC
wtls.handshake.server_hello.compression Compression Unsigned 8-bit integer Compression
wtls.handshake.server_hello.gmt Time GMT Date/Time stamp Time GMT
wtls.handshake.server_hello.key Client Key ID Unsigned 8-bit integer Client Key ID
wtls.handshake.server_hello.random Random No value Random
wtls.handshake.server_hello.refresh Refresh Unsigned 8-bit integer Refresh
wtls.handshake.server_hello.sequence_mode Sequence Mode Unsigned 8-bit integer Sequence Mode
wtls.handshake.server_hello.session.str Session ID String Session ID
wtls.handshake.server_hello.sessionid Session ID Unsigned 32-bit integer Session ID
wtls.handshake.server_hello.version Version Unsigned 8-bit integer Version
wtls.handshake.type Type Unsigned 8-bit integer Type
wtls.rec_cipher Record Ciphered No value Record Ciphered
wtls.rec_length Record Length Unsigned 16-bit integer Record Length
wtls.rec_seq Record Sequence Unsigned 16-bit integer Record Sequence
wtls.rec_type Record Type Unsigned 8-bit integer Record Type
wtls.record Record Unsigned 8-bit integer Record
xdmcp.authentication_name Authentication name String Authentication name
xdmcp.authorization_name Authorization name String Authorization name
xdmcp.display_number Display number Unsigned 16-bit integer Display number
xdmcp.hostname Hostname String Hostname
xdmcp.length Message length Unsigned 16-bit integer Length of the remaining message
xdmcp.opcode Opcode Unsigned 16-bit integer Opcode
xdmcp.session_id Session ID Unsigned 32-bit integer Session identifier
xdmcp.status Status String Status
xdmcp.version Version Unsigned 16-bit integer Protocol version
x.25.a A Bit Boolean Address Bit
x.25.d D Bit Boolean Delivery Confirmation Bit
x.25.gfi GFI Unsigned 16-bit integer General format identifier
x.25.lcn Logical Channel Unsigned 16-bit integer Logical Channel Number
x.25.m M Bit Boolean More Bit
x.25.mod Modulo Unsigned 16-bit integer Specifies whether the frame is modulo 8 or 128
x.25.p_r P(R) Unsigned 8-bit integer Packet Receive Sequence Number
x.25.p_s P(S) Unsigned 8-bit integer Packet Send Sequence Number
x.25.q Q Bit Boolean Qualifier Bit
x.25.type Packet Type Unsigned 8-bit integer Packet Type
x25.fragment X.25 Fragment Frame number X25 Fragment
x25.fragment.error Defragmentation error Frame number Defragmentation error due to illegal fragments
x25.fragment.multipletails Multiple tail fragments found Boolean Several tails were found when defragmenting the packet
x25.fragment.overlap Fragment overlap Boolean Fragment overlaps with other fragments
x25.fragment.overlap.conflict Conflicting data in fragment overlap Boolean Overlapping fragments contained conflicting data
x25.fragment.toolongfragment Fragment too long Boolean Fragment contained data past end of packet
x25.fragments X.25 Fragments No value X.25 Fragments
xot.length Length Unsigned 16-bit integer Length of X.25 over TCP packet
xot.version Version Unsigned 16-bit integer Version of X.25 over TCP protocol
x29.error_type Error type Unsigned 8-bit integer X.29 error PAD message error type
x29.inv_msg_code Invalid message code Unsigned 8-bit integer X.29 Error PAD message invalid message code
x29.msg_code Message code Unsigned 8-bit integer X.29 PAD message code
x509af.AttributeCertificate AttributeCertificate No value AttributeCertificate
x509af.Certificate Certificate No value Certificate
x509af.CertificateList CertificateList No value CertificateList
x509af.CertificatePair CertificatePair No value CertificatePair
x509af.CrossCertificates_item Item No value CrossCertificates/_item
x509af.Extensions_item Item No value Extensions/_item
x509af.ForwardCertificationPath_item Item No value ForwardCertificationPath/_item
x509af.acPath acPath No value AttributeCertificationPath/acPath
x509af.acPath_item Item No value AttributeCertificationPath/acPath/_item
x509af.algorithm algorithm No value SubjectPublicKeyInfo/algorithm
x509af.algorithm.id Algorithm Id String Algorithm Id
x509af.algorithmId algorithmId String AlgorithmIdentifier/algorithmId
x509af.algorithmIdentifier algorithmIdentifier No value
x509af.attCertValidity attCertValidity String AttributeCertificateAssertion/attCertValidity
x509af.attCertValidityPeriod attCertValidityPeriod No value AttributeCertificateInfo/attCertValidityPeriod
x509af.attType attType No value AttributeCertificateAssertion/attType
x509af.attType_item Item String AttributeCertificateAssertion/attType/_item
x509af.attributeCertificate attributeCertificate No value
x509af.attributes attributes No value AttributeCertificateInfo/attributes
x509af.attributes_item Item No value AttributeCertificateInfo/attributes/_item
x509af.baseCertificateID baseCertificateID No value
x509af.certificate certificate No value ACPathData/certificate
x509af.certificationPath certificationPath No value Certificates/certificationPath
x509af.critical critical Boolean Extension/critical
x509af.crlEntryExtensions crlEntryExtensions No value CertificateList/signedCertificateList/revokedCertificates/_item/crlEntryExtensions
x509af.crlExtensions crlExtensions No value CertificateList/signedCertificateList/crlExtensions
x509af.encrypted encrypted Byte array
x509af.extension.id Extension Id String Extension Id
x509af.extensions extensions No value
x509af.extnId extnId String Extension/extnId
x509af.extnValue extnValue Byte array Extension/extnValue
x509af.generalizedTime generalizedTime String Time/generalizedTime
x509af.issuedByThisCA issuedByThisCA No value CertificatePair/issuedByThisCA
x509af.issuedToThisCA issuedToThisCA No value CertificatePair/issuedToThisCA
x509af.issuer issuer Unsigned 32-bit integer
x509af.issuerUID issuerUID Byte array IssuerSerial/issuerUID
x509af.issuerUniqueID issuerUniqueID Byte array AttributeCertificateInfo/issuerUniqueID
x509af.issuerUniqueIdentifier issuerUniqueIdentifier Byte array Certificate/signedCertificate/issuerUniqueIdentifier
x509af.nextUpdate nextUpdate Unsigned 32-bit integer CertificateList/signedCertificateList/nextUpdate
x509af.notAfter notAfter Unsigned 32-bit integer Validity/notAfter
x509af.notAfterTime notAfterTime String AttCertValidityPeriod/notAfterTime
x509af.notBefore notBefore Unsigned 32-bit integer Validity/notBefore
x509af.notBeforeTime notBeforeTime String AttCertValidityPeriod/notBeforeTime
x509af.parameters parameters No value AlgorithmIdentifier/parameters
x509af.revocationDate revocationDate Unsigned 32-bit integer CertificateList/signedCertificateList/revokedCertificates/_item/revocationDate
x509af.revokedCertificates revokedCertificates No value CertificateList/signedCertificateList/revokedCertificates
x509af.revokedCertificates_item Item No value CertificateList/signedCertificateList/revokedCertificates/_item
x509af.serial serial Signed 32-bit integer IssuerSerial/serial
x509af.serialNumber serialNumber Signed 32-bit integer
x509af.signature signature No value
x509af.signedAttributeCertificateInfo signedAttributeCertificateInfo No value AttributeCertificate/signedAttributeCertificateInfo
x509af.signedCertificate signedCertificate No value Certificate/signedCertificate
x509af.signedCertificateList signedCertificateList No value CertificateList/signedCertificateList
x509af.subject subject Unsigned 32-bit integer Certificate/signedCertificate/subject
x509af.subjectName subjectName No value AttributeCertificateInfo/subject/subjectName
x509af.subjectPublicKey subjectPublicKey Byte array SubjectPublicKeyInfo/subjectPublicKey
x509af.subjectPublicKeyInfo subjectPublicKeyInfo No value Certificate/signedCertificate/subjectPublicKeyInfo
x509af.subjectUniqueIdentifier subjectUniqueIdentifier Byte array Certificate/signedCertificate/subjectUniqueIdentifier
x509af.theCACertificates theCACertificates No value CertificationPath/theCACertificates
x509af.theCACertificates_item Item No value CertificationPath/theCACertificates/_item
x509af.thisUpdate thisUpdate Unsigned 32-bit integer CertificateList/signedCertificateList/thisUpdate
x509af.userCertificate userCertificate No value
x509af.utcTime utcTime String Time/utcTime
x509af.validity validity No value Certificate/signedCertificate/validity
x509af.version version Signed 32-bit integer
x509ce.AttributesSyntax AttributesSyntax No value AttributesSyntax
x509ce.AttributesSyntax_item Item No value AttributesSyntax/_item
x509ce.AuthorityKeyIdentifier AuthorityKeyIdentifier No value AuthorityKeyIdentifier
x509ce.BaseCRLNumber BaseCRLNumber Unsigned 32-bit integer BaseCRLNumber
x509ce.BasicConstraintsSyntax BasicConstraintsSyntax No value BasicConstraintsSyntax
x509ce.CRLDistPointsSyntax CRLDistPointsSyntax No value CRLDistPointsSyntax
x509ce.CRLDistPointsSyntax_item Item No value CRLDistPointsSyntax/_item
x509ce.CRLNumber CRLNumber Unsigned 32-bit integer CRLNumber
x509ce.CRLReason CRLReason Unsigned 32-bit integer CRLReason
x509ce.CRLScopeSyntax CRLScopeSyntax No value CRLScopeSyntax
x509ce.CRLScopeSyntax_item Item No value CRLScopeSyntax/_item
x509ce.CRLStreamIdentifier CRLStreamIdentifier Unsigned 32-bit integer CRLStreamIdentifier
x509ce.CertPolicySet_item Item String CertPolicySet/_item
x509ce.CertificatePoliciesSyntax CertificatePoliciesSyntax No value CertificatePoliciesSyntax
x509ce.CertificatePoliciesSyntax_item Item No value CertificatePoliciesSyntax/_item
x509ce.DeltaInformation DeltaInformation No value DeltaInformation
x509ce.GeneralNames GeneralNames No value GeneralNames
x509ce.GeneralNames_item Item Unsigned 32-bit integer GeneralNames/_item
x509ce.GeneralSubtrees_item Item No value GeneralSubtrees/_item
x509ce.HoldInstruction HoldInstruction String HoldInstruction
x509ce.IPAddress iPAddress IPv4 address IP Address
x509ce.IssuingDistPointSyntax IssuingDistPointSyntax No value IssuingDistPointSyntax
x509ce.KeyPurposeIDs KeyPurposeIDs No value KeyPurposeIDs
x509ce.KeyPurposeIDs_item Item String KeyPurposeIDs/_item
x509ce.KeyUsage KeyUsage Byte array KeyUsage
x509ce.NameConstraintsSyntax NameConstraintsSyntax No value NameConstraintsSyntax
x509ce.OrderedListSyntax OrderedListSyntax Unsigned 32-bit integer OrderedListSyntax
x509ce.PolicyConstraintsSyntax PolicyConstraintsSyntax No value PolicyConstraintsSyntax
x509ce.PolicyMappingsSyntax PolicyMappingsSyntax No value PolicyMappingsSyntax
x509ce.PolicyMappingsSyntax_item Item No value PolicyMappingsSyntax/_item
x509ce.PrivateKeyUsagePeriod PrivateKeyUsagePeriod No value PrivateKeyUsagePeriod
x509ce.SkipCerts SkipCerts Unsigned 32-bit integer SkipCerts
x509ce.StatusReferrals StatusReferrals No value StatusReferrals
x509ce.StatusReferrals_item Item Unsigned 32-bit integer StatusReferrals/_item
x509ce.SubjectKeyIdentifier SubjectKeyIdentifier Byte array SubjectKeyIdentifier
x509ce.aA aA Boolean
x509ce.aACompromise aACompromise Boolean
x509ce.affiliationChanged affiliationChanged Boolean
x509ce.authorityCertIssuer authorityCertIssuer No value AuthorityKeyIdentifier/authorityCertIssuer
x509ce.authorityCertSerialNumber authorityCertSerialNumber Signed 32-bit integer AuthorityKeyIdentifier/authorityCertSerialNumber
x509ce.authorityKeyIdentifier authorityKeyIdentifier No value
x509ce.authorityName authorityName Unsigned 32-bit integer PerAuthorityScope/authorityName
x509ce.base base Unsigned 32-bit integer GeneralSubtree/base
x509ce.baseRevocationInfo baseRevocationInfo No value PerAuthorityScope/baseRevocationInfo
x509ce.baseThisUpdate baseThisUpdate String BaseRevocationInfo/baseThisUpdate
x509ce.builtinNameForm builtinNameForm Unsigned 32-bit integer AltNameType/builtinNameForm
x509ce.cA cA Boolean BasicConstraintsSyntax/cA
x509ce.cACompromise cACompromise Boolean
x509ce.cRLIssuer cRLIssuer No value DistributionPoint/cRLIssuer
x509ce.cRLNumber cRLNumber Unsigned 32-bit integer BaseRevocationInfo/cRLNumber
x509ce.cRLReferral cRLReferral No value StatusReferral/cRLReferral
x509ce.cRLScope cRLScope No value CRLReferral/cRLScope
x509ce.cRLSign cRLSign Boolean
x509ce.cRLStreamIdentifier cRLStreamIdentifier Unsigned 32-bit integer BaseRevocationInfo/cRLStreamIdentifier
x509ce.certificateHold certificateHold Boolean
x509ce.cessationOfOperation cessationOfOperation Boolean
x509ce.containsAACerts containsAACerts Boolean IssuingDistPointSyntax/containsAACerts
x509ce.containsCACerts containsCACerts Boolean IssuingDistPointSyntax/containsCACerts
x509ce.containsSOAPublicKeyCerts containsSOAPublicKeyCerts Boolean IssuingDistPointSyntax/containsSOAPublicKeyCerts
x509ce.containsUserAttributeCerts containsUserAttributeCerts Boolean IssuingDistPointSyntax/containsUserAttributeCerts
x509ce.containsUserPublicKeyCerts containsUserPublicKeyCerts Boolean IssuingDistPointSyntax/containsUserPublicKeyCerts
x509ce.dNSName dNSName String GeneralName/dNSName
x509ce.dataEncipherment dataEncipherment Boolean
x509ce.decipherOnly decipherOnly Boolean
x509ce.deltaLocation deltaLocation Unsigned 32-bit integer
x509ce.deltaRefInfo deltaRefInfo No value CRLReferral/deltaRefInfo
x509ce.digitalSignature digitalSignature Boolean
x509ce.directoryName directoryName Unsigned 32-bit integer GeneralName/directoryName
x509ce.distributionPoint distributionPoint Unsigned 32-bit integer
x509ce.ediPartyName ediPartyName No value GeneralName/ediPartyName
x509ce.encipherOnly encipherOnly Boolean
x509ce.endingNumber endingNumber Signed 32-bit integer NumberRange/endingNumber
x509ce.excludedSubtrees excludedSubtrees No value NameConstraintsSyntax/excludedSubtrees
x509ce.firstIssuer firstIssuer Unsigned 32-bit integer PkiPathMatchSyntax/firstIssuer
x509ce.fullName fullName No value DistributionPointName/fullName
x509ce.iPAddress iPAddress Byte array GeneralName/iPAddress
x509ce.id Id String Object identifier Id
x509ce.id_ce_baseUpdateTime baseUpdateTime String baseUpdateTime
x509ce.id_ce_invalidityDate invalidityDate String invalidityDate
x509ce.indirectCRL indirectCRL Boolean IssuingDistPointSyntax/indirectCRL
x509ce.inhibitPolicyMapping inhibitPolicyMapping Unsigned 32-bit integer PolicyConstraintsSyntax/inhibitPolicyMapping
x509ce.issuedByThisCAAssertion issuedByThisCAAssertion No value CertificatePairExactAssertion/issuedByThisCAAssertion
x509ce.issuedToThisCAAssertion issuedToThisCAAssertion No value CertificatePairExactAssertion/issuedToThisCAAssertion
x509ce.issuer issuer Unsigned 32-bit integer CRLReferral/issuer
x509ce.issuerDomainPolicy issuerDomainPolicy String PolicyMappingsSyntax/_item/issuerDomainPolicy
x509ce.keyAgreement keyAgreement Boolean
x509ce.keyCertSign keyCertSign Boolean
x509ce.keyCompromise keyCompromise Boolean
x509ce.keyEncipherment keyEncipherment Boolean
x509ce.keyIdentifier keyIdentifier Byte array AuthorityKeyIdentifier/keyIdentifier
x509ce.keyUsage keyUsage Byte array CertificateAssertion/keyUsage
x509ce.lastChangedCRL lastChangedCRL String CRLReferral/lastChangedCRL
x509ce.lastDelta lastDelta String DeltaRefInfo/lastDelta
x509ce.lastSubject lastSubject Unsigned 32-bit integer PkiPathMatchSyntax/lastSubject
x509ce.lastUpdate lastUpdate String CRLReferral/lastUpdate
x509ce.location location Unsigned 32-bit integer CRLReferral/location
x509ce.maxCRLNumber maxCRLNumber Unsigned 32-bit integer CertificateListAssertion/maxCRLNumber
x509ce.maximum maximum Signed 32-bit integer GeneralSubtree/maximum
x509ce.minCRLNumber minCRLNumber Unsigned 32-bit integer CertificateListAssertion/minCRLNumber
x509ce.minimum minimum Signed 32-bit integer GeneralSubtree/minimum
x509ce.modulus modulus Signed 32-bit integer NumberRange/modulus
x509ce.nameAssigner nameAssigner String EDIPartyName/nameAssigner
x509ce.nameConstraints nameConstraints No value CertificateAssertion/nameConstraints
x509ce.nameRelativeToCRLIssuer nameRelativeToCRLIssuer No value DistributionPointName/nameRelativeToCRLIssuer
x509ce.nameSubtrees nameSubtrees No value PerAuthorityScope/nameSubtrees
x509ce.nextDelta nextDelta String DeltaInformation/nextDelta
x509ce.nonRepudiation nonRepudiation Boolean
x509ce.notAfter notAfter String PrivateKeyUsagePeriod/notAfter
x509ce.notBefore notBefore String PrivateKeyUsagePeriod/notBefore
x509ce.onlyContains onlyContains Byte array PerAuthorityScope/onlyContains
x509ce.onlySomeReasons onlySomeReasons Byte array
x509ce.otherNameForm otherNameForm String AltNameType/otherNameForm
x509ce.partyName partyName String EDIPartyName/partyName
x509ce.pathLenConstraint pathLenConstraint Signed 32-bit integer BasicConstraintsSyntax/pathLenConstraint
x509ce.pathToName pathToName Unsigned 32-bit integer CertificateAssertion/pathToName
x509ce.permittedSubtrees permittedSubtrees No value NameConstraintsSyntax/permittedSubtrees
x509ce.policy policy No value CertificateAssertion/policy
x509ce.policyIdentifier policyIdentifier String PolicyInformation/policyIdentifier
x509ce.policyQualifierId policyQualifierId String PolicyQualifierInfo/policyQualifierId
x509ce.policyQualifiers policyQualifiers No value PolicyInformation/policyQualifiers
x509ce.policyQualifiers_item Item No value PolicyInformation/policyQualifiers/_item
x509ce.privateKeyValid privateKeyValid String CertificateAssertion/privateKeyValid
x509ce.privilegeWithdrawn privilegeWithdrawn Boolean
x509ce.qualifier qualifier No value PolicyQualifierInfo/qualifier
x509ce.reasonFlags reasonFlags Byte array CertificateListAssertion/reasonFlags
x509ce.reasons reasons Byte array DistributionPoint/reasons
x509ce.registeredID registeredID String GeneralName/registeredID
x509ce.requireExplicitPolicy requireExplicitPolicy Unsigned 32-bit integer PolicyConstraintsSyntax/requireExplicitPolicy
x509ce.rfc822Name rfc822Name String GeneralName/rfc822Name
x509ce.sOAPublicKey sOAPublicKey Boolean
x509ce.serialNumber serialNumber Signed 32-bit integer
x509ce.serialNumberRange serialNumberRange No value PerAuthorityScope/serialNumberRange
x509ce.startingNumber startingNumber Signed 32-bit integer NumberRange/startingNumber
x509ce.subject subject Unsigned 32-bit integer CertificateAssertion/subject
x509ce.subjectAltName subjectAltName Unsigned 32-bit integer CertificateAssertion/subjectAltName
x509ce.subjectDomainPolicy subjectDomainPolicy String PolicyMappingsSyntax/_item/subjectDomainPolicy
x509ce.subjectKeyIdRange subjectKeyIdRange No value PerAuthorityScope/subjectKeyIdRange
x509ce.subjectKeyIdentifier subjectKeyIdentifier Byte array CertificateAssertion/subjectKeyIdentifier
x509ce.subjectPublicKeyAlgID subjectPublicKeyAlgID String CertificateAssertion/subjectPublicKeyAlgID
x509ce.superseded superseded Boolean
x509ce.uniformResourceIdentifier uniformResourceIdentifier String GeneralName/uniformResourceIdentifier
x509ce.unused unused Boolean
x509ce.userAttribute userAttribute Boolean
x509ce.userPublicKey userPublicKey Boolean
x509if.RDNSequence_item Item No value RDNSequence/_item
x509if.RelativeDistinguishedName_item Item No value RelativeDistinguishedName/_item
x509if.additionalControl additionalControl No value
x509if.additionalControl_item Item String
x509if.allContexts allContexts No value AttributeValueAssertion/assertedContexts/allContexts
x509if.allowedSubset allowedSubset Byte array
x509if.and and No value Refinement/and
x509if.and_item Item Unsigned 32-bit integer Refinement/and/_item
x509if.assertedContexts assertedContexts Unsigned 32-bit integer AttributeValueAssertion/assertedContexts
x509if.assertedContexts_item Item No value AttributeTypeAssertion/assertedContexts/_item
x509if.assertion assertion No value AttributeValueAssertion/assertion
x509if.attribute attribute String
x509if.attributeCombination attributeCombination Unsigned 32-bit integer
x509if.attributeType attributeType String
x509if.auxiliaries auxiliaries No value DITContentRule/auxiliaries
x509if.auxiliaries_item Item String DITContentRule/auxiliaries/_item
x509if.base base No value SubtreeSpecification/base
x509if.baseObject baseObject Boolean
x509if.basic basic No value RelaxationPolicy/basic
x509if.chopAfter chopAfter No value
x509if.chopBefore chopBefore No value
x509if.context context String ContextCombination/context
x509if.contextCombination contextCombination Unsigned 32-bit integer RequestAttribute/contextCombination
x509if.contextList contextList No value
x509if.contextList_item Item No value
x509if.contextType contextType String
x509if.contextValue contextValue No value ContextProfile/contextValue
x509if.contextValue_item Item No value ContextProfile/contextValue/_item
x509if.contextValues contextValues No value Context/contextValues
x509if.contextValues_item Item No value Context/contextValues/_item
x509if.contexts contexts No value
x509if.contexts_item Item No value
x509if.default default Signed 32-bit integer EntryLimit/default
x509if.defaultControls defaultControls No value
x509if.defaultValues defaultValues No value RequestAttribute/defaultValues
x509if.defaultValues_item Item No value RequestAttribute/defaultValues/_item
x509if.description description String SearchRuleDescription/description
x509if.distingAttrValue distingAttrValue No value AttributeTypeAndDistinguishedValue/valuesWithContext/_item/distingAttrValue
x509if.dmdId dmdId String
x509if.entryLimit entryLimit No value
x509if.entryType entryType String RequestAttribute/defaultValues/_item/entryType
x509if.fallback fallback Boolean Context/fallback
x509if.id Id String Object identifier Id
x509if.imposedSubset imposedSubset Unsigned 32-bit integer
x509if.includeSubtypes includeSubtypes Boolean RequestAttribute/includeSubtypes
x509if.inputAttributeTypes inputAttributeTypes No value
x509if.inputAttributeTypes_item Item No value
x509if.item item String Refinement/item
x509if.level level Signed 32-bit integer Mapping/level
x509if.mandatory mandatory No value DITContentRule/mandatory
x509if.mandatoryContexts mandatoryContexts No value DITContextUse/mandatoryContexts
x509if.mandatoryContexts_item Item String DITContextUse/mandatoryContexts/_item
x509if.mandatoryControls mandatoryControls No value
x509if.mandatory_item Item String DITContentRule/mandatory/_item
x509if.mapping mapping No value MRMapping/mapping
x509if.mappingFunction mappingFunction String Mapping/mappingFunction
x509if.mapping_item Item No value MRMapping/mapping/_item
x509if.matchedValuesOnly matchedValuesOnly No value
x509if.matchingUse matchingUse No value RequestAttribute/matchingUse
x509if.matchingUse_item Item No value RequestAttribute/matchingUse/_item
x509if.max max Signed 32-bit integer EntryLimit/max
x509if.maximum maximum Signed 32-bit integer
x509if.minimum minimum Signed 32-bit integer
x509if.name name No value SearchRuleDescription/name
x509if.nameForm nameForm String DITStructureRule/nameForm
x509if.name_item Item String SearchRuleDescription/name/_item
x509if.newMatchingRule newMatchingRule String MRSubstitution/newMatchingRule
x509if.not not Unsigned 32-bit integer Refinement/not
x509if.obsolete obsolete Boolean SearchRuleDescription/obsolete
x509if.oldMatchingRule oldMatchingRule String MRSubstitution/oldMatchingRule
x509if.oneLevel oneLevel Boolean
x509if.optional optional No value DITContentRule/optional
x509if.optionalContexts optionalContexts No value DITContextUse/optionalContexts
x509if.optionalContexts_item Item String DITContextUse/optionalContexts/_item
x509if.optional_item Item String DITContentRule/optional/_item
x509if.or or No value Refinement/or
x509if.or_item Item Unsigned 32-bit integer Refinement/or/_item
x509if.outputAttributeTypes outputAttributeTypes No value
x509if.outputAttributeTypes_item Item No value
x509if.outputValues outputValues Unsigned 32-bit integer ResultAttribute/outputValues
x509if.precluded precluded No value DITContentRule/precluded
x509if.precluded_item Item String DITContentRule/precluded/_item
x509if.primaryDistinguished primaryDistinguished Boolean AttributeTypeAndDistinguishedValue/primaryDistinguished
x509if.rdnSequence rdnSequence No value Name/rdnSequence
x509if.relaxation relaxation No value
x509if.relaxations relaxations No value RelaxationPolicy/relaxations
x509if.relaxations_item Item No value RelaxationPolicy/relaxations/_item
x509if.restrictionType restrictionType String MatchingUse/restrictionType
x509if.restrictionValue restrictionValue No value MatchingUse/restrictionValue
x509if.ruleIdentifier ruleIdentifier Signed 32-bit integer DITStructureRule/ruleIdentifier
x509if.searchRuleControls searchRuleControls No value
x509if.selectedContexts selectedContexts No value AttributeValueAssertion/assertedContexts/selectedContexts
x509if.selectedContexts_item Item No value AttributeValueAssertion/assertedContexts/selectedContexts/_item
x509if.selectedValues selectedValues No value RequestAttribute/selectedValues
x509if.selectedValues_item Item No value RequestAttribute/selectedValues/_item
x509if.serviceType serviceType String
x509if.specificExclusions specificExclusions No value SubtreeSpecification/specificExclusions
x509if.specificExclusions_item Item Unsigned 32-bit integer SubtreeSpecification/specificExclusions/_item
x509if.specificationFilter specificationFilter Unsigned 32-bit integer SubtreeSpecification/specificationFilter
x509if.structuralObjectClass structuralObjectClass String DITContentRule/structuralObjectClass
x509if.substitution substitution No value MRMapping/substitution
x509if.substitution_item Item No value MRMapping/substitution/_item
x509if.superiorStructureRules superiorStructureRules No value DITStructureRule/superiorStructureRules
x509if.superiorStructureRules_item Item Signed 32-bit integer DITStructureRule/superiorStructureRules/_item
x509if.tightenings tightenings No value RelaxationPolicy/tightenings
x509if.tightenings_item Item No value RelaxationPolicy/tightenings/_item
x509if.type type String
x509if.userClass userClass Signed 32-bit integer
x509if.value value No value Attribute/valuesWithContext/_item/value
x509if.values values No value Attribute/values
x509if.valuesWithContext valuesWithContext No value Attribute/valuesWithContext
x509if.valuesWithContext_item Item No value Attribute/valuesWithContext/_item
x509if.values_item Item No value Attribute/values/_item
x509if.wholeSubtree wholeSubtree Boolean
x509sat.CaseIgnoreListMatch_item Item String CaseIgnoreListMatch/_item
x509sat.CountryName CountryName String CountryName
x509sat.DirectoryString DirectoryString String DirectoryString
x509sat.OctetSubstringAssertion_item Item Unsigned 32-bit integer OctetSubstringAssertion/_item
x509sat.PostalAddress_item Item String PostalAddress/_item
x509sat.PreferredDeliveryMethod_item Item Signed 32-bit integer PreferredDeliveryMethod/_item
x509sat.SubstringAssertion_item Item Unsigned 32-bit integer SubstringAssertion/_item
x509sat.TelephoneNumber TelephoneNumber String TelephoneNumber
x509sat.TelexNumber TelexNumber No value TelexNumber
x509sat.ZonalSelect_item Item String ZonalSelect/_item
x509sat.absolute absolute No value TimeSpecification/time/absolute
x509sat.allMonths allMonths No value Period/months/allMonths
x509sat.allWeeks allWeeks No value Period/weeks/allWeeks
x509sat.and and No value Criteria/and
x509sat.and_item Item Unsigned 32-bit integer Criteria/and/_item
x509sat.answerback answerback String TelexNumber/answerback
x509sat.any any String SubstringAssertion/_item/any
x509sat.approximateMatch approximateMatch String CriteriaItem/approximateMatch
x509sat.april april Boolean
x509sat.at at String TimeAssertion/at
x509sat.attributeList attributeList No value MultipleMatchingLocalities/attributeList
x509sat.attributeList_item Item No value MultipleMatchingLocalities/attributeList/_item
x509sat.august august Boolean
x509sat.between between No value TimeAssertion/between
x509sat.bitDay bitDay Byte array Period/days/bitDay
x509sat.bitMonth bitMonth Byte array Period/months/bitMonth
x509sat.bitNamedDays bitNamedDays Byte array NamedDay/bitNamedDays
x509sat.bitWeek bitWeek Byte array Period/weeks/bitWeek
x509sat.control control No value SubstringAssertion/_item/control
x509sat.countryCode countryCode String TelexNumber/countryCode
x509sat.criteria criteria Unsigned 32-bit integer EnhancedGuide/criteria
x509sat.dayOf dayOf Unsigned 32-bit integer Period/days/dayOf
x509sat.days days Unsigned 32-bit integer Period/days
x509sat.december december Boolean
x509sat.dn dn No value NameAndOptionalUID/dn
x509sat.endDayTime endDayTime No value DayTimeBand/endDayTime
x509sat.endTime endTime String
x509sat.entirely entirely Boolean TimeAssertion/between/entirely
x509sat.equality equality String CriteriaItem/equality
x509sat.february february Boolean
x509sat.fifth fifth Unsigned 32-bit integer XDayOf/fifth
x509sat.final final String SubstringAssertion/_item/final
x509sat.first first Unsigned 32-bit integer XDayOf/first
x509sat.fourth fourth Unsigned 32-bit integer XDayOf/fourth
x509sat.friday friday Boolean
x509sat.greaterOrEqual greaterOrEqual String CriteriaItem/greaterOrEqual
x509sat.hour hour Signed 32-bit integer DayTime/hour
x509sat.initial initial String SubstringAssertion/_item/initial
x509sat.intDay intDay No value Period/days/intDay
x509sat.intDay_item Item Signed 32-bit integer Period/days/intDay/_item
x509sat.intMonth intMonth No value Period/months/intMonth
x509sat.intMonth_item Item Signed 32-bit integer Period/months/intMonth/_item
x509sat.intNamedDays intNamedDays Unsigned 32-bit integer NamedDay/intNamedDays
x509sat.intWeek intWeek No value Period/weeks/intWeek
x509sat.intWeek_item Item Signed 32-bit integer Period/weeks/intWeek/_item
x509sat.january january Boolean
x509sat.july july Boolean
x509sat.june june Boolean
x509sat.lessOrEqual lessOrEqual String CriteriaItem/lessOrEqual
x509sat.localeID1 localeID1 String LocaleContextSyntax/localeID1
x509sat.localeID2 localeID2 String LocaleContextSyntax/localeID2
x509sat.march march Boolean
x509sat.matchingRuleUsed matchingRuleUsed String MultipleMatchingLocalities/matchingRuleUsed
x509sat.may may Boolean
x509sat.minute minute Signed 32-bit integer DayTime/minute
x509sat.monday monday Boolean
x509sat.months months Unsigned 32-bit integer Period/months
x509sat.nAddress nAddress Byte array ProtocolInformation/nAddress
x509sat.nAddresses nAddresses No value PresentationAddress/nAddresses
x509sat.nAddresses_item Item Byte array PresentationAddress/nAddresses/_item
x509sat.not not Unsigned 32-bit integer Criteria/not
x509sat.notThisTime notThisTime Boolean TimeSpecification/notThisTime
x509sat.november november Boolean
x509sat.now now No value TimeAssertion/now
x509sat.objectClass objectClass String EnhancedGuide/objectClass
x509sat.october october Boolean
x509sat.or or No value Criteria/or
x509sat.or_item Item Unsigned 32-bit integer Criteria/or/_item
x509sat.pSelector pSelector Byte array PresentationAddress/pSelector
x509sat.periodic periodic No value TimeSpecification/time/periodic
x509sat.periodic_item Item No value TimeSpecification/time/periodic/_item
x509sat.profiles profiles No value ProtocolInformation/profiles
x509sat.profiles_item Item String ProtocolInformation/profiles/_item
x509sat.sSelector sSelector Byte array PresentationAddress/sSelector
x509sat.saturday saturday Boolean
x509sat.second second Unsigned 32-bit integer XDayOf/second
x509sat.september september Boolean
x509sat.startDayTime startDayTime No value DayTimeBand/startDayTime
x509sat.startTime startTime String
x509sat.subset subset Signed 32-bit integer EnhancedGuide/subset
x509sat.substrings substrings String CriteriaItem/substrings
x509sat.sunday sunday Boolean
x509sat.tSelector tSelector Byte array PresentationAddress/tSelector
x509sat.telephoneNumber telephoneNumber String FacsimileTelephoneNumber/telephoneNumber
x509sat.telexNumber telexNumber String TelexNumber/telexNumber
x509sat.third third Unsigned 32-bit integer XDayOf/third
x509sat.thursday thursday Boolean
x509sat.time time Unsigned 32-bit integer TimeSpecification/time
x509sat.timeZone timeZone Signed 32-bit integer TimeSpecification/timeZone
x509sat.timesOfDay timesOfDay No value Period/timesOfDay
x509sat.timesOfDay_item Item No value Period/timesOfDay/_item
x509sat.tuesday tuesday Boolean
x509sat.type type Unsigned 32-bit integer Criteria/type
x509sat.uid uid Byte array NameAndOptionalUID/uid
x509sat.wednesday wednesday Boolean
x509sat.week1 week1 Boolean
x509sat.week2 week2 Boolean
x509sat.week3 week3 Boolean
x509sat.week4 week4 Boolean
x509sat.week5 week5 Boolean
x509sat.weeks weeks Unsigned 32-bit integer Period/weeks
x509sat.years years No value Period/years
x509sat.years_item Item Signed 32-bit integer Period/years/_item
x11.above-sibling above-sibling Unsigned 32-bit integer
x11.acceleration-denominator acceleration-denominator Signed 16-bit integer
x11.acceleration-numerator acceleration-numerator Signed 16-bit integer
x11.access-mode access-mode Unsigned 8-bit integer
x11.address address Byte array
x11.address-length address-length Unsigned 16-bit integer
x11.alloc alloc Unsigned 8-bit integer
x11.allow-events-mode allow-events-mode Unsigned 8-bit integer
x11.allow-exposures allow-exposures Unsigned 8-bit integer
x11.arc arc No value
x11.arc-mode arc-mode Unsigned 8-bit integer Tell us if we're drawing an arc or a pie
x11.arc.angle1 angle1 Signed 16-bit integer
x11.arc.angle2 angle2 Signed 16-bit integer
x11.arc.height height Unsigned 16-bit integer
x11.arc.width width Unsigned 16-bit integer
x11.arc.x x Signed 16-bit integer
x11.arc.y y Signed 16-bit integer
x11.arcs arcs No value
x11.atom atom Unsigned 32-bit integer
x11.authorization-protocol-data authorization-protocol-data String
x11.authorization-protocol-data-length authorization-protocol-data-length Unsigned 16-bit integer
x11.authorization-protocol-name authorization-protocol-name String
x11.authorization-protocol-name-length authorization-protocol-name-length Unsigned 16-bit integer
x11.auto-repeat-mode auto-repeat-mode Unsigned 8-bit integer
x11.back-blue back-blue Unsigned 16-bit integer Background blue value for a cursor
x11.back-green back-green Unsigned 16-bit integer Background green value for a cursor
x11.back-red back-red Unsigned 16-bit integer Background red value for a cursor
x11.background background Unsigned 32-bit integer Background color
x11.background-pixel background-pixel Unsigned 32-bit integer Background color for a window
x11.background-pixmap background-pixmap Unsigned 32-bit integer Background pixmap for a window
x11.backing-pixel backing-pixel Unsigned 32-bit integer
x11.backing-planes backing-planes Unsigned 32-bit integer
x11.backing-store backing-store Unsigned 8-bit integer
x11.bell-duration bell-duration Signed 16-bit integer
x11.bell-percent bell-percent Signed 8-bit integer
x11.bell-pitch bell-pitch Signed 16-bit integer
x11.bit-gravity bit-gravity Unsigned 8-bit integer
x11.bit-plane bit-plane Unsigned 32-bit integer
x11.bitmap-format-bit-order bitmap-format-bit-order Unsigned 8-bit integer
x11.bitmap-format-scanline-pad bitmap-format-scanline-pad Unsigned 8-bit integer bitmap format scanline-pad
x11.bitmap-format-scanline-unit bitmap-format-scanline-unit Unsigned 8-bit integer bitmap format scanline unit
x11.blue blue Unsigned 16-bit integer
x11.blues blues Unsigned 16-bit integer
x11.border-pixel border-pixel Unsigned 32-bit integer
x11.border-pixmap border-pixmap Unsigned 32-bit integer
x11.border-width border-width Unsigned 16-bit integer
x11.button button Unsigned 8-bit integer
x11.byte-order byte-order Unsigned 8-bit integer
x11.bytes-after bytes-after Unsigned 32-bit integer bytes after
x11.cap-style cap-style Unsigned 8-bit integer
x11.change-host-mode change-host-mode Unsigned 8-bit integer
x11.childwindow childwindow Unsigned 32-bit integer childwindow
x11.cid cid Unsigned 32-bit integer
x11.class class Unsigned 8-bit integer
x11.clip-mask clip-mask Unsigned 32-bit integer
x11.clip-x-origin clip-x-origin Signed 16-bit integer
x11.clip-y-origin clip-y-origin Signed 16-bit integer
x11.close-down-mode close-down-mode Unsigned 8-bit integer
x11.cmap cmap Unsigned 32-bit integer
x11.color-items color-items No value
x11.coloritem coloritem No value
x11.coloritem.blue blue Unsigned 16-bit integer
x11.coloritem.flags flags Unsigned 8-bit integer
x11.coloritem.flags.do-blue do-blue Boolean
x11.coloritem.flags.do-green do-green Boolean
x11.coloritem.flags.do-red do-red Boolean
x11.coloritem.flags.unused unused Boolean
x11.coloritem.green green Unsigned 16-bit integer
x11.coloritem.pixel pixel Unsigned 32-bit integer
x11.coloritem.red red Unsigned 16-bit integer
x11.coloritem.unused unused No value
x11.colormap colormap Unsigned 32-bit integer
x11.colormap-state colormap-state Unsigned 8-bit integer
x11.colors colors Unsigned 16-bit integer The number of color cells to allocate
x11.configure-window-mask configure-window-mask Unsigned 16-bit integer
x11.configure-window-mask.border-width border-width Boolean
x11.configure-window-mask.height height Boolean
x11.configure-window-mask.sibling sibling Boolean
x11.configure-window-mask.stack-mode stack-mode Boolean
x11.configure-window-mask.width width Boolean
x11.configure-window-mask.x x Boolean
x11.configure-window-mask.y y Boolean
x11.confine-to confine-to Unsigned 32-bit integer
x11.contiguous contiguous Boolean
x11.coordinate-mode coordinate-mode Unsigned 8-bit integer
x11.count count Unsigned 8-bit integer
x11.cursor cursor Unsigned 32-bit integer
x11.dash-offset dash-offset Unsigned 16-bit integer
x11.dashes dashes Byte array
x11.dashes-length dashes-length Unsigned 16-bit integer
x11.data data Byte array
x11.data-length data-length Unsigned 32-bit integer
x11.delete delete Boolean Delete this property after reading
x11.delta delta Signed 16-bit integer
x11.depth depth Unsigned 8-bit integer
x11.destination destination Unsigned 8-bit integer
x11.detail detail Unsigned 8-bit integer detail
x11.direction direction Unsigned 8-bit integer
x11.do-acceleration do-acceleration Boolean
x11.do-not-propagate-mask do-not-propagate-mask Unsigned 32-bit integer
x11.do-not-propagate-mask.Button1Motion Button1Motion Boolean
x11.do-not-propagate-mask.Button2Motion Button2Motion Boolean
x11.do-not-propagate-mask.Button3Motion Button3Motion Boolean
x11.do-not-propagate-mask.Button4Motion Button4Motion Boolean
x11.do-not-propagate-mask.Button5Motion Button5Motion Boolean
x11.do-not-propagate-mask.ButtonMotion ButtonMotion Boolean
x11.do-not-propagate-mask.ButtonPress ButtonPress Boolean
x11.do-not-propagate-mask.ButtonRelease ButtonRelease Boolean
x11.do-not-propagate-mask.KeyPress KeyPress Boolean
x11.do-not-propagate-mask.KeyRelease KeyRelease Boolean
x11.do-not-propagate-mask.PointerMotion PointerMotion Boolean
x11.do-not-propagate-mask.erroneous-bits erroneous-bits Boolean
x11.do-threshold do-threshold Boolean
x11.drawable drawable Unsigned 32-bit integer
x11.dst-drawable dst-drawable Unsigned 32-bit integer
x11.dst-gc dst-gc Unsigned 32-bit integer
x11.dst-window dst-window Unsigned 32-bit integer
x11.dst-x dst-x Signed 16-bit integer
x11.dst-y dst-y Signed 16-bit integer
x11.error error Unsigned 8-bit integer error
x11.error-badvalue error-badvalue Unsigned 32-bit integer error badvalue
x11.error_sequencenumber error_sequencenumber Unsigned 16-bit integer error sequencenumber
x11.errorcode errorcode Unsigned 8-bit integer errrorcode
x11.event-detail event-detail Unsigned 8-bit integer
x11.event-mask event-mask Unsigned 32-bit integer
x11.event-mask.Button1Motion Button1Motion Boolean
x11.event-mask.Button2Motion Button2Motion Boolean
x11.event-mask.Button3Motion Button3Motion Boolean
x11.event-mask.Button4Motion Button4Motion Boolean
x11.event-mask.Button5Motion Button5Motion Boolean
x11.event-mask.ButtonMotion ButtonMotion Boolean
x11.event-mask.ButtonPress ButtonPress Boolean
x11.event-mask.ButtonRelease ButtonRelease Boolean
x11.event-mask.ColormapChange ColormapChange Boolean
x11.event-mask.EnterWindow EnterWindow Boolean
x11.event-mask.Exposure Exposure Boolean
x11.event-mask.FocusChange FocusChange Boolean
x11.event-mask.KeyPress KeyPress Boolean
x11.event-mask.KeyRelease KeyRelease Boolean
x11.event-mask.KeymapState KeymapState Boolean
x11.event-mask.LeaveWindow LeaveWindow Boolean
x11.event-mask.OwnerGrabButton OwnerGrabButton Boolean
x11.event-mask.PointerMotion PointerMotion Boolean
x11.event-mask.PointerMotionHint PointerMotionHint Boolean
x11.event-mask.PropertyChange PropertyChange Boolean
x11.event-mask.ResizeRedirect ResizeRedirect Boolean
x11.event-mask.StructureNotify StructureNotify Boolean
x11.event-mask.SubstructureNotify SubstructureNotify Boolean
x11.event-mask.SubstructureRedirect SubstructureRedirect Boolean
x11.event-mask.VisibilityChange VisibilityChange Boolean
x11.event-mask.erroneous-bits erroneous-bits Boolean
x11.event-sequencenumber event-sequencenumber Unsigned 16-bit integer event sequencenumber
x11.event-x event-x Unsigned 16-bit integer event x
x11.event-y event-y Unsigned 16-bit integer event y
x11.eventbutton eventbutton Unsigned 8-bit integer eventbutton
x11.eventcode eventcode Unsigned 8-bit integer eventcode
x11.eventwindow eventwindow Unsigned 32-bit integer eventwindow
x11.exact-blue exact-blue Unsigned 16-bit integer
x11.exact-green exact-green Unsigned 16-bit integer
x11.exact-red exact-red Unsigned 16-bit integer
x11.exposures exposures Boolean
x11.family family Unsigned 8-bit integer
x11.fid fid Unsigned 32-bit integer Font id
x11.fill-rule fill-rule Unsigned 8-bit integer
x11.fill-style fill-style Unsigned 8-bit integer
x11.first-error first-error Unsigned 8-bit integer
x11.first-event first-event Unsigned 8-bit integer
x11.first-keycode first-keycode Unsigned 8-bit integer
x11.focus focus Unsigned 8-bit integer
x11.focus-detail focus-detail Unsigned 8-bit integer
x11.focus-mode focus-mode Unsigned 8-bit integer
x11.font font Unsigned 32-bit integer
x11.fore-blue fore-blue Unsigned 16-bit integer
x11.fore-green fore-green Unsigned 16-bit integer
x11.fore-red fore-red Unsigned 16-bit integer
x11.foreground foreground Unsigned 32-bit integer
x11.format format Unsigned 8-bit integer
x11.from-configure from-configure Boolean
x11.function function Unsigned 8-bit integer
x11.gc gc Unsigned 32-bit integer
x11.gc-dashes gc-dashes Unsigned 8-bit integer
x11.gc-value-mask gc-value-mask Unsigned 32-bit integer
x11.gc-value-mask.arc-mode arc-mode Boolean
x11.gc-value-mask.background background Boolean
x11.gc-value-mask.cap-style cap-style Boolean
x11.gc-value-mask.clip-mask clip-mask Boolean
x11.gc-value-mask.clip-x-origin clip-x-origin Boolean
x11.gc-value-mask.clip-y-origin clip-y-origin Boolean
x11.gc-value-mask.dash-offset dash-offset Boolean
x11.gc-value-mask.fill-rule fill-rule Boolean
x11.gc-value-mask.fill-style fill-style Boolean
x11.gc-value-mask.font font Boolean
x11.gc-value-mask.foreground foreground Boolean
x11.gc-value-mask.function function Boolean
x11.gc-value-mask.gc-dashes gc-dashes Boolean
x11.gc-value-mask.graphics-exposures graphics-exposures Boolean
x11.gc-value-mask.join-style join-style Boolean
x11.gc-value-mask.line-style line-style Boolean
x11.gc-value-mask.line-width line-width Boolean
x11.gc-value-mask.plane-mask plane-mask Boolean
x11.gc-value-mask.stipple stipple Boolean
x11.gc-value-mask.subwindow-mode subwindow-mode Boolean
x11.gc-value-mask.tile tile Boolean
x11.gc-value-mask.tile-stipple-x-origin tile-stipple-x-origin Boolean
x11.gc-value-mask.tile-stipple-y-origin tile-stipple-y-origin Boolean
x11.get-property-type get-property-type Unsigned 32-bit integer
x11.grab-mode grab-mode Unsigned 8-bit integer
x11.grab-status grab-status Unsigned 8-bit integer
x11.grab-window grab-window Unsigned 32-bit integer
x11.graphics-exposures graphics-exposures Boolean
x11.green green Unsigned 16-bit integer
x11.greens greens Unsigned 16-bit integer
x11.height height Unsigned 16-bit integer
x11.image-byte-order image-byte-order Unsigned 8-bit integer
x11.image-format image-format Unsigned 8-bit integer
x11.image-pixmap-format image-pixmap-format Unsigned 8-bit integer
x11.initial-connection initial-connection No value undecoded
x11.interval interval Signed 16-bit integer
x11.ip-address ip-address IPv4 address
x11.items items No value
x11.join-style join-style Unsigned 8-bit integer
x11.key key Unsigned 8-bit integer
x11.key-click-percent key-click-percent Signed 8-bit integer
x11.keyboard-key keyboard-key Unsigned 8-bit integer
x11.keyboard-mode keyboard-mode Unsigned 8-bit integer
x11.keyboard-value-mask keyboard-value-mask Unsigned 32-bit integer
x11.keyboard-value-mask.auto-repeat-mode auto-repeat-mode Boolean
x11.keyboard-value-mask.bell-duration bell-duration Boolean
x11.keyboard-value-mask.bell-percent bell-percent Boolean
x11.keyboard-value-mask.bell-pitch bell-pitch Boolean
x11.keyboard-value-mask.key-click-percent key-click-percent Boolean
x11.keyboard-value-mask.keyboard-key keyboard-key Boolean
x11.keyboard-value-mask.led led Boolean
x11.keyboard-value-mask.led-mode led-mode Boolean
x11.keybut-mask-erroneous-bits keybut-mask-erroneous-bits Boolean keybut mask erroneous bits
x11.keycode keycode Unsigned 8-bit integer keycode
x11.keycode-count keycode-count Unsigned 8-bit integer
x11.keycodes keycodes No value
x11.keycodes-per-modifier keycodes-per-modifier Unsigned 8-bit integer
x11.keycodes.item item Byte array
x11.keys keys Byte array
x11.keysyms keysyms No value
x11.keysyms-per-keycode keysyms-per-keycode Unsigned 8-bit integer
x11.keysyms.item item No value
x11.keysyms.item.keysym keysym Unsigned 32-bit integer
x11.led led Unsigned 8-bit integer
x11.led-mode led-mode Unsigned 8-bit integer
x11.left-pad left-pad Unsigned 8-bit integer
x11.length-of-reason length-of-reason Unsigned 8-bit integer length of reason
x11.length-of-vendor length-of-vendor Unsigned 16-bit integer length of vendor
x11.line-style line-style Unsigned 8-bit integer
x11.line-width line-width Unsigned 16-bit integer
x11.long-length long-length Unsigned 32-bit integer The maximum length of the property in bytes
x11.long-offset long-offset Unsigned 32-bit integer The starting position in the property bytes array
x11.major-opcode major-opcode Unsigned 16-bit integer major opcode
x11.map map Byte array
x11.map-length map-length Unsigned 8-bit integer
x11.mask mask Unsigned 32-bit integer
x11.mask-char mask-char Unsigned 16-bit integer
x11.mask-font mask-font Unsigned 32-bit integer
x11.max-keycode max-keycode Unsigned 8-bit integer max keycode
x11.max-names max-names Unsigned 16-bit integer
x11.maximum-request-length maximum-request-length Unsigned 16-bit integer maximum request length
x11.mid mid Unsigned 32-bit integer
x11.min-keycode min-keycode Unsigned 8-bit integer min keycode
x11.minor-opcode minor-opcode Unsigned 16-bit integer minor opcode
x11.mode mode Unsigned 8-bit integer
x11.modifiers-mask modifiers-mask Unsigned 16-bit integer
x11.modifiers-mask.AnyModifier AnyModifier Unsigned 16-bit integer
x11.modifiers-mask.Button1 Button1 Boolean
x11.modifiers-mask.Button2 Button2 Boolean
x11.modifiers-mask.Button3 Button3 Boolean
x11.modifiers-mask.Button4 Button4 Boolean
x11.modifiers-mask.Button5 Button5 Boolean
x11.modifiers-mask.Control Control Boolean
x11.modifiers-mask.Lock Lock Boolean
x11.modifiers-mask.Mod1 Mod1 Boolean
x11.modifiers-mask.Mod2 Mod2 Boolean
x11.modifiers-mask.Mod3 Mod3 Boolean
x11.modifiers-mask.Mod4 Mod4 Boolean
x11.modifiers-mask.Mod5 Mod5 Boolean
x11.modifiers-mask.Shift Shift Boolean
x11.modifiers-mask.erroneous-bits erroneous-bits Boolean
x11.motion-buffer-size motion-buffer-size Unsigned 16-bit integer motion buffer size
x11.name name String
x11.name-length name-length Unsigned 16-bit integer
x11.new new Boolean
x11.number-of-formats-in-pixmap-formats number-of-formats-in-pixmap-formats Unsigned 8-bit integer number of formats in pixmap formats
x11.number-of-screens-in-roots number-of-screens-in-roots Unsigned 8-bit integer number of screens in roots
x11.odd-length odd-length Boolean
x11.only-if-exists only-if-exists Boolean
x11.opcode opcode Unsigned 8-bit integer
x11.ordering ordering Unsigned 8-bit integer
x11.override-redirect override-redirect Boolean Window manager doesn't manage this window when true
x11.owner owner Unsigned 32-bit integer
x11.owner-events owner-events Boolean
x11.parent parent Unsigned 32-bit integer
x11.path path No value
x11.path.string string String
x11.pattern pattern String
x11.pattern-length pattern-length Unsigned 16-bit integer
x11.percent percent Unsigned 8-bit integer
x11.pid pid Unsigned 32-bit integer
x11.pixel pixel Unsigned 32-bit integer
x11.pixels pixels No value
x11.pixels_item pixels_item Unsigned 32-bit integer
x11.pixmap pixmap Unsigned 32-bit integer
x11.place place Unsigned 8-bit integer
x11.plane-mask plane-mask Unsigned 32-bit integer
x11.planes planes Unsigned 16-bit integer
x11.point point No value
x11.point-x point-x Signed 16-bit integer
x11.point-y point-y Signed 16-bit integer
x11.pointer-event-mask pointer-event-mask Unsigned 16-bit integer
x11.pointer-event-mask.Button1Motion Button1Motion Boolean
x11.pointer-event-mask.Button2Motion Button2Motion Boolean
x11.pointer-event-mask.Button3Motion Button3Motion Boolean
x11.pointer-event-mask.Button4Motion Button4Motion Boolean
x11.pointer-event-mask.Button5Motion Button5Motion Boolean
x11.pointer-event-mask.ButtonMotion ButtonMotion Boolean
x11.pointer-event-mask.ButtonPress ButtonPress Boolean
x11.pointer-event-mask.ButtonRelease ButtonRelease Boolean
x11.pointer-event-mask.EnterWindow EnterWindow Boolean
x11.pointer-event-mask.KeymapState KeymapState Boolean
x11.pointer-event-mask.LeaveWindow LeaveWindow Boolean
x11.pointer-event-mask.PointerMotion PointerMotion Boolean
x11.pointer-event-mask.PointerMotionHint PointerMotionHint Boolean
x11.pointer-event-mask.erroneous-bits erroneous-bits Boolean
x11.pointer-mode pointer-mode Unsigned 8-bit integer
x11.points points No value
x11.prefer-blanking prefer-blanking Unsigned 8-bit integer
x11.present present Boolean
x11.propagate propagate Boolean
x11.properties properties No value
x11.properties.item item Unsigned 32-bit integer
x11.property property Unsigned 32-bit integer
x11.property-number property-number Unsigned 16-bit integer
x11.property-state property-state Unsigned 8-bit integer
x11.protocol-major-version protocol-major-version Unsigned 16-bit integer
x11.protocol-minor-version protocol-minor-version Unsigned 16-bit integer
x11.reason reason String reason
x11.rectangle rectangle No value
x11.rectangle-height rectangle-height Unsigned 16-bit integer
x11.rectangle-width rectangle-width Unsigned 16-bit integer
x11.rectangle-x rectangle-x Signed 16-bit integer
x11.rectangle-y rectangle-y Signed 16-bit integer
x11.rectangles rectangles No value
x11.red red Unsigned 16-bit integer
x11.reds reds Unsigned 16-bit integer
x11.release-number release-number Unsigned 32-bit integer release number
x11.reply reply Unsigned 8-bit integer reply
x11.reply-sequencenumber reply-sequencenumber Unsigned 16-bit integer
x11.replylength replylength Unsigned 32-bit integer replylength
x11.replyopcode replyopcode Unsigned 8-bit integer
x11.request request Unsigned 8-bit integer
x11.request-length request-length Unsigned 16-bit integer Request length
x11.requestor requestor Unsigned 32-bit integer
x11.resource resource Unsigned 32-bit integer
x11.resource-id-base resource-id-base Unsigned 32-bit integer resource id base
x11.resource-id-mask resource-id-mask Unsigned 32-bit integer resource id mask
x11.revert-to revert-to Unsigned 8-bit integer
x11.root-x root-x Unsigned 16-bit integer root x
x11.root-y root-y Unsigned 16-bit integer root y
x11.rootwindow rootwindow Unsigned 32-bit integer rootwindow
x11.same-screen same-screen Boolean same screen
x11.same-screen-focus-mask same-screen-focus-mask Unsigned 8-bit integer
x11.same-screen-focus-mask.focus focus Boolean
x11.same-screen-focus-mask.same-screen same-screen Boolean
x11.save-set-mode save-set-mode Unsigned 8-bit integer
x11.save-under save-under Boolean
x11.screen-saver-mode screen-saver-mode Unsigned 8-bit integer
x11.segment segment No value
x11.segment_x1 segment_x1 Signed 16-bit integer
x11.segment_x2 segment_x2 Signed 16-bit integer
x11.segment_y1 segment_y1 Signed 16-bit integer
x11.segment_y2 segment_y2 Signed 16-bit integer
x11.segments segments No value
x11.selection selection Unsigned 32-bit integer
x11.shape shape Unsigned 8-bit integer
x11.sibling sibling Unsigned 32-bit integer
x11.source-char source-char Unsigned 16-bit integer
x11.source-font source-font Unsigned 32-bit integer
x11.source-pixmap source-pixmap Unsigned 32-bit integer
x11.src-cmap src-cmap Unsigned 32-bit integer
x11.src-drawable src-drawable Unsigned 32-bit integer
x11.src-gc src-gc Unsigned 32-bit integer
x11.src-height src-height Unsigned 16-bit integer
x11.src-width src-width Unsigned 16-bit integer
x11.src-window src-window Unsigned 32-bit integer
x11.src-x src-x Signed 16-bit integer
x11.src-y src-y Signed 16-bit integer
x11.stack-mode stack-mode Unsigned 8-bit integer
x11.start start Unsigned 32-bit integer
x11.stipple stipple Unsigned 32-bit integer
x11.stop stop Unsigned 32-bit integer
x11.str-number-in-path str-number-in-path Unsigned 16-bit integer
x11.string string String
x11.string-length string-length Unsigned 32-bit integer
x11.string16 string16 String
x11.string16.bytes bytes Byte array
x11.subwindow-mode subwindow-mode Unsigned 8-bit integer
x11.success success Unsigned 8-bit integer success
x11.target target Unsigned 32-bit integer
x11.textitem textitem No value
x11.textitem.font font Unsigned 32-bit integer
x11.textitem.string string No value
x11.textitem.string.delta delta Signed 8-bit integer
x11.textitem.string.string16 string16 String
x11.textitem.string.string16.bytes bytes Byte array
x11.textitem.string.string8 string8 String
x11.threshold threshold Signed 16-bit integer
x11.tile tile Unsigned 32-bit integer
x11.tile-stipple-x-origin tile-stipple-x-origin Signed 16-bit integer
x11.tile-stipple-y-origin tile-stipple-y-origin Signed 16-bit integer
x11.time time Unsigned 32-bit integer
x11.timeout timeout Signed 16-bit integer
x11.type type Unsigned 32-bit integer
x11.undecoded undecoded No value Yet undecoded by dissector
x11.unused unused No value
x11.valuelength valuelength Unsigned 32-bit integer valuelength
x11.vendor vendor String vendor
x11.visibility-state visibility-state Unsigned 8-bit integer
x11.visual visual Unsigned 32-bit integer
x11.visual-blue visual-blue Unsigned 16-bit integer
x11.visual-green visual-green Unsigned 16-bit integer
x11.visual-red visual-red Unsigned 16-bit integer
x11.visualid visualid Unsigned 32-bit integer
x11.warp-pointer-dst-window warp-pointer-dst-window Unsigned 32-bit integer
x11.warp-pointer-src-window warp-pointer-src-window Unsigned 32-bit integer
x11.wid wid Unsigned 32-bit integer Window id
x11.width width Unsigned 16-bit integer
x11.win-gravity win-gravity Unsigned 8-bit integer
x11.win-x win-x Signed 16-bit integer
x11.win-y win-y Signed 16-bit integer
x11.window window Unsigned 32-bit integer
x11.window-class window-class Unsigned 16-bit integer Window class
x11.window-value-mask window-value-mask Unsigned 32-bit integer
x11.window-value-mask.background-pixel background-pixel Boolean
x11.window-value-mask.background-pixmap background-pixmap Boolean
x11.window-value-mask.backing-pixel backing-pixel Boolean
x11.window-value-mask.backing-planes backing-planes Boolean
x11.window-value-mask.backing-store backing-store Boolean
x11.window-value-mask.bit-gravity bit-gravity Boolean
x11.window-value-mask.border-pixel border-pixel Boolean
x11.window-value-mask.border-pixmap border-pixmap Boolean
x11.window-value-mask.colormap colormap Boolean
x11.window-value-mask.cursor cursor Boolean
x11.window-value-mask.do-not-propagate-mask do-not-propagate-mask Boolean
x11.window-value-mask.event-mask event-mask Boolean
x11.window-value-mask.override-redirect override-redirect Boolean
x11.window-value-mask.save-under save-under Boolean
x11.window-value-mask.win-gravity win-gravity Boolean
x11.x x Signed 16-bit integer
x11.y y Signed 16-bit integer
cmip.abortSource abortSource Unsigned 32-bit integer CMIPAbortInfo/abortSource
cmip.absent absent No value
cmip.accessControl accessControl Byte array
cmip.actionArgument actionArgument Unsigned 32-bit integer ErrorInfo/actionArgument
cmip.actionError actionError No value LinkedReplyArgument/actionError
cmip.actionErrorInfo actionErrorInfo No value ActionError/actionErrorInfo
cmip.actionId actionId No value NoSuchArgument/actionId
cmip.actionInfo actionInfo No value ActionArgument/actionInfo
cmip.actionInfoArg actionInfoArg No value ActionInfo/actionInfoArg
cmip.actionReply actionReply No value ActionResult/actionReply
cmip.actionReplyInfo actionReplyInfo No value ActionReply/actionReplyInfo
cmip.actionResult actionResult No value LinkedReplyArgument/actionResult
cmip.actionType actionType String NoSuchArgumentAction/actionType
cmip.actionType_OID actionType String actionType
cmip.actionValue actionValue No value InvalidArgumentValue/actionValue
cmip.and and No value CMISFilter/and
cmip.and_item Item Unsigned 32-bit integer CMISFilter/and/_item
cmip.anyString anyString No value FilterItem/substrings/_item/anyString
cmip.argument argument No value
cmip.argumentValue argumentValue Unsigned 32-bit integer ErrorInfo/argumentValue
cmip.attribute attribute No value
cmip.attributeError attributeError No value SetInfoStatus/attributeError
cmip.attributeId attributeId String ModificationItem/attributeId
cmip.attributeIdError attributeIdError No value GetInfoStatus/attributeIdError
cmip.attributeIdList attributeIdList No value GetArgument/attributeIdList
cmip.attributeIdList_item Item Unsigned 32-bit integer GetArgument/attributeIdList/_item
cmip.attributeId_OID attributeId String attributeId
cmip.attributeList attributeList No value
cmip.attributeList_item Item No value
cmip.attributeValue attributeValue No value ModificationItem/attributeValue
cmip.baseManagedObjectClass baseManagedObjectClass Unsigned 32-bit integer
cmip.baseManagedObjectInstance baseManagedObjectInstance Unsigned 32-bit integer
cmip.baseToNthLevel baseToNthLevel Signed 32-bit integer Scope/baseToNthLevel
cmip.cancelGet cancelGet Boolean
cmip.currentTime currentTime String
cmip.deleteError deleteError No value LinkedReplyArgument/deleteError
cmip.deleteErrorInfo deleteErrorInfo Unsigned 32-bit integer DeleteError/deleteErrorInfo
cmip.deleteResult deleteResult No value LinkedReplyArgument/deleteResult
cmip.distinguishedName distinguishedName No value ObjectInstance/distinguishedName
cmip.equality equality No value FilterItem/equality
cmip.errorId errorId String SpecificErrorInfo/errorId
cmip.errorId_OID errorId String errorId
cmip.errorInfo errorInfo No value SpecificErrorInfo/errorInfo
cmip.errorStatus errorStatus Unsigned 32-bit integer AttributeIdError/errorStatus
cmip.eventId eventId No value NoSuchArgument/eventId
cmip.eventInfo eventInfo No value InvalidArgumentValueEventValue/eventInfo
cmip.eventReply eventReply No value EventReportResult/eventReply
cmip.eventReplyInfo eventReplyInfo No value EventReply/eventReplyInfo
cmip.eventTime eventTime String EventReportArgument/eventTime
cmip.eventType eventType String NoSuchArgumentEvent/eventType
cmip.eventType_OID eventType String eventType
cmip.eventValue eventValue No value InvalidArgumentValue/eventValue
cmip.extendedService extendedService Boolean
cmip.filter filter Unsigned 32-bit integer
cmip.finalString finalString No value FilterItem/substrings/_item/finalString
cmip.functionalUnits functionalUnits Byte array CMIPUserInfo/functionalUnits
cmip.generalProblem generalProblem Signed 32-bit integer RejectProb/generalProblem
cmip.getInfoList getInfoList No value GetListError/getInfoList
cmip.getInfoList_item Item Unsigned 32-bit integer GetListError/getInfoList/_item
cmip.getListError getListError No value LinkedReplyArgument/getListError
cmip.getResult getResult No value LinkedReplyArgument/getResult
cmip.globalForm globalForm String AttributeId/globalForm
cmip.greaterOrEqual greaterOrEqual No value FilterItem/greaterOrEqual
cmip.id id Unsigned 32-bit integer Attribute/id
cmip.individualLevels individualLevels Signed 32-bit integer Scope/individualLevels
cmip.initialString initialString No value FilterItem/substrings/_item/initialString
cmip.invoke invoke No value ROS/invoke
cmip.invokeId invokeId Unsigned 32-bit integer
cmip.invokeProblem invokeProblem Signed 32-bit integer RejectProb/invokeProblem
cmip.item item Unsigned 32-bit integer CMISFilter/item
cmip.lessOrEqual lessOrEqual No value FilterItem/lessOrEqual
cmip.linkedId linkedId Unsigned 32-bit integer Invoke/linkedId
cmip.localDistinguishedName localDistinguishedName No value ObjectInstance/localDistinguishedName
cmip.localForm localForm Signed 32-bit integer AttributeId/localForm
cmip.managedObjectClass managedObjectClass Unsigned 32-bit integer
cmip.managedObjectInstance managedObjectInstance Unsigned 32-bit integer
cmip.managedOrSuperiorObjectInstance managedOrSuperiorObjectInstance Unsigned 32-bit integer CreateArgument/managedOrSuperiorObjectInstance
cmip.modificationList modificationList No value SetArgument/modificationList
cmip.modificationList_item Item No value SetArgument/modificationList/_item
cmip.modifyOperator modifyOperator Signed 32-bit integer
cmip.multipleObjectSelection multipleObjectSelection Boolean
cmip.multipleReply multipleReply Boolean
cmip.namedNumbers namedNumbers Signed 32-bit integer Scope/namedNumbers
cmip.nonNullSetIntersection nonNullSetIntersection No value FilterItem/nonNullSetIntersection
cmip.nonSpecificForm nonSpecificForm Byte array ObjectInstance/nonSpecificForm
cmip.not not Unsigned 32-bit integer CMISFilter/not
cmip.ocglobalForm ocglobalForm String ObjectClass/ocglobalForm
cmip.oclocalForm oclocalForm Signed 32-bit integer ObjectClass/oclocalForm
cmip.opcode opcode Signed 32-bit integer
cmip.or or No value CMISFilter/or
cmip.or_item Item Unsigned 32-bit integer CMISFilter/or/_item
cmip.present present Unsigned 32-bit integer FilterItem/present
cmip.processingFailure processingFailure No value LinkedReplyArgument/processingFailure
cmip.protocolVersion protocolVersion Byte array CMIPUserInfo/protocolVersion
cmip.rRBody rRBody No value ReturnResult/rRBody
cmip.referenceObjectInstance referenceObjectInstance Unsigned 32-bit integer CreateArgument/referenceObjectInstance
cmip.reject reject No value ROS/reject
cmip.rejectProblem rejectProblem Unsigned 32-bit integer Reject/rejectProblem
cmip.returnError returnError No value ROS/returnError
cmip.returnErrorProblem returnErrorProblem Signed 32-bit integer RejectProb/returnErrorProblem
cmip.returnResult returnResult No value ROS/returnResult
cmip.returnResultProblem returnResultProblem Signed 32-bit integer RejectProb/returnResultProblem
cmip.scope scope Unsigned 32-bit integer
cmip.setInfoList setInfoList No value SetListError/setInfoList
cmip.setInfoList_item Item Unsigned 32-bit integer SetListError/setInfoList/_item
cmip.setListError setListError No value LinkedReplyArgument/setListError
cmip.setResult setResult No value LinkedReplyArgument/setResult
cmip.specificErrorInfo specificErrorInfo No value ProcessingFailure/specificErrorInfo
cmip.subsetOf subsetOf No value FilterItem/subsetOf
cmip.substrings substrings No value FilterItem/substrings
cmip.substrings_item Item Unsigned 32-bit integer FilterItem/substrings/_item
cmip.superiorObjectInstance superiorObjectInstance Unsigned 32-bit integer CreateArgument/managedOrSuperiorObjectInstance/superiorObjectInstance
cmip.supersetOf supersetOf No value FilterItem/supersetOf
cmip.synchronization synchronization Unsigned 32-bit integer
cmip.value value No value Attribute/value
cmip.version1 version1 Boolean
cmip.version2 version2 Boolean
xyplex.pad Pad Unsigned 8-bit integer Padding
xyplex.reply Registration Reply Unsigned 16-bit integer Registration reply
xyplex.reserved Reserved field Unsigned 16-bit integer Reserved field
xyplex.return_port Return Port Unsigned 16-bit integer Return port
xyplex.server_port Server Port Unsigned 16-bit integer Server port
xyplex.type Type Unsigned 8-bit integer Protocol type
yhoo.connection_id Connection ID Unsigned 32-bit integer Connection ID
yhoo.content Content String Data portion of the packet
yhoo.len Packet Length Unsigned 32-bit integer Packet Length
yhoo.magic_id Magic ID Unsigned 32-bit integer Magic ID
yhoo.msgtype Message Type Unsigned 32-bit integer Message Type Flags
yhoo.nick1 Real Nick (nick1) String Real Nick (nick1)
yhoo.nick2 Active Nick (nick2) String Active Nick (nick2)
yhoo.service Service Type Unsigned 32-bit integer Service Type
yhoo.unknown1 Unknown 1 Unsigned 32-bit integer Unknown 1
yhoo.version Version String Packet version identifier
ymsg.content Content String Data portion of the packet
ymsg.len Packet Length Unsigned 16-bit integer Packet Length
ymsg.service Service Unsigned 16-bit integer Service Type
ymsg.session_id Session ID Unsigned 32-bit integer Connection ID
ymsg.status Status Unsigned 32-bit integer Message Type Flags
ymsg.version Version Unsigned 16-bit integer Packet version identifier
ypbind.addr IP Addr IPv4 address IP Address of server
ypbind.domain Domain String Name of the NIS/YP Domain
ypbind.error Error Unsigned 32-bit integer YPBIND Error code
ypbind.port Port Unsigned 32-bit integer Port to use
ypbind.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
ypbind.procedure_v2 V2 Procedure Unsigned 32-bit integer V2 Procedure
ypbind.resp_type Response Type Unsigned 32-bit integer Response type
ypbind.setdom.version Version Unsigned 32-bit integer Version of setdom
yppasswd.newpw newpw No value New passwd entry
yppasswd.newpw.dir dir String Home Directory
yppasswd.newpw.gecos gecos String In real life name
yppasswd.newpw.gid gid Unsigned 32-bit integer GroupID
yppasswd.newpw.name name String Username
yppasswd.newpw.passwd passwd String Encrypted passwd
yppasswd.newpw.shell shell String Default shell
yppasswd.newpw.uid uid Unsigned 32-bit integer UserID
yppasswd.oldpass oldpass String Old encrypted password
yppasswd.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
yppasswd.status status Unsigned 32-bit integer YPPasswd update status
ypserv.domain Domain String Domain
ypserv.key Key String Key
ypserv.map Map Name String Map Name
ypserv.map_parms YP Map Parameters No value YP Map Parameters
ypserv.more More Boolean More
ypserv.ordernum Order Number Unsigned 32-bit integer Order Number for XFR
ypserv.peer Peer Name String Peer Name
ypserv.port Port Unsigned 32-bit integer Port to use for XFR Callback
ypserv.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
ypserv.procedure_v2 V2 Procedure Unsigned 32-bit integer V2 Procedure
ypserv.prog Program Number Unsigned 32-bit integer Program Number to use for XFR Callback
ypserv.servesdomain Serves Domain Boolean Serves Domain
ypserv.status Status Signed 32-bit integer Status
ypserv.transid Host Transport ID IPv4 address Host Transport ID to use for XFR Callback
ypserv.value Value String Value
ypserv.xfrstat Xfrstat Signed 32-bit integer Xfrstat
ypxfr.procedure_v1 V1 Procedure Unsigned 32-bit integer V1 Procedure
zebra.bandwidth Bandwidth Unsigned 32-bit integer Bandwidth of interface
zebra.command Command Unsigned 8-bit integer ZEBRA command
zebra.dest4 Destination IPv4 address Destination IPv4 field
zebra.dest6 Destination IPv6 address Destination IPv6 field
zebra.distance Distance Unsigned 8-bit integer Distance of route
zebra.family Family Unsigned 32-bit integer Family of IP address
zebra.index Index Unsigned 32-bit integer Index of interface
zebra.indexnum Index Number Unsigned 8-bit integer Number of indices for route
zebra.interface Interface String Interface name of ZEBRA request
zebra.intflags Flags Unsigned 32-bit integer Flags of interface
zebra.len Length Unsigned 16-bit integer Length of ZEBRA request
zebra.message Message Unsigned 8-bit integer Message type of route
zebra.message.distance Message Distance Boolean Message contains distance
zebra.message.index Message Index Boolean Message contains index
zebra.message.metric Message Metric Boolean Message contains metric
zebra.message.nexthop Message Nexthop Boolean Message contains nexthop
zebra.metric Metric Unsigned 32-bit integer Metric of interface or route
zebra.mtu MTU Unsigned 32-bit integer MTU of interface
zebra.nexthop4 Nexthop IPv4 address Nethop IPv4 field of route
zebra.nexthop6 Nexthop IPv6 address Nethop IPv6 field of route
zebra.nexthopnum Nexthop Number Unsigned 8-bit integer Number of nexthops in route
zebra.prefix4 Prefix IPv4 address Prefix IPv4
zebra.prefix6 Prefix IPv6 address Prefix IPv6
zebra.prefixlen Prefix length Unsigned 32-bit integer Prefix length
zebra.request Request Boolean TRUE if ZEBRA request
zebra.rtflags Flags Unsigned 8-bit integer Flags of route
zebra.type Type Unsigned 8-bit integer Type of route
zip.atp_function Function Unsigned 8-bit integer
zip.count Count Unsigned 16-bit integer
zip.default_zone Default zone String
zip.flags Flags Boolean
zip.flags.only_one_zone Only one zone Boolean
zip.flags.use_broadcast Use broadcast Boolean
zip.flags.zone_invalid Zone invalid Boolean
zip.function Function Unsigned 8-bit integer ZIP function
zip.last_flag Last Flag Boolean Non zero if contains last zone name in the zone list
zip.multicast_address Multicast address Byte array Multicast address
zip.multicast_length Multicast length Unsigned 8-bit integer Multicast address length
zip.network Network Unsigned 16-bit integer
zip.network_count Count Unsigned 8-bit integer
zip.network_end Network end Unsigned 16-bit integer
zip.network_start Network start Unsigned 16-bit integer
zip.start_index Start index Unsigned 16-bit integer
zip.zero_value Pad (0) Byte array Pad
zip.zone_name Zone String
edonkey.client_hash Client Hash Byte array eDonkey Client Hash
edonkey.clientid Client ID IPv4 address eDonkey Client ID
edonkey.clientinfo eDonkey Client Info No value eDonkey Client Info
edonkey.directory Directory String eDonkey Directory
edonkey.file_hash File Hash Byte array eDonkey File Hash
edonkey.fileinfo eDonkey File Info No value eDonkey File Info
edonkey.hash Hash Byte array eDonkey Hash
edonkey.ip IP IPv4 address eDonkey IP
edonkey.message eDonkey Message No value eDonkey Message
edonkey.message.length Message Length Unsigned 32-bit integer eDonkey Message Length
edonkey.message.type Message Type Unsigned 8-bit integer eDonkey Message Type
edonkey.metatag eDonkey Meta Tag No value eDonkey Meta Tag
edonkey.metatag.id Meta Tag ID Unsigned 8-bit integer eDonkey Meta Tag ID
edonkey.metatag.name Meta Tag Name String eDonkey Meta Tag Name
edonkey.metatag.namesize Meta Tag Name Size Unsigned 16-bit integer eDonkey Meta Tag Name Size
edonkey.metatag.type Meta Tag Type Unsigned 8-bit integer eDonkey Meta Tag Type
edonkey.port Port Unsigned 16-bit integer eDonkey Port
edonkey.protocol Protocol Unsigned 8-bit integer eDonkey Protocol
edonkey.search eDonkey Search No value eDonkey Search
edonkey.server_hash Server Hash Byte array eDonkey Server Hash
edonkey.serverinfo eDonkey Server Info No value eDonkey Server Info
edonkey.string String String eDonkey String
edonkey.string_length String Length Unsigned 16-bit integer eDonkey String Length
overnet.peer Overnet Peer No value Overnet Peer
gift.request Request Boolean TRUE if giFT request
gift.response Response Boolean TRUE if giFT response
h221.Manufacturer H.221 Manufacturer Unsigned 32-bit integer H.221 Manufacturer
h225.DestinationInfo_item Item Unsigned 32-bit integer DestinationInfo/_item
h225.FastStart_item Item Byte array FastStart/_item
h225.H245Control_item Item Byte array H245Control/_item
h225.H323_UserInformation H323_UserInformation No value H323_UserInformation sequence
h225.ParallelH245Control_item Item Byte array ParallelH245Control/_item
h225.RasMessage RasMessage Unsigned 32-bit integer RasMessage choice
h225.abbreviatedNumber abbreviatedNumber No value
h225.activeMC activeMC Boolean
h225.adaptiveBusy adaptiveBusy No value ReleaseCompleteReason/adaptiveBusy
h225.additionalSourceAddresses additionalSourceAddresses No value Setup-UUIE/additionalSourceAddresses
h225.additionalSourceAddresses_item Item No value Setup-UUIE/additionalSourceAddresses/_item
h225.additiveRegistration additiveRegistration No value RegistrationRequest/additiveRegistration
h225.additiveRegistrationNotSupported additiveRegistrationNotSupported No value RegistrationRejectReason/additiveRegistrationNotSupported
h225.address address Unsigned 32-bit integer ExtendedAliasAddress/address
h225.addressNotAvailable addressNotAvailable No value PresentationIndicator/addressNotAvailable
h225.admissionConfirm admissionConfirm No value RasMessage/admissionConfirm
h225.admissionConfirmSequence admissionConfirmSequence No value RasMessage/admissionConfirmSequence
h225.admissionConfirmSequence_item Item No value RasMessage/admissionConfirmSequence/_item
h225.admissionReject admissionReject No value RasMessage/admissionReject
h225.admissionRequest admissionRequest No value RasMessage/admissionRequest
h225.alerting alerting No value H323-UU-PDU/h323-message-body/alerting
h225.alertingAddress alertingAddress No value Alerting-UUIE/alertingAddress
h225.alertingAddress_item Item Unsigned 32-bit integer Alerting-UUIE/alertingAddress/_item
h225.alertingTime alertingTime Date/Time stamp RasUsageInformation/alertingTime
h225.algorithmOID algorithmOID String
h225.algorithmOIDs algorithmOIDs No value GatekeeperRequest/algorithmOIDs
h225.algorithmOIDs_item Item String GatekeeperRequest/algorithmOIDs/_item
h225.alias alias Unsigned 32-bit integer
h225.aliasAddress aliasAddress No value Endpoint/aliasAddress
h225.aliasAddress_item Item Unsigned 32-bit integer Endpoint/aliasAddress/_item
h225.aliasesInconsistent aliasesInconsistent No value
h225.allowedBandWidth allowedBandWidth Unsigned 32-bit integer BandwidthReject/allowedBandWidth
h225.almostOutOfResources almostOutOfResources Boolean ResourcesAvailableIndicate/almostOutOfResources
h225.altGKInfo altGKInfo No value
h225.altGKisPermanent altGKisPermanent Boolean AltGKInfo/altGKisPermanent
h225.alternateEndpoints alternateEndpoints No value
h225.alternateEndpoints_item Item No value
h225.alternateGatekeeper alternateGatekeeper No value
h225.alternateGatekeeper_item Item No value
h225.alternateTransportAddresses alternateTransportAddresses No value
h225.alternativeAddress alternativeAddress Unsigned 32-bit integer Facility-UUIE/alternativeAddress
h225.alternativeAliasAddress alternativeAliasAddress No value Facility-UUIE/alternativeAliasAddress
h225.alternativeAliasAddress_item Item Unsigned 32-bit integer Facility-UUIE/alternativeAliasAddress/_item
h225.amountString amountString String CallCreditServiceControl/amountString
h225.annexE annexE No value AlternateTransportAddresses/annexE
h225.annexE_item Item Unsigned 32-bit integer AlternateTransportAddresses/annexE/_item
h225.ansi_41_uim ansi-41-uim No value MobileUIM/ansi-41-uim
h225.answerCall answerCall Boolean
h225.answeredCall answeredCall Boolean
h225.associatedSessionIds associatedSessionIds No value RTPSession/associatedSessionIds
h225.associatedSessionIds_item Item Unsigned 32-bit integer RTPSession/associatedSessionIds/_item
h225.audio audio No value InfoRequestResponse/perCallInfo/_item/audio
h225.audio_item Item No value InfoRequestResponse/perCallInfo/_item/audio/_item
h225.authenticationCapability authenticationCapability No value GatekeeperRequest/authenticationCapability
h225.authenticationCapability_item Item Unsigned 32-bit integer GatekeeperRequest/authenticationCapability/_item
h225.authenticationMode authenticationMode Unsigned 32-bit integer GatekeeperConfirm/authenticationMode
h225.authenticaton authenticaton Unsigned 32-bit integer SecurityCapabilities/authenticaton
h225.auto auto No value ScnConnectionAggregation/auto
h225.bChannel bChannel No value ScnConnectionType/bChannel
h225.badFormatAddress badFormatAddress No value ReleaseCompleteReason/badFormatAddress
h225.bandWidth bandWidth Unsigned 32-bit integer
h225.bandwidth bandwidth Unsigned 32-bit integer
h225.bandwidthConfirm bandwidthConfirm No value RasMessage/bandwidthConfirm
h225.bandwidthDetails bandwidthDetails No value BandwidthRequest/bandwidthDetails
h225.bandwidthDetails_item Item No value BandwidthRequest/bandwidthDetails/_item
h225.bandwidthReject bandwidthReject No value RasMessage/bandwidthReject
h225.bandwidthRequest bandwidthRequest No value RasMessage/bandwidthRequest
h225.billingMode billingMode Unsigned 32-bit integer CallCreditServiceControl/billingMode
h225.bonded_mode1 bonded-mode1 No value ScnConnectionAggregation/bonded-mode1
h225.bonded_mode2 bonded-mode2 No value ScnConnectionAggregation/bonded-mode2
h225.bonded_mode3 bonded-mode3 No value ScnConnectionAggregation/bonded-mode3
h225.bool bool Boolean Content/bool
h225.busyAddress busyAddress No value ReleaseComplete-UUIE/busyAddress
h225.busyAddress_item Item Unsigned 32-bit integer ReleaseComplete-UUIE/busyAddress/_item
h225.callCreditCapability callCreditCapability No value RegistrationRequest/callCreditCapability
h225.callCreditServiceControl callCreditServiceControl No value ServiceControlDescriptor/callCreditServiceControl
h225.callDurationLimit callDurationLimit Unsigned 32-bit integer CallCreditServiceControl/callDurationLimit
h225.callEnd callEnd No value CapacityReportingSpecification/when/callEnd
h225.callForwarded callForwarded No value FacilityReason/callForwarded
h225.callIdentifier callIdentifier No value
h225.callInProgress callInProgress No value UnregRejectReason/callInProgress
h225.callIndependentSupplementaryService callIndependentSupplementaryService No value Setup-UUIE/conferenceGoal/callIndependentSupplementaryService
h225.callLinkage callLinkage No value
h225.callModel callModel Unsigned 32-bit integer
h225.callProceeding callProceeding No value H323-UU-PDU/h323-message-body/callProceeding
h225.callReferenceValue callReferenceValue Unsigned 32-bit integer
h225.callServices callServices No value
h225.callSignalAddress callSignalAddress No value
h225.callSignalAddress_item Item Unsigned 32-bit integer
h225.callSignaling callSignaling No value InfoRequestResponse/perCallInfo/_item/callSignaling
h225.callSpecific callSpecific No value ServiceControlIndication/callSpecific
h225.callStart callStart No value CapacityReportingSpecification/when/callStart
h225.callStartingPoint callStartingPoint No value RasUsageSpecification/callStartingPoint
h225.callType callType Unsigned 32-bit integer
h225.calledPartyNotRegistered calledPartyNotRegistered No value
h225.callerNotRegistered callerNotRegistered No value
h225.calls calls Unsigned 32-bit integer CallsAvailable/calls
h225.canDisplayAmountString canDisplayAmountString Boolean CallCreditCapability/canDisplayAmountString
h225.canEnforceDurationLimit canEnforceDurationLimit Boolean CallCreditCapability/canEnforceDurationLimit
h225.canMapAlias canMapAlias Boolean
h225.canMapSrcAlias canMapSrcAlias Boolean
h225.canOverlapSend canOverlapSend Boolean Setup-UUIE/canOverlapSend
h225.canReportCallCapacity canReportCallCapacity Boolean CapacityReportingCapability/canReportCallCapacity
h225.capability_negotiation capability-negotiation No value Setup-UUIE/conferenceGoal/capability-negotiation
h225.capacity capacity No value
h225.capacityInfoRequested capacityInfoRequested No value InfoRequest/capacityInfoRequested
h225.capacityReportingCapability capacityReportingCapability No value RegistrationRequest/capacityReportingCapability
h225.capacityReportingSpec capacityReportingSpec No value RegistrationConfirm/capacityReportingSpec
h225.carrier carrier No value
h225.carrierIdentificationCode carrierIdentificationCode Byte array CarrierInfo/carrierIdentificationCode
h225.carrierName carrierName String CarrierInfo/carrierName
h225.channelMultiplier channelMultiplier Unsigned 32-bit integer DataRate/channelMultiplier
h225.channelRate channelRate Unsigned 32-bit integer DataRate/channelRate
h225.cic cic No value CircuitIdentifier/cic
h225.cic_item Item Byte array CicInfo/cic/_item
h225.circuitInfo circuitInfo No value
h225.close close No value ServiceControlSession/reason/close
h225.cname cname String RTPSession/cname
h225.collectDestination collectDestination No value AdmissionRejectReason/collectDestination
h225.collectPIN collectPIN No value AdmissionRejectReason/collectPIN
h225.complete complete No value InfoRequestResponseStatus/complete
h225.compound compound No value Content/compound
h225.compound_item Item No value Content/compound/_item
h225.conferenceAlias conferenceAlias Unsigned 32-bit integer ConferenceList/conferenceAlias
h225.conferenceCalling conferenceCalling Boolean Q954Details/conferenceCalling
h225.conferenceGoal conferenceGoal Unsigned 32-bit integer Setup-UUIE/conferenceGoal
h225.conferenceID conferenceID Byte array
h225.conferenceListChoice conferenceListChoice No value FacilityReason/conferenceListChoice
h225.conferences conferences No value Facility-UUIE/conferences
h225.conferences_item Item No value Facility-UUIE/conferences/_item
h225.connect connect No value H323-UU-PDU/h323-message-body/connect
h225.connectTime connectTime Date/Time stamp RasUsageInformation/connectTime
h225.connectedAddress connectedAddress No value Connect-UUIE/connectedAddress
h225.connectedAddress_item Item Unsigned 32-bit integer Connect-UUIE/connectedAddress/_item
h225.connectionAggregation connectionAggregation Unsigned 32-bit integer Setup-UUIE/connectionParameters/connectionAggregation
h225.connectionParameters connectionParameters No value Setup-UUIE/connectionParameters
h225.connectionType connectionType Unsigned 32-bit integer Setup-UUIE/connectionParameters/connectionType
h225.content content Unsigned 32-bit integer EnumeratedParameter/content
h225.contents contents Unsigned 32-bit integer ServiceControlSession/contents
h225.create create No value Setup-UUIE/conferenceGoal/create
h225.credit credit No value CallCreditServiceControl/billingMode/credit
h225.cryptoEPCert cryptoEPCert No value CryptoH323Token/cryptoEPCert
h225.cryptoEPPwdEncr cryptoEPPwdEncr No value CryptoH323Token/cryptoEPPwdEncr
h225.cryptoEPPwdHash cryptoEPPwdHash No value CryptoH323Token/cryptoEPPwdHash
h225.cryptoFastStart cryptoFastStart No value CryptoH323Token/cryptoFastStart
h225.cryptoGKCert cryptoGKCert No value CryptoH323Token/cryptoGKCert
h225.cryptoGKPwdEncr cryptoGKPwdEncr No value CryptoH323Token/cryptoGKPwdEncr
h225.cryptoGKPwdHash cryptoGKPwdHash No value CryptoH323Token/cryptoGKPwdHash
h225.cryptoTokens cryptoTokens No value
h225.cryptoTokens_item Item Unsigned 32-bit integer
h225.currentCallCapacity currentCallCapacity No value CallCapacity/currentCallCapacity
h225.data data Unsigned 32-bit integer NonStandardParameter/data
h225.dataPartyNumber dataPartyNumber String PartyNumber/dataPartyNumber
h225.dataRatesSupported dataRatesSupported No value
h225.dataRatesSupported_item Item No value
h225.data_item Item No value InfoRequestResponse/perCallInfo/_item/data/_item
h225.debit debit No value CallCreditServiceControl/billingMode/debit
h225.default default No value SecurityServiceMode/default
h225.delay delay Unsigned 32-bit integer RequestInProgress/delay
h225.desiredFeatures desiredFeatures No value
h225.desiredFeatures_item Item No value
h225.desiredProtocols desiredProtocols No value
h225.desiredProtocols_item Item Unsigned 32-bit integer
h225.desiredTunnelledProtocol desiredTunnelledProtocol No value
h225.destAlternatives destAlternatives No value AdmissionRequest/destAlternatives
h225.destAlternatives_item Item No value AdmissionRequest/destAlternatives/_item
h225.destCallSignalAddress destCallSignalAddress Unsigned 32-bit integer
h225.destExtraCRV destExtraCRV No value Setup-UUIE/destExtraCRV
h225.destExtraCRV_item Item Unsigned 32-bit integer Setup-UUIE/destExtraCRV/_item
h225.destExtraCallInfo destExtraCallInfo No value
h225.destExtraCallInfo_item Item Unsigned 32-bit integer
h225.destinationAddress destinationAddress No value Setup-UUIE/destinationAddress
h225.destinationAddress_item Item Unsigned 32-bit integer Setup-UUIE/destinationAddress/_item
h225.destinationCircuitID destinationCircuitID No value CircuitInfo/destinationCircuitID
h225.destinationInfo destinationInfo No value
h225.destinationRejection destinationRejection No value ReleaseCompleteReason/destinationRejection
h225.destinationType destinationType No value
h225.dialedDigits dialedDigits String AliasAddress/dialedDigits
h225.digSig digSig No value IntegrityMechanism/digSig
h225.direct direct No value CallModel/direct
h225.discoveryComplete discoveryComplete Boolean RegistrationRequest/discoveryComplete
h225.discoveryRequired discoveryRequired No value RegistrationRejectReason/discoveryRequired
h225.disengageConfirm disengageConfirm No value RasMessage/disengageConfirm
h225.disengageReason disengageReason Unsigned 32-bit integer DisengageRequest/disengageReason
h225.disengageReject disengageReject No value RasMessage/disengageReject
h225.disengageRequest disengageRequest No value RasMessage/disengageRequest
h225.duplicateAlias duplicateAlias No value RegistrationRejectReason/duplicateAlias
h225.duplicateAlias_item Item Unsigned 32-bit integer RegistrationRejectReason/duplicateAlias/_item
h225.e164Number e164Number No value PartyNumber/e164Number
h225.email_ID email-ID String AliasAddress/email-ID
h225.empty empty No value H323-UU-PDU/h323-message-body/empty
h225.encryption encryption Unsigned 32-bit integer SecurityCapabilities/encryption
h225.end end No value RasUsageSpecification/when/end
h225.endOfRange endOfRange Unsigned 32-bit integer AddressPattern/range/endOfRange
h225.endTime endTime No value RasUsageInfoTypes/endTime
h225.endpointAlias endpointAlias No value
h225.endpointAliasPattern endpointAliasPattern No value UnregistrationRequest/endpointAliasPattern
h225.endpointAliasPattern_item Item Unsigned 32-bit integer UnregistrationRequest/endpointAliasPattern/_item
h225.endpointAlias_item Item Unsigned 32-bit integer
h225.endpointControlled endpointControlled No value TransportQOS/endpointControlled
h225.endpointIdentifier endpointIdentifier String
h225.endpointType endpointType No value
h225.endpointVendor endpointVendor No value RegistrationRequest/endpointVendor
h225.enforceCallDurationLimit enforceCallDurationLimit Boolean CallCreditServiceControl/enforceCallDurationLimit
h225.enterpriseNumber enterpriseNumber String VendorIdentifier/enterpriseNumber
h225.esn esn String ANSI-41-UIM/esn
h225.exceedsCallCapacity exceedsCallCapacity No value AdmissionRejectReason/exceedsCallCapacity
h225.facility facility No value H323-UU-PDU/h323-message-body/facility
h225.facilityCallDeflection facilityCallDeflection No value ReleaseCompleteReason/facilityCallDeflection
h225.failed failed No value ServiceControlResponse/result/failed
h225.fastConnectRefused fastConnectRefused No value
h225.fastStart fastStart No value
h225.fastStart_item_length fastStart item length Unsigned 32-bit integer fastStart item length
h225.featureServerAlias featureServerAlias Unsigned 32-bit integer RegistrationConfirm/featureServerAlias
h225.featureSet featureSet No value
h225.featureSetUpdate featureSetUpdate No value FacilityReason/featureSetUpdate
h225.forcedDrop forcedDrop No value DisengageReason/forcedDrop
h225.forwardedElements forwardedElements No value FacilityReason/forwardedElements
h225.fullRegistrationRequired fullRegistrationRequired No value RegistrationRejectReason/fullRegistrationRequired
h225.gatekeeper gatekeeper No value EndpointType/gatekeeper
h225.gatekeeperConfirm gatekeeperConfirm No value RasMessage/gatekeeperConfirm
h225.gatekeeperControlled gatekeeperControlled No value TransportQOS/gatekeeperControlled
h225.gatekeeperId gatekeeperId String CryptoH323Token/cryptoGKPwdHash/gatekeeperId
h225.gatekeeperIdentifier gatekeeperIdentifier String
h225.gatekeeperReject gatekeeperReject No value RasMessage/gatekeeperReject
h225.gatekeeperRequest gatekeeperRequest No value RasMessage/gatekeeperRequest
h225.gatekeeperResources gatekeeperResources No value ReleaseCompleteReason/gatekeeperResources
h225.gatekeeperRouted gatekeeperRouted No value CallModel/gatekeeperRouted
h225.gateway gateway No value EndpointType/gateway
h225.gatewayDataRate gatewayDataRate No value AdmissionRequest/gatewayDataRate
h225.gatewayResources gatewayResources No value ReleaseCompleteReason/gatewayResources
h225.genericData genericData No value
h225.genericDataReason genericDataReason No value
h225.genericData_item Item No value
h225.globalCallId globalCallId Byte array CallLinkage/globalCallId
h225.group group String
h225.gsm_uim gsm-uim No value MobileUIM/gsm-uim
h225.guid guid Byte array CallIdentifier/guid
h225.h221 h221 No value ScnConnectionAggregation/h221
h225.h221NonStandard h221NonStandard No value NonStandardIdentifier/h221NonStandard
h225.h245 h245 No value InfoRequestResponse/perCallInfo/_item/h245
h225.h245Address h245Address Unsigned 32-bit integer
h225.h245Control h245Control No value H323-UU-PDU/h245Control
h225.h245SecurityCapability h245SecurityCapability No value Setup-UUIE/h245SecurityCapability
h225.h245SecurityCapability_item Item Unsigned 32-bit integer Setup-UUIE/h245SecurityCapability/_item
h225.h245SecurityMode h245SecurityMode Unsigned 32-bit integer
h225.h245Tunneling h245Tunneling Boolean H323-UU-PDU/h245Tunneling
h225.h245ip6Address h245ip6Address No value H245TransportAddress/h245ip6Address
h225.h245ipAddress h245ipAddress No value H245TransportAddress/h245ipAddress
h225.h245ipSourceRoute h245ipSourceRoute No value H245TransportAddress/h245ipSourceRoute
h225.h245ipv4 h245ipv4 IPv4 address H245TransportAddress/h245ipAddress/h245ipv4
h225.h245ipv4port h245ipv4port Unsigned 32-bit integer H245TransportAddress/h245ipAddress/h245ipv4port
h225.h245ipv6 h245ipv6 IPv6 address H245TransportAddress/h245ip6Address/h245ipv6
h225.h245ipv6port h245ipv6port Unsigned 32-bit integer H245TransportAddress/h245ip6Address/h245ipv6port
h225.h245ipxAddress h245ipxAddress No value H245TransportAddress/h245ipxAddress
h225.h245ipxport h245ipxport Byte array H245TransportAddress/h245ipxAddress/h245ipxport
h225.h245netBios h245netBios Byte array H245TransportAddress/h245netBios
h225.h245nsap h245nsap Byte array H245TransportAddress/h245nsap
h225.h245route h245route No value H245TransportAddress/h245ipSourceRoute/h245route
h225.h245route_item Item Byte array H245TransportAddress/h245ipSourceRoute/h245route/_item
h225.h245routeip h245routeip Byte array H245TransportAddress/h245ipSourceRoute/h245routeip
h225.h245routeport h245routeport Unsigned 32-bit integer H245TransportAddress/h245ipSourceRoute/h245routeport
h225.h245routing h245routing Unsigned 32-bit integer H245TransportAddress/h245ipSourceRoute/h245routing
h225.h248Message h248Message Byte array StimulusControl/h248Message
h225.h310 h310 No value SupportedProtocols/h310
h225.h310GwCallsAvailable h310GwCallsAvailable No value CallCapacityInfo/h310GwCallsAvailable
h225.h310GwCallsAvailable_item Item No value CallCapacityInfo/h310GwCallsAvailable/_item
h225.h320 h320 No value SupportedProtocols/h320
h225.h320GwCallsAvailable h320GwCallsAvailable No value CallCapacityInfo/h320GwCallsAvailable
h225.h320GwCallsAvailable_item Item No value CallCapacityInfo/h320GwCallsAvailable/_item
h225.h321 h321 No value SupportedProtocols/h321
h225.h321GwCallsAvailable h321GwCallsAvailable No value CallCapacityInfo/h321GwCallsAvailable
h225.h321GwCallsAvailable_item Item No value CallCapacityInfo/h321GwCallsAvailable/_item
h225.h322 h322 No value SupportedProtocols/h322
h225.h322GwCallsAvailable h322GwCallsAvailable No value CallCapacityInfo/h322GwCallsAvailable
h225.h322GwCallsAvailable_item Item No value CallCapacityInfo/h322GwCallsAvailable/_item
h225.h323 h323 No value SupportedProtocols/h323
h225.h323GwCallsAvailable h323GwCallsAvailable No value CallCapacityInfo/h323GwCallsAvailable
h225.h323GwCallsAvailable_item Item No value CallCapacityInfo/h323GwCallsAvailable/_item
h225.h323_ID h323-ID String AliasAddress/h323-ID
h225.h323_message_body h323-message-body Unsigned 32-bit integer H323-UU-PDU/h323-message-body
h225.h323_uu_pdu h323-uu-pdu No value H323-UserInformation/h323-uu-pdu
h225.h323pdu h323pdu No value InfoRequestResponse/perCallInfo/_item/pdu/_item/h323pdu
h225.h324 h324 No value SupportedProtocols/h324
h225.h324GwCallsAvailable h324GwCallsAvailable No value CallCapacityInfo/h324GwCallsAvailable
h225.h324GwCallsAvailable_item Item No value CallCapacityInfo/h324GwCallsAvailable/_item
h225.h4501SupplementaryService h4501SupplementaryService No value H323-UU-PDU/h4501SupplementaryService
h225.h4501SupplementaryService_item Item Byte array H323-UU-PDU/h4501SupplementaryService/_item
h225.hMAC_MD5 hMAC-MD5 No value NonIsoIntegrityMechanism/hMAC-MD5
h225.hMAC_iso10118_2_l hMAC-iso10118-2-l Unsigned 32-bit integer NonIsoIntegrityMechanism/hMAC-iso10118-2-l
h225.hMAC_iso10118_2_s hMAC-iso10118-2-s Unsigned 32-bit integer NonIsoIntegrityMechanism/hMAC-iso10118-2-s
h225.hMAC_iso10118_3 hMAC-iso10118-3 String NonIsoIntegrityMechanism/hMAC-iso10118-3
h225.hopCount hopCount Unsigned 32-bit integer Setup-UUIE/hopCount
h225.hopCountExceeded hopCountExceeded No value
h225.hplmn hplmn String GSM-UIM/hplmn
h225.hybrid1536 hybrid1536 No value ScnConnectionType/hybrid1536
h225.hybrid1920 hybrid1920 No value ScnConnectionType/hybrid1920
h225.hybrid2x64 hybrid2x64 No value ScnConnectionType/hybrid2x64
h225.hybrid384 hybrid384 No value ScnConnectionType/hybrid384
h225.icv icv Byte array ICV/icv
h225.id id Unsigned 32-bit integer TunnelledProtocol/id
h225.imei imei String GSM-UIM/imei
h225.imsi imsi String
h225.inConf inConf No value ReleaseCompleteReason/inConf
h225.inIrr inIrr No value RasUsageSpecification/when/inIrr
h225.incomplete incomplete No value InfoRequestResponseStatus/incomplete
h225.incompleteAddress incompleteAddress No value
h225.infoRequest infoRequest No value RasMessage/infoRequest
h225.infoRequestAck infoRequestAck No value RasMessage/infoRequestAck
h225.infoRequestNak infoRequestNak No value RasMessage/infoRequestNak
h225.infoRequestResponse infoRequestResponse No value RasMessage/infoRequestResponse
h225.information information No value H323-UU-PDU/h323-message-body/information
h225.insufficientResources insufficientResources No value BandRejectReason/insufficientResources
h225.integrity integrity Unsigned 32-bit integer SecurityCapabilities/integrity
h225.integrityCheckValue integrityCheckValue No value
h225.integrity_item Item Unsigned 32-bit integer
h225.internationalNumber internationalNumber No value PublicTypeOfNumber/internationalNumber
h225.invalidAlias invalidAlias No value RegistrationRejectReason/invalidAlias
h225.invalidCID invalidCID No value ReleaseCompleteReason/invalidCID
h225.invalidCall invalidCall No value InfoRequestResponseStatus/invalidCall
h225.invalidCallSignalAddress invalidCallSignalAddress No value RegistrationRejectReason/invalidCallSignalAddress
h225.invalidConferenceID invalidConferenceID No value BandRejectReason/invalidConferenceID
h225.invalidEndpointIdentifier invalidEndpointIdentifier No value AdmissionRejectReason/invalidEndpointIdentifier
h225.invalidPermission invalidPermission No value
h225.invalidRASAddress invalidRASAddress No value RegistrationRejectReason/invalidRASAddress
h225.invalidRevision invalidRevision No value
h225.invalidTerminalAliases invalidTerminalAliases No value RegistrationRejectReason/invalidTerminalAliases
h225.invalidTerminalType invalidTerminalType No value RegistrationRejectReason/invalidTerminalType
h225.invite invite No value Setup-UUIE/conferenceGoal/invite
h225.ip ip IPv4 address TransportAddress/ipAddress/ip
h225.ip6Address ip6Address No value TransportAddress/ip6Address
h225.ipAddress ipAddress No value TransportAddress/ipAddress
h225.ipSourceRoute ipSourceRoute No value TransportAddress/ipSourceRoute
h225.ipsec ipsec No value H245Security/ipsec
h225.ipxAddress ipxAddress No value TransportAddress/ipxAddress
h225.irrFrequency irrFrequency Unsigned 32-bit integer AdmissionConfirm/irrFrequency
h225.irrFrequencyInCall irrFrequencyInCall Unsigned 32-bit integer RegistrationConfirm/preGrantedARQ/irrFrequencyInCall
h225.irrStatus irrStatus Unsigned 32-bit integer InfoRequestResponse/irrStatus
h225.isText isText No value StimulusControl/isText
h225.iso9797 iso9797 String IntegrityMechanism/iso9797
h225.isoAlgorithm isoAlgorithm String EncryptIntAlg/isoAlgorithm
h225.join join No value Setup-UUIE/conferenceGoal/join
h225.keepAlive keepAlive Boolean RegistrationRequest/keepAlive
h225.language language No value
h225.language_item Item String
h225.level1RegionalNumber level1RegionalNumber No value PrivateTypeOfNumber/level1RegionalNumber
h225.level2RegionalNumber level2RegionalNumber No value PrivateTypeOfNumber/level2RegionalNumber
h225.localNumber localNumber No value PrivateTypeOfNumber/localNumber
h225.locationConfirm locationConfirm No value RasMessage/locationConfirm
h225.locationReject locationReject No value RasMessage/locationReject
h225.locationRequest locationRequest No value RasMessage/locationRequest
h225.loose loose No value
h225.maintainConnection maintainConnection Boolean
h225.maintenance maintenance No value UnregRequestReason/maintenance
h225.makeCall makeCall Boolean RegistrationConfirm/preGrantedARQ/makeCall
h225.manufacturerCode manufacturerCode Unsigned 32-bit integer H221NonStandard/manufacturerCode
h225.maximumCallCapacity maximumCallCapacity No value CallCapacity/maximumCallCapacity
h225.mc mc Boolean EndpointType/mc
h225.mcu mcu No value EndpointType/mcu
h225.mcuCallsAvailable mcuCallsAvailable No value CallCapacityInfo/mcuCallsAvailable
h225.mcuCallsAvailable_item Item No value CallCapacityInfo/mcuCallsAvailable/_item
h225.mdn mdn String ANSI-41-UIM/mdn
h225.mediaWaitForConnect mediaWaitForConnect Boolean Setup-UUIE/mediaWaitForConnect
h225.member member No value GroupID/member
h225.member_item Item Unsigned 32-bit integer GroupID/member/_item
h225.messageContent messageContent No value H323-UU-PDU/tunnelledSignallingMessage/messageContent
h225.messageContent_item Item Unsigned 32-bit integer H323-UU-PDU/tunnelledSignallingMessage/messageContent/_item
h225.messageNotUnderstood messageNotUnderstood Byte array UnknownMessageResponse/messageNotUnderstood
h225.mid mid String ANSI-41-UIM/system-id/mid
h225.min min String ANSI-41-UIM/min
h225.mobileUIM mobileUIM Unsigned 32-bit integer AliasAddress/mobileUIM
h225.modifiedSrcInfo modifiedSrcInfo No value
h225.modifiedSrcInfo_item Item Unsigned 32-bit integer
h225.mscid mscid String ANSI-41-UIM/mscid
h225.msisdn msisdn String
h225.multicast multicast Boolean BandwidthDetails/multicast
h225.multipleCalls multipleCalls Boolean
h225.multirate multirate No value ScnConnectionType/multirate
h225.nToN nToN No value CallType/nToN
h225.nToOne nToOne No value CallType/nToOne
h225.nakReason nakReason Unsigned 32-bit integer InfoRequestNak/nakReason
h225.nationalNumber nationalNumber No value PublicTypeOfNumber/nationalNumber
h225.nationalStandardPartyNumber nationalStandardPartyNumber String PartyNumber/nationalStandardPartyNumber
h225.needResponse needResponse Boolean InfoRequestResponse/needResponse
h225.needToRegister needToRegister Boolean AlternateGK/needToRegister
h225.neededFeatureNotSupported neededFeatureNotSupported No value
h225.neededFeatures neededFeatures No value
h225.neededFeatures_item Item No value
h225.nested nested No value Content/nested
h225.nested_item Item No value Content/nested/_item
h225.nestedcryptoToken nestedcryptoToken Unsigned 32-bit integer CryptoH323Token/nestedcryptoToken
h225.netBios netBios Byte array TransportAddress/netBios
h225.netnum netnum Byte array
h225.networkSpecificNumber networkSpecificNumber No value PublicTypeOfNumber/networkSpecificNumber
h225.newConnectionNeeded newConnectionNeeded No value ReleaseCompleteReason/newConnectionNeeded
h225.newTokens newTokens No value FacilityReason/newTokens
h225.nextSegmentRequested nextSegmentRequested Unsigned 32-bit integer InfoRequest/nextSegmentRequested
h225.noBandwidth noBandwidth No value ReleaseCompleteReason/noBandwidth
h225.noControl noControl No value TransportQOS/noControl
h225.noH245 noH245 No value FacilityReason/noH245
h225.noPermission noPermission No value ReleaseCompleteReason/noPermission
h225.noRouteToDestination noRouteToDestination No value
h225.noSecurity noSecurity No value H245Security/noSecurity
h225.node node Byte array
h225.nonIsoIM nonIsoIM Unsigned 32-bit integer IntegrityMechanism/nonIsoIM
h225.nonStandard nonStandard No value
h225.nonStandardAddress nonStandardAddress No value
h225.nonStandardControl nonStandardControl No value H323-UU-PDU/nonStandardControl
h225.nonStandardControl_item Item No value H323-UU-PDU/nonStandardControl/_item
h225.nonStandardData nonStandardData No value
h225.nonStandardIdentifier nonStandardIdentifier Unsigned 32-bit integer NonStandardParameter/nonStandardIdentifier
h225.nonStandardMessage nonStandardMessage No value RasMessage/nonStandardMessage
h225.nonStandardProtocol nonStandardProtocol No value SupportedProtocols/nonStandardProtocol
h225.nonStandardReason nonStandardReason No value ReleaseCompleteReason/nonStandardReason
h225.nonStandardUsageFields nonStandardUsageFields No value RasUsageInformation/nonStandardUsageFields
h225.nonStandardUsageFields_item Item No value RasUsageInformation/nonStandardUsageFields/_item
h225.nonStandardUsageTypes nonStandardUsageTypes No value RasUsageInfoTypes/nonStandardUsageTypes
h225.nonStandardUsageTypes_item Item No value RasUsageInfoTypes/nonStandardUsageTypes/_item
h225.none none No value
h225.normalDrop normalDrop No value DisengageReason/normalDrop
h225.notAvailable notAvailable No value ServiceControlResponse/result/notAvailable
h225.notBound notBound No value BandRejectReason/notBound
h225.notCurrentlyRegistered notCurrentlyRegistered No value UnregRejectReason/notCurrentlyRegistered
h225.notRegistered notRegistered No value
h225.notify notify No value H323-UU-PDU/h323-message-body/notify
h225.nsap nsap Byte array TransportAddress/nsap
h225.number16 number16 Unsigned 32-bit integer Content/number16
h225.number32 number32 Unsigned 32-bit integer Content/number32
h225.number8 number8 Unsigned 32-bit integer Content/number8
h225.numberOfScnConnections numberOfScnConnections Unsigned 32-bit integer Setup-UUIE/connectionParameters/numberOfScnConnections
h225.object object String NonStandardIdentifier/object
h225.oid oid String GenericIdentifier/oid
h225.oneToN oneToN No value CallType/oneToN
h225.open open No value ServiceControlSession/reason/open
h225.originator originator Boolean InfoRequestResponse/perCallInfo/_item/originator
h225.pISNSpecificNumber pISNSpecificNumber No value PrivateTypeOfNumber/pISNSpecificNumber
h225.parallelH245Control parallelH245Control No value Setup-UUIE/parallelH245Control
h225.parameters parameters No value GenericData/parameters
h225.parameters_item Item No value GenericData/parameters/_item
h225.partyNumber partyNumber Unsigned 32-bit integer AliasAddress/partyNumber
h225.pdu pdu No value InfoRequestResponse/perCallInfo/_item/pdu
h225.pdu_item Item No value InfoRequestResponse/perCallInfo/_item/pdu/_item
h225.perCallInfo perCallInfo No value InfoRequestResponse/perCallInfo
h225.perCallInfo_item Item No value InfoRequestResponse/perCallInfo/_item
h225.permissionDenied permissionDenied No value UnregRejectReason/permissionDenied
h225.pointCode pointCode Byte array CicInfo/pointCode
h225.pointToPoint pointToPoint No value CallType/pointToPoint
h225.port port Unsigned 32-bit integer TransportAddress/ipAddress/port
h225.preGrantedARQ preGrantedARQ No value RegistrationConfirm/preGrantedARQ
h225.prefix prefix Unsigned 32-bit integer SupportedPrefix/prefix
h225.presentationAllowed presentationAllowed No value PresentationIndicator/presentationAllowed
h225.presentationIndicator presentationIndicator Unsigned 32-bit integer
h225.presentationRestricted presentationRestricted No value PresentationIndicator/presentationRestricted
h225.priority priority Unsigned 32-bit integer
h225.privateNumber privateNumber No value PartyNumber/privateNumber
h225.privateNumberDigits privateNumberDigits String PrivatePartyNumber/privateNumberDigits
h225.privateTypeOfNumber privateTypeOfNumber Unsigned 32-bit integer PrivatePartyNumber/privateTypeOfNumber
h225.productId productId String VendorIdentifier/productId
h225.progress progress No value H323-UU-PDU/h323-message-body/progress
h225.protocol protocol No value
h225.protocolIdentifier protocolIdentifier String
h225.protocolType protocolType String TunnelledProtocolAlternateIdentifier/protocolType
h225.protocolVariant protocolVariant String TunnelledProtocolAlternateIdentifier/protocolVariant
h225.protocol_discriminator protocol-discriminator Unsigned 32-bit integer H323-UserInformation/user-data/protocol-discriminator
h225.protocol_item Item Unsigned 32-bit integer
h225.protocols protocols No value ResourcesAvailableIndicate/protocols
h225.protocols_item Item Unsigned 32-bit integer ResourcesAvailableIndicate/protocols/_item
h225.provisionalRespToH245Tunneling provisionalRespToH245Tunneling No value H323-UU-PDU/provisionalRespToH245Tunneling
h225.publicNumberDigits publicNumberDigits String PublicPartyNumber/publicNumberDigits
h225.publicTypeOfNumber publicTypeOfNumber Unsigned 32-bit integer PublicPartyNumber/publicTypeOfNumber
h225.q932Full q932Full Boolean QseriesOptions/q932Full
h225.q951Full q951Full Boolean QseriesOptions/q951Full
h225.q952Full q952Full Boolean QseriesOptions/q952Full
h225.q953Full q953Full Boolean QseriesOptions/q953Full
h225.q954Info q954Info No value QseriesOptions/q954Info
h225.q955Full q955Full Boolean QseriesOptions/q955Full
h225.q956Full q956Full Boolean QseriesOptions/q956Full
h225.q957Full q957Full Boolean QseriesOptions/q957Full
h225.qosControlNotSupported qosControlNotSupported No value AdmissionRejectReason/qosControlNotSupported
h225.qualificationInformationCode qualificationInformationCode Byte array ANSI-41-UIM/qualificationInformationCode
h225.range range No value AddressPattern/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 No value
h225.rasAddress_item Item Unsigned 32-bit integer
h225.raw raw Byte array Content/raw
h225.reason reason Unsigned 32-bit integer
h225.recvAddress recvAddress Unsigned 32-bit integer TransportChannelInfo/recvAddress
h225.refresh refresh No value ServiceControlSession/reason/refresh
h225.registrationConfirm registrationConfirm No value RasMessage/registrationConfirm
h225.registrationReject registrationReject No value RasMessage/registrationReject
h225.registrationRequest registrationRequest No value RasMessage/registrationRequest
h225.rejectReason rejectReason Unsigned 32-bit integer GatekeeperReject/rejectReason
h225.releaseComplete releaseComplete No value H323-UU-PDU/h323-message-body/releaseComplete
h225.releaseCompleteCauseIE releaseCompleteCauseIE Byte array CallTerminationCause/releaseCompleteCauseIE
h225.remoteExtensionAddress remoteExtensionAddress Unsigned 32-bit integer
h225.remoteExtensionAddress_item Item Unsigned 32-bit integer
h225.replaceWithConferenceInvite replaceWithConferenceInvite Byte array ReleaseCompleteReason/replaceWithConferenceInvite
h225.replacementFeatureSet replacementFeatureSet Boolean FeatureSet/replacementFeatureSet
h225.replyAddress replyAddress Unsigned 32-bit integer
h225.requestDenied requestDenied No value
h225.requestInProgress requestInProgress No value RasMessage/requestInProgress
h225.requestSeqNum requestSeqNum Unsigned 32-bit integer
h225.requestToDropOther requestToDropOther No value DisengageRejectReason/requestToDropOther
h225.required required No value RasUsageSpecification/required
h225.reregistrationRequired reregistrationRequired No value UnregRequestReason/reregistrationRequired
h225.resourceUnavailable resourceUnavailable No value
h225.resourcesAvailableConfirm resourcesAvailableConfirm No value RasMessage/resourcesAvailableConfirm
h225.resourcesAvailableIndicate resourcesAvailableIndicate No value RasMessage/resourcesAvailableIndicate
h225.restart restart No value RegistrationRequest/restart
h225.result result Unsigned 32-bit integer ServiceControlResponse/result
h225.route route No value TransportAddress/ipSourceRoute/route
h225.routeCallToGatekeeper routeCallToGatekeeper No value
h225.routeCallToMC routeCallToMC No value FacilityReason/routeCallToMC
h225.routeCallToSCN routeCallToSCN No value AdmissionRejectReason/routeCallToSCN
h225.routeCallToSCN_item Item Unsigned 32-bit integer AdmissionRejectReason/routeCallToSCN/_item
h225.routeCalltoSCN routeCalltoSCN No value LocationRejectReason/routeCalltoSCN
h225.routeCalltoSCN_item Item Unsigned 32-bit integer LocationRejectReason/routeCalltoSCN/_item
h225.route_item Item Byte array TransportAddress/ipSourceRoute/route/_item
h225.routing routing Unsigned 32-bit integer TransportAddress/ipSourceRoute/routing
h225.rtcpAddress rtcpAddress No value RTPSession/rtcpAddress
h225.rtcpAddresses rtcpAddresses No value BandwidthDetails/rtcpAddresses
h225.rtpAddress rtpAddress No value RTPSession/rtpAddress
h225.screeningIndicator screeningIndicator Unsigned 32-bit integer
h225.sctp sctp No value AlternateTransportAddresses/sctp
h225.sctp_item Item Unsigned 32-bit integer AlternateTransportAddresses/sctp/_item
h225.securityCertificateDateInvalid securityCertificateDateInvalid No value SecurityErrors/securityCertificateDateInvalid
h225.securityCertificateExpired securityCertificateExpired No value SecurityErrors/securityCertificateExpired
h225.securityCertificateIncomplete securityCertificateIncomplete No value SecurityErrors/securityCertificateIncomplete
h225.securityCertificateMissing securityCertificateMissing No value SecurityErrors/securityCertificateMissing
h225.securityCertificateNotReadable securityCertificateNotReadable No value SecurityErrors/securityCertificateNotReadable
h225.securityCertificateRevoked securityCertificateRevoked No value SecurityErrors/securityCertificateRevoked
h225.securityCertificateSignatureInvalid securityCertificateSignatureInvalid No value SecurityErrors/securityCertificateSignatureInvalid
h225.securityDHmismatch securityDHmismatch No value
h225.securityDenial securityDenial No value
h225.securityDenied securityDenied No value ReleaseCompleteReason/securityDenied
h225.securityError securityError Unsigned 32-bit integer ReleaseCompleteReason/securityError
h225.securityIntegrityFailed securityIntegrityFailed No value
h225.securityReplay securityReplay No value
h225.securityUnknownCA securityUnknownCA No value SecurityErrors/securityUnknownCA
h225.securityUnsupportedCertificateAlgOID securityUnsupportedCertificateAlgOID No value SecurityErrors/securityUnsupportedCertificateAlgOID
h225.securityWrongGeneralID securityWrongGeneralID No value
h225.securityWrongOID securityWrongOID No value
h225.securityWrongSendersID securityWrongSendersID No value
h225.securityWrongSyncTime securityWrongSyncTime No value
h225.segment segment Unsigned 32-bit integer InfoRequestResponseStatus/segment
h225.segmentedResponseSupported segmentedResponseSupported No value InfoRequest/segmentedResponseSupported
h225.sendAddress sendAddress Unsigned 32-bit integer TransportChannelInfo/sendAddress
h225.sender sender Boolean BandwidthDetails/sender
h225.sent sent Boolean InfoRequestResponse/perCallInfo/_item/pdu/_item/sent
h225.serviceControl serviceControl No value
h225.serviceControlIndication serviceControlIndication No value RasMessage/serviceControlIndication
h225.serviceControlResponse serviceControlResponse No value RasMessage/serviceControlResponse
h225.serviceControl_item Item No value
h225.sesn sesn String ANSI-41-UIM/sesn
h225.sessionId sessionId Unsigned 32-bit integer ServiceControlSession/sessionId
h225.set set Byte array EndpointType/set
h225.setup setup No value H323-UU-PDU/h323-message-body/setup
h225.setupAcknowledge setupAcknowledge No value H323-UU-PDU/h323-message-body/setupAcknowledge
h225.sid sid String ANSI-41-UIM/system-id/sid
h225.signal signal Byte array ServiceControlDescriptor/signal
h225.sip sip No value SupportedProtocols/sip
h225.sipGwCallsAvailable sipGwCallsAvailable No value CallCapacityInfo/sipGwCallsAvailable
h225.sipGwCallsAvailable_item Item No value CallCapacityInfo/sipGwCallsAvailable/_item
h225.soc soc String ANSI-41-UIM/soc
h225.sourceAddress sourceAddress No value Setup-UUIE/sourceAddress
h225.sourceAddress_item Item Unsigned 32-bit integer Setup-UUIE/sourceAddress/_item
h225.sourceCallSignalAddress sourceCallSignalAddress Unsigned 32-bit integer Setup-UUIE/sourceCallSignalAddress
h225.sourceCircuitID sourceCircuitID No value CircuitInfo/sourceCircuitID
h225.sourceEndpointInfo sourceEndpointInfo No value LocationRequest/sourceEndpointInfo
h225.sourceEndpointInfo_item Item Unsigned 32-bit integer LocationRequest/sourceEndpointInfo/_item
h225.sourceInfo sourceInfo No value Setup-UUIE/sourceInfo
h225.sourceInfo_item Item Unsigned 32-bit integer LocationRequest/sourceInfo/_item
h225.srcAlternatives srcAlternatives No value AdmissionRequest/srcAlternatives
h225.srcAlternatives_item Item No value AdmissionRequest/srcAlternatives/_item
h225.srcCallSignalAddress srcCallSignalAddress Unsigned 32-bit integer AdmissionRequest/srcCallSignalAddress
h225.srcInfo srcInfo No value AdmissionRequest/srcInfo
h225.srcInfo_item Item Unsigned 32-bit integer AdmissionRequest/srcInfo/_item
h225.ssrc ssrc Unsigned 32-bit integer RTPSession/ssrc
h225.standard standard Unsigned 32-bit integer GenericIdentifier/standard
h225.start start No value RasUsageSpecification/when/start
h225.startH245 startH245 No value FacilityReason/startH245
h225.startOfRange startOfRange Unsigned 32-bit integer AddressPattern/range/startOfRange
h225.startTime startTime No value RasUsageInfoTypes/startTime
h225.started started No value ServiceControlResponse/result/started
h225.status status No value H323-UU-PDU/h323-message-body/status
h225.statusInquiry statusInquiry No value H323-UU-PDU/h323-message-body/statusInquiry
h225.stimulusControl stimulusControl No value H323-UU-PDU/stimulusControl
h225.stopped stopped No value ServiceControlResponse/result/stopped
h225.strict strict No value
h225.subIdentifier subIdentifier String TunnelledProtocol/subIdentifier
h225.subscriberNumber subscriberNumber No value PublicTypeOfNumber/subscriberNumber
h225.substituteConfIDs substituteConfIDs No value InfoRequestResponse/perCallInfo/_item/substituteConfIDs
h225.substituteConfIDs_item Item Byte array InfoRequestResponse/perCallInfo/_item/substituteConfIDs/_item
h225.supportedFeatures supportedFeatures No value
h225.supportedFeatures_item Item No value
h225.supportedH248Packages supportedH248Packages No value RegistrationRequest/supportedH248Packages
h225.supportedH248Packages_item Item Byte array RegistrationRequest/supportedH248Packages/_item
h225.supportedPrefixes supportedPrefixes No value
h225.supportedPrefixes_item Item No value
h225.supportedProtocols supportedProtocols No value
h225.supportedProtocols_item Item Unsigned 32-bit integer
h225.supportedTunnelledProtocols supportedTunnelledProtocols No value EndpointType/supportedTunnelledProtocols
h225.supportedTunnelledProtocols_item Item No value EndpointType/supportedTunnelledProtocols/_item
h225.supportsACFSequences supportsACFSequences No value RegistrationRequest/supportsACFSequences
h225.supportsAdditiveRegistration supportsAdditiveRegistration No value RegistrationConfirm/supportsAdditiveRegistration
h225.supportsAltGK supportsAltGK No value
h225.symmetricOperationRequired symmetricOperationRequired No value Setup-UUIE/symmetricOperationRequired
h225.systemAccessType systemAccessType Byte array ANSI-41-UIM/systemAccessType
h225.systemMyTypeCode systemMyTypeCode Byte array ANSI-41-UIM/systemMyTypeCode
h225.system_id system-id Unsigned 32-bit integer ANSI-41-UIM/system-id
h225.t120OnlyGwCallsAvailable t120OnlyGwCallsAvailable No value CallCapacityInfo/t120OnlyGwCallsAvailable
h225.t120OnlyGwCallsAvailable_item Item No value CallCapacityInfo/t120OnlyGwCallsAvailable/_item
h225.t120_only t120-only No value SupportedProtocols/t120-only
h225.t35CountryCode t35CountryCode Unsigned 32-bit integer H221NonStandard/t35CountryCode
h225.t35Extension t35Extension Unsigned 32-bit integer H221NonStandard/t35Extension
h225.t38FaxAnnexbOnly t38FaxAnnexbOnly No value SupportedProtocols/t38FaxAnnexbOnly
h225.t38FaxAnnexbOnlyGwCallsAvailable t38FaxAnnexbOnlyGwCallsAvailable No value CallCapacityInfo/t38FaxAnnexbOnlyGwCallsAvailable
h225.t38FaxAnnexbOnlyGwCallsAvailable_item Item No value CallCapacityInfo/t38FaxAnnexbOnlyGwCallsAvailable/_item
h225.t38FaxProfile t38FaxProfile No value T38FaxAnnexbOnlyCaps/t38FaxProfile
h225.t38FaxProtocol t38FaxProtocol Unsigned 32-bit integer T38FaxAnnexbOnlyCaps/t38FaxProtocol
h225.tcp tcp No value UseSpecifiedTransport/tcp
h225.telexPartyNumber telexPartyNumber String PartyNumber/telexPartyNumber
h225.terminal terminal No value EndpointType/terminal
h225.terminalAlias terminalAlias No value
h225.terminalAliasPattern terminalAliasPattern No value
h225.terminalAliasPattern_item Item Unsigned 32-bit integer
h225.terminalAlias_item Item Unsigned 32-bit integer
h225.terminalCallsAvailable terminalCallsAvailable No value CallCapacityInfo/terminalCallsAvailable
h225.terminalCallsAvailable_item Item No value CallCapacityInfo/terminalCallsAvailable/_item
h225.terminalExcluded terminalExcluded No value GatekeeperRejectReason/terminalExcluded
h225.terminalType terminalType No value RegistrationRequest/terminalType
h225.terminationCause terminationCause No value RasUsageInfoTypes/terminationCause
h225.text text String Content/text
h225.threadId threadId Byte array CallLinkage/threadId
h225.threePartyService threePartyService Boolean Q954Details/threePartyService
h225.timeStamp timeStamp Date/Time stamp
h225.timeToLive timeToLive Unsigned 32-bit integer
h225.tls tls No value H245Security/tls
h225.tmsi tmsi Byte array GSM-UIM/tmsi
h225.token token No value
h225.tokens tokens No value
h225.tokens_item Item No value
h225.totalBandwidthRestriction totalBandwidthRestriction Unsigned 32-bit integer RegistrationConfirm/preGrantedARQ/totalBandwidthRestriction
h225.transport transport Unsigned 32-bit integer Content/transport
h225.transportID transportID Unsigned 32-bit integer AliasAddress/transportID
h225.transportNotSupported transportNotSupported No value RegistrationRejectReason/transportNotSupported
h225.transportQOS transportQOS Unsigned 32-bit integer
h225.transportQOSNotSupported transportQOSNotSupported No value RegistrationRejectReason/transportQOSNotSupported
h225.transportedInformation transportedInformation No value FacilityReason/transportedInformation
h225.ttlExpired ttlExpired No value UnregRequestReason/ttlExpired
h225.tunnelledProtocolAlternateID tunnelledProtocolAlternateID No value TunnelledProtocol/id/tunnelledProtocolAlternateID
h225.tunnelledProtocolID tunnelledProtocolID No value H323-UU-PDU/tunnelledSignallingMessage/tunnelledProtocolID
h225.tunnelledProtocolObjectID tunnelledProtocolObjectID String TunnelledProtocol/id/tunnelledProtocolObjectID
h225.tunnelledSignallingMessage tunnelledSignallingMessage No value H323-UU-PDU/tunnelledSignallingMessage
h225.tunnelledSignallingRejected tunnelledSignallingRejected No value ReleaseCompleteReason/tunnelledSignallingRejected
h225.tunnellingRequired tunnellingRequired No value H323-UU-PDU/tunnelledSignallingMessage/tunnellingRequired
h225.unallocatedNumber unallocatedNumber No value
h225.undefinedNode undefinedNode Boolean EndpointType/undefinedNode
h225.undefinedReason undefinedReason No value
h225.unicode unicode String Content/unicode
h225.unknown unknown No value
h225.unknownMessageResponse unknownMessageResponse No value RasMessage/unknownMessageResponse
h225.unreachableDestination unreachableDestination No value ReleaseCompleteReason/unreachableDestination
h225.unreachableGatekeeper unreachableGatekeeper No value ReleaseCompleteReason/unreachableGatekeeper
h225.unregistrationConfirm unregistrationConfirm No value RasMessage/unregistrationConfirm
h225.unregistrationReject unregistrationReject No value RasMessage/unregistrationReject
h225.unregistrationRequest unregistrationRequest No value RasMessage/unregistrationRequest
h225.unsolicited unsolicited Boolean InfoRequestResponse/unsolicited
h225.url url String ServiceControlDescriptor/url
h225.url_ID url-ID String AliasAddress/url-ID
h225.usageInfoRequested usageInfoRequested No value InfoRequest/usageInfoRequested
h225.usageInformation usageInformation No value
h225.usageReportingCapability usageReportingCapability No value RegistrationRequest/usageReportingCapability
h225.usageSpec usageSpec No value
h225.usageSpec_item Item No value
h225.useGKCallSignalAddressToAnswer useGKCallSignalAddressToAnswer Boolean RegistrationConfirm/preGrantedARQ/useGKCallSignalAddressToAnswer
h225.useGKCallSignalAddressToMakeCall useGKCallSignalAddressToMakeCall Boolean RegistrationConfirm/preGrantedARQ/useGKCallSignalAddressToMakeCall
h225.useSpecifiedTransport useSpecifiedTransport Unsigned 32-bit integer
h225.user_data user-data No value H323-UserInformation/user-data
h225.user_information user-information Byte array H323-UserInformation/user-data/user-information
h225.uuiesRequested uuiesRequested No value
h225.vendor vendor No value EndpointType/vendor
h225.versionId versionId String VendorIdentifier/versionId
h225.video video No value InfoRequestResponse/perCallInfo/_item/video
h225.video_item Item No value InfoRequestResponse/perCallInfo/_item/video/_item
h225.voice voice No value SupportedProtocols/voice
h225.voiceGwCallsAvailable voiceGwCallsAvailable No value CallCapacityInfo/voiceGwCallsAvailable
h225.voiceGwCallsAvailable_item Item No value CallCapacityInfo/voiceGwCallsAvailable/_item
h225.vplmn vplmn String GSM-UIM/vplmn
h225.when when No value CapacityReportingSpecification/when
h225.wildcard wildcard Unsigned 32-bit integer AddressPattern/wildcard
h225.willRespondToIRR willRespondToIRR Boolean
h225.willSupplyUUIEs willSupplyUUIEs Boolean
h245.AlternativeCapabilitySet_item Item Unsigned 32-bit integer AlternativeCapabilitySet/_item
h245.CertSelectionCriteria_item Item No value CertSelectionCriteria/_item
h245.EncryptionCapability_item Item Unsigned 32-bit integer EncryptionCapability/_item
h245.Manufacturer H.245 Manufacturer Unsigned 32-bit integer h245.H.221 Manufacturer
h245.ModeDescription_item Item No value ModeDescription/_item
h245.aal aal Unsigned 32-bit integer NewATMVCCommand/aal
h245.aal1 aal1 No value VCCapability/aal1
h245.aal1ViaGateway aal1ViaGateway No value VCCapability/aal1ViaGateway
h245.aal5 aal5 No value VCCapability/aal5
h245.accept accept No value RemoteMCResponse/accept
h245.accepted accepted No value MultilinkResponse/addConnection/responseCode/accepted
h245.ackAndNackMessage ackAndNackMessage No value RefPictureSelection/videoBackChannelSend/ackAndNackMessage
h245.ackMessageOnly ackMessageOnly No value RefPictureSelection/videoBackChannelSend/ackMessageOnly
h245.ackOrNackMessageOnly ackOrNackMessageOnly No value RefPictureSelection/videoBackChannelSend/ackOrNackMessageOnly
h245.adaptationLayerType adaptationLayerType Unsigned 32-bit integer H223LogicalChannelParameters/adaptationLayerType
h245.adaptiveClockRecovery adaptiveClockRecovery Boolean
h245.addConnection addConnection No value MultilinkRequest/addConnection
h245.additionalDecoderBuffer additionalDecoderBuffer Unsigned 32-bit integer JitterIndication/additionalDecoderBuffer
h245.additionalPictureMemory additionalPictureMemory No value RefPictureSelection/additionalPictureMemory
h245.address address Unsigned 32-bit integer Q2931Address/address
h245.advancedIntraCodingMode advancedIntraCodingMode Boolean
h245.advancedPrediction advancedPrediction Boolean
h245.al1Framed al1Framed No value
h245.al1M al1M No value
h245.al1NotFramed al1NotFramed No value
h245.al2M al2M No value
h245.al2WithSequenceNumbers al2WithSequenceNumbers No value
h245.al2WithoutSequenceNumbers al2WithoutSequenceNumbers No value
h245.al3 al3 No value
h245.al3M al3M No value
h245.algorithm algorithm String MediaEncryptionAlgorithm/algorithm
h245.algorithmOID algorithmOID String EncryptedAlphanumeric/algorithmOID
h245.alpduInterleaving alpduInterleaving Boolean
h245.alphanumeric alphanumeric String
h245.alsduSplitting alsduSplitting Boolean H223AL1MParameters/alsduSplitting
h245.alternateInterVLCMode alternateInterVLCMode Boolean
h245.annexA annexA Boolean G729Extensions/annexA
h245.annexB annexB Boolean G729Extensions/annexB
h245.annexD annexD Boolean G729Extensions/annexD
h245.annexE annexE Boolean G729Extensions/annexE
h245.annexF annexF Boolean G729Extensions/annexF
h245.annexG annexG Boolean G729Extensions/annexG
h245.annexH annexH Boolean G729Extensions/annexH
h245.antiSpamAlgorithm antiSpamAlgorithm String AuthenticationCapability/antiSpamAlgorithm
h245.anyPixelAspectRatio anyPixelAspectRatio Boolean CustomPictureFormat/pixelAspectInformation/anyPixelAspectRatio
h245.application application Unsigned 32-bit integer DataApplicationCapability/application
h245.arithmeticCoding arithmeticCoding Boolean
h245.arqType arqType Unsigned 32-bit integer
h245.associateConference associateConference Boolean NetworkAccessParameters/associateConference
h245.associatedAlgorithm associatedAlgorithm No value EncryptionCommand/encryptionAlgorithmID/associatedAlgorithm
h245.associatedSessionID associatedSessionID Unsigned 32-bit integer
h245.atmABR atmABR Boolean ATMParameters/atmABR
h245.atmCBR atmCBR Boolean ATMParameters/atmCBR
h245.atmParameters atmParameters No value QOSCapability/atmParameters
h245.atmUBR atmUBR Boolean ATMParameters/atmUBR
h245.atm_AAL5_BIDIR atm-AAL5-BIDIR No value MediaTransportType/atm-AAL5-BIDIR
h245.atm_AAL5_UNIDIR atm-AAL5-UNIDIR No value MediaTransportType/atm-AAL5-UNIDIR
h245.atm_AAL5_compressed atm-AAL5-compressed No value MediaTransportType/atm-AAL5-compressed
h245.atmnrtVBR atmnrtVBR Boolean ATMParameters/atmnrtVBR
h245.atmrtVBR atmrtVBR Boolean ATMParameters/atmrtVBR
h245.audioData audioData Unsigned 32-bit integer
h245.audioHeader audioHeader Boolean V75Capability/audioHeader
h245.audioHeaderPresent audioHeaderPresent Boolean V75Parameters/audioHeaderPresent
h245.audioLayer audioLayer Unsigned 32-bit integer IS11172AudioMode/audioLayer
h245.audioLayer1 audioLayer1 Boolean
h245.audioLayer2 audioLayer2 Boolean
h245.audioLayer3 audioLayer3 Boolean
h245.audioMode audioMode Unsigned 32-bit integer
h245.audioSampling audioSampling Unsigned 32-bit integer IS11172AudioMode/audioSampling
h245.audioSampling16k audioSampling16k Boolean IS13818AudioCapability/audioSampling16k
h245.audioSampling22k05 audioSampling22k05 Boolean IS13818AudioCapability/audioSampling22k05
h245.audioSampling24k audioSampling24k Boolean IS13818AudioCapability/audioSampling24k
h245.audioSampling32k audioSampling32k Boolean
h245.audioSampling44k1 audioSampling44k1 Boolean
h245.audioSampling48k audioSampling48k Boolean
h245.audioTelephoneEvent audioTelephoneEvent String
h245.audioTelephonyEvent audioTelephonyEvent No value AudioCapability/audioTelephonyEvent
h245.audioTone audioTone No value AudioCapability/audioTone
h245.audioUnit audioUnit Unsigned 32-bit integer G729Extensions/audioUnit
h245.audioUnitSize audioUnitSize Unsigned 32-bit integer GSMAudioCapability/audioUnitSize
h245.audioWithAL1 audioWithAL1 Boolean H223Capability/audioWithAL1
h245.audioWithAL1M audioWithAL1M Boolean H223AnnexCCapability/audioWithAL1M
h245.audioWithAL2 audioWithAL2 Boolean H223Capability/audioWithAL2
h245.audioWithAL2M audioWithAL2M Boolean H223AnnexCCapability/audioWithAL2M
h245.audioWithAL3 audioWithAL3 Boolean H223Capability/audioWithAL3
h245.audioWithAL3M audioWithAL3M Boolean H223AnnexCCapability/audioWithAL3M
h245.authenticationCapability authenticationCapability No value EncryptionAuthenticationAndIntegrity/authenticationCapability
h245.availableBitRates availableBitRates No value VCCapability/availableBitRates
h245.bPictureEnhancement bPictureEnhancement No value EnhancementLayerInfo/bPictureEnhancement
h245.bPictureEnhancement_item Item No value EnhancementLayerInfo/bPictureEnhancement/_item
h245.backwardMaximumSDUSize backwardMaximumSDUSize Unsigned 32-bit integer
h245.baseBitRateConstrained baseBitRateConstrained Boolean EnhancementLayerInfo/baseBitRateConstrained
h245.basic basic No value H223Capability/h223MultiplexTableCapability/basic
h245.basicString basicString No value
h245.bigCpfAdditionalPictureMemory bigCpfAdditionalPictureMemory Unsigned 32-bit integer RefPictureSelection/additionalPictureMemory/bigCpfAdditionalPictureMemory
h245.bitRate bitRate Unsigned 32-bit integer
h245.bitRateLockedToNetworkClock bitRateLockedToNetworkClock Boolean
h245.bitRateLockedToPCRClock bitRateLockedToPCRClock Boolean
h245.booleanArray booleanArray Unsigned 32-bit integer ParameterValue/booleanArray
h245.bppMaxKb bppMaxKb Unsigned 32-bit integer H263VideoCapability/bppMaxKb
h245.broadcastMyLogicalChannel broadcastMyLogicalChannel Unsigned 32-bit integer
h245.broadcastMyLogicalChannelResponse broadcastMyLogicalChannelResponse Unsigned 32-bit integer ConferenceResponse/broadcastMyLogicalChannelResponse
h245.bucketSize bucketSize Unsigned 32-bit integer RSVPParameters/bucketSize
h245.callAssociationNumber callAssociationNumber Unsigned 32-bit integer MultilinkResponse/callInformation/callAssociationNumber
h245.callInformation callInformation No value MultilinkRequest/callInformation
h245.canNotPerformLoop canNotPerformLoop No value MaintenanceLoopReject/cause/canNotPerformLoop
h245.cancelBroadcastMyLogicalChannel cancelBroadcastMyLogicalChannel Unsigned 32-bit integer ConferenceCommand/cancelBroadcastMyLogicalChannel
h245.cancelMakeMeChair cancelMakeMeChair No value ConferenceRequest/cancelMakeMeChair
h245.cancelMakeTerminalBroadcaster cancelMakeTerminalBroadcaster No value ConferenceCommand/cancelMakeTerminalBroadcaster
h245.cancelMultipointConference cancelMultipointConference No value MiscellaneousIndication/type/cancelMultipointConference
h245.cancelMultipointModeCommand cancelMultipointModeCommand No value MiscellaneousCommand/type/cancelMultipointModeCommand
h245.cancelMultipointSecondaryStatus cancelMultipointSecondaryStatus No value MiscellaneousIndication/type/cancelMultipointSecondaryStatus
h245.cancelMultipointZeroComm cancelMultipointZeroComm No value MiscellaneousIndication/type/cancelMultipointZeroComm
h245.cancelSeenByAll cancelSeenByAll No value ConferenceIndication/cancelSeenByAll
h245.cancelSeenByAtLeastOneOther cancelSeenByAtLeastOneOther No value ConferenceIndication/cancelSeenByAtLeastOneOther
h245.cancelSendThisSource cancelSendThisSource No value ConferenceCommand/cancelSendThisSource
h245.capabilities capabilities No value MultiplePayloadStreamCapability/capabilities
h245.capabilities_item Item No value MultiplePayloadStreamCapability/capabilities/_item
h245.capability capability Unsigned 32-bit integer CapabilityTableEntry/capability
h245.capabilityDescriptorNumber capabilityDescriptorNumber Unsigned 32-bit integer CapabilityDescriptor/capabilityDescriptorNumber
h245.capabilityDescriptorNumbers capabilityDescriptorNumbers No value SendTerminalCapabilitySet/specificRequest/capabilityDescriptorNumbers
h245.capabilityDescriptorNumbers_item Item Unsigned 32-bit integer SendTerminalCapabilitySet/specificRequest/capabilityDescriptorNumbers/_item
h245.capabilityDescriptors capabilityDescriptors No value TerminalCapabilitySet/capabilityDescriptors
h245.capabilityDescriptors_item Item No value TerminalCapabilitySet/capabilityDescriptors/_item
h245.capabilityIdentifier capabilityIdentifier Unsigned 32-bit integer GenericCapability/capabilityIdentifier
h245.capabilityOnMuxStream capabilityOnMuxStream No value MultiplexedStreamCapability/capabilityOnMuxStream
h245.capabilityOnMuxStream_item Item No value MultiplexedStreamCapability/capabilityOnMuxStream/_item
h245.capabilityTable capabilityTable No value TerminalCapabilitySet/capabilityTable
h245.capabilityTableEntryNumber capabilityTableEntryNumber Unsigned 32-bit integer CapabilityTableEntry/capabilityTableEntryNumber
h245.capabilityTableEntryNumbers capabilityTableEntryNumbers No value SendTerminalCapabilitySet/specificRequest/capabilityTableEntryNumbers
h245.capabilityTableEntryNumbers_item Item Unsigned 32-bit integer SendTerminalCapabilitySet/specificRequest/capabilityTableEntryNumbers/_item
h245.capabilityTable_item Item No value TerminalCapabilitySet/capabilityTable/_item
h245.cause cause Unsigned 32-bit integer MasterSlaveDeterminationReject/cause
h245.ccir601Prog ccir601Prog Boolean T84Profile/t84Restricted/ccir601Prog
h245.ccir601Seq ccir601Seq Boolean T84Profile/t84Restricted/ccir601Seq
h245.centralizedAudio centralizedAudio Boolean MediaDistributionCapability/centralizedAudio
h245.centralizedConferenceMC centralizedConferenceMC Boolean H2250Capability/mcCapability/centralizedConferenceMC
h245.centralizedControl centralizedControl Boolean MediaDistributionCapability/centralizedControl
h245.centralizedData centralizedData No value MediaDistributionCapability/centralizedData
h245.centralizedData_item Item No value MediaDistributionCapability/centralizedData/_item
h245.centralizedVideo centralizedVideo Boolean MediaDistributionCapability/centralizedVideo
h245.certProtectedKey certProtectedKey Boolean KeyProtectionMethod/certProtectedKey
h245.certSelectionCriteria certSelectionCriteria No value ConferenceRequest/requestTerminalCertificate/certSelectionCriteria
h245.certificateResponse certificateResponse Byte array ConferenceResponse/terminalCertificateResponse/certificateResponse
h245.chairControlCapability chairControlCapability Boolean ConferenceCapability/chairControlCapability
h245.chairTokenOwnerResponse chairTokenOwnerResponse No value ConferenceResponse/chairTokenOwnerResponse
h245.channelTag channelTag Unsigned 32-bit integer ConnectionIdentifier/channelTag
h245.cif cif Boolean T84Profile/t84Restricted/cif
h245.cif16 cif16 No value H263VideoMode/resolution/cif16
h245.cif16AdditionalPictureMemory cif16AdditionalPictureMemory Unsigned 32-bit integer RefPictureSelection/additionalPictureMemory/cif16AdditionalPictureMemory
h245.cif16MPI cif16MPI Unsigned 32-bit integer
h245.cif4 cif4 No value H263VideoMode/resolution/cif4
h245.cif4AdditionalPictureMemory cif4AdditionalPictureMemory Unsigned 32-bit integer RefPictureSelection/additionalPictureMemory/cif4AdditionalPictureMemory
h245.cif4MPI cif4MPI Unsigned 32-bit integer
h245.cifAdditionalPictureMemory cifAdditionalPictureMemory Unsigned 32-bit integer RefPictureSelection/additionalPictureMemory/cifAdditionalPictureMemory
h245.cifMPI cifMPI Unsigned 32-bit integer H261VideoCapability/cifMPI
h245.clockConversionCode clockConversionCode Unsigned 32-bit integer
h245.clockDivisor clockDivisor Unsigned 32-bit integer
h245.clockRecovery clockRecovery Unsigned 32-bit integer NewATMVCCommand/aal/aal1/clockRecovery
h245.closeLogicalChannel closeLogicalChannel No value RequestMessage/closeLogicalChannel
h245.closeLogicalChannelAck closeLogicalChannelAck No value ResponseMessage/closeLogicalChannelAck
h245.collapsing collapsing No value GenericCapability/collapsing
h245.collapsing_item Item No value GenericCapability/collapsing/_item
h245.comfortNoise comfortNoise Boolean GSMAudioCapability/comfortNoise
h245.command command Unsigned 32-bit integer
h245.communicationModeCommand communicationModeCommand No value CommandMessage/communicationModeCommand
h245.communicationModeRequest communicationModeRequest No value RequestMessage/communicationModeRequest
h245.communicationModeResponse communicationModeResponse Unsigned 32-bit integer ResponseMessage/communicationModeResponse
h245.communicationModeTable communicationModeTable No value
h245.communicationModeTable_item Item No value
h245.compositionNumber compositionNumber Unsigned 32-bit integer VideoIndicateCompose/compositionNumber
h245.conferenceCapability conferenceCapability No value Capability/conferenceCapability
h245.conferenceCommand conferenceCommand Unsigned 32-bit integer CommandMessage/conferenceCommand
h245.conferenceID conferenceID Byte array ConferenceResponse/conferenceIDResponse/conferenceID
h245.conferenceIDResponse conferenceIDResponse No value ConferenceResponse/conferenceIDResponse
h245.conferenceIdentifier conferenceIdentifier Byte array SubstituteConferenceIDCommand/conferenceIdentifier
h245.conferenceIndication conferenceIndication Unsigned 32-bit integer IndicationMessage/conferenceIndication
h245.conferenceRequest conferenceRequest Unsigned 32-bit integer RequestMessage/conferenceRequest
h245.conferenceResponse conferenceResponse Unsigned 32-bit integer ResponseMessage/conferenceResponse
h245.connectionIdentifier connectionIdentifier No value
h245.connectionsNotAvailable connectionsNotAvailable No value MultilinkResponse/addConnection/responseCode/rejected/connectionsNotAvailable
h245.constrainedBitstream constrainedBitstream Boolean
h245.containedThreads containedThreads No value RTPH263VideoRedundancyEncoding/containedThreads
h245.containedThreads_item Item Unsigned 32-bit integer RTPH263VideoRedundancyEncoding/containedThreads/_item
h245.controlFieldOctets controlFieldOctets Unsigned 32-bit integer Al3/controlFieldOctets
h245.controlOnMuxStream controlOnMuxStream Boolean
h245.controlledLoad controlledLoad No value QOSMode/controlledLoad
h245.crc12bit crc12bit No value
h245.crc16bit crc16bit No value
h245.crc16bitCapability crc16bitCapability Boolean V76Capability/crc16bitCapability
h245.crc20bit crc20bit No value
h245.crc28bit crc28bit No value
h245.crc32bit crc32bit No value
h245.crc32bitCapability crc32bitCapability Boolean V76Capability/crc32bitCapability
h245.crc4bit crc4bit No value
h245.crc8bit crc8bit No value
h245.crc8bitCapability crc8bitCapability Boolean V76Capability/crc8bitCapability
h245.crcDesired crcDesired No value MultilinkIndication/crcDesired
h245.crcLength crcLength Unsigned 32-bit integer H223AL1MParameters/crcLength
h245.crcNotUsed crcNotUsed No value
h245.currentInterval currentInterval Unsigned 32-bit integer MultilinkResponse/maximumHeaderInterval/currentInterval
h245.currentIntervalInformation currentIntervalInformation No value MultilinkRequest/maximumHeaderInterval/requestType/currentIntervalInformation
h245.currentMaximumBitRate currentMaximumBitRate Unsigned 32-bit integer LogicalChannelRateReject/currentMaximumBitRate
h245.currentPictureHeaderRepetition currentPictureHeaderRepetition Boolean H263Version3Options/currentPictureHeaderRepetition
h245.custom custom No value RTPH263VideoRedundancyEncoding/frameToThreadMapping/custom
h245.customMPI customMPI Unsigned 32-bit integer CustomPictureFormat/mPI/customPCF/_item/customMPI
h245.customPCF customPCF No value CustomPictureFormat/mPI/customPCF
h245.customPCF_item Item No value CustomPictureFormat/mPI/customPCF/_item
h245.customPictureClockFrequency customPictureClockFrequency No value H263Options/customPictureClockFrequency
h245.customPictureClockFrequency_item Item No value H263Options/customPictureClockFrequency/_item
h245.customPictureFormat customPictureFormat No value H263Options/customPictureFormat
h245.customPictureFormat_item Item No value H263Options/customPictureFormat/_item
h245.custom_item Item No value RTPH263VideoRedundancyEncoding/frameToThreadMapping/custom/_item
h245.data data Byte array NonStandardParameter/data
h245.dataMode dataMode No value
h245.dataPartitionedSlices dataPartitionedSlices Boolean H263Version3Options/dataPartitionedSlices
h245.dataType dataType Unsigned 32-bit integer
h245.dataTypeALCombinationNotSupported dataTypeALCombinationNotSupported No value OpenLogicalChannelReject/cause/dataTypeALCombinationNotSupported
h245.dataTypeNotAvailable dataTypeNotAvailable No value OpenLogicalChannelReject/cause/dataTypeNotAvailable
h245.dataTypeNotSupported dataTypeNotSupported No value OpenLogicalChannelReject/cause/dataTypeNotSupported
h245.dataWithAL1 dataWithAL1 Boolean H223Capability/dataWithAL1
h245.dataWithAL1M dataWithAL1M Boolean H223AnnexCCapability/dataWithAL1M
h245.dataWithAL2 dataWithAL2 Boolean H223Capability/dataWithAL2
h245.dataWithAL2M dataWithAL2M Boolean H223AnnexCCapability/dataWithAL2M
h245.dataWithAL3 dataWithAL3 Boolean H223Capability/dataWithAL3
h245.dataWithAL3M dataWithAL3M Boolean H223AnnexCCapability/dataWithAL3M
h245.deActivate deActivate No value RemoteMCRequest/deActivate
h245.deblockingFilterMode deblockingFilterMode Boolean
h245.decentralizedConferenceMC decentralizedConferenceMC Boolean H2250Capability/mcCapability/decentralizedConferenceMC
h245.decision decision Unsigned 32-bit integer MasterSlaveDeterminationAck/decision
h245.deniedBroadcastMyLogicalChannel deniedBroadcastMyLogicalChannel No value ConferenceResponse/broadcastMyLogicalChannelResponse/deniedBroadcastMyLogicalChannel
h245.deniedChairToken deniedChairToken No value ConferenceResponse/makeMeChairResponse/deniedChairToken
h245.deniedMakeTerminalBroadcaster deniedMakeTerminalBroadcaster No value ConferenceResponse/makeTerminalBroadcasterResponse/deniedMakeTerminalBroadcaster
h245.deniedSendThisSource deniedSendThisSource No value ConferenceResponse/sendThisSourceResponse/deniedSendThisSource
h245.descriptorCapacityExceeded descriptorCapacityExceeded No value TerminalCapabilitySetReject/cause/descriptorCapacityExceeded
h245.descriptorTooComplex descriptorTooComplex No value MultiplexEntryRejectionDescriptions/cause/descriptorTooComplex
h245.destination destination No value
h245.dialingInformation dialingInformation Unsigned 32-bit integer
h245.differentPort differentPort No value SeparateStream/differentPort
h245.differential differential No value DialingInformation/differential
h245.differential_item Item No value DialingInformation/differential/_item
h245.digPhotoHighProg digPhotoHighProg Boolean T84Profile/t84Restricted/digPhotoHighProg
h245.digPhotoHighSeq digPhotoHighSeq Boolean T84Profile/t84Restricted/digPhotoHighSeq
h245.digPhotoLow digPhotoLow Boolean T84Profile/t84Restricted/digPhotoLow
h245.digPhotoMedProg digPhotoMedProg Boolean T84Profile/t84Restricted/digPhotoMedProg
h245.digPhotoMedSeq digPhotoMedSeq Boolean T84Profile/t84Restricted/digPhotoMedSeq
h245.direction direction Unsigned 32-bit integer MiscellaneousCommand/direction
h245.disconnect disconnect No value EndSessionCommand/disconnect
h245.distributedAudio distributedAudio Boolean MediaDistributionCapability/distributedAudio
h245.distributedControl distributedControl Boolean MediaDistributionCapability/distributedControl
h245.distributedData distributedData No value MediaDistributionCapability/distributedData
h245.distributedData_item Item No value MediaDistributionCapability/distributedData/_item
h245.distributedVideo distributedVideo Boolean MediaDistributionCapability/distributedVideo
h245.distribution distribution Unsigned 32-bit integer NetworkAccessParameters/distribution
h245.doContinuousIndependentProgressions doContinuousIndependentProgressions No value RepeatCount/doContinuousIndependentProgressions
h245.doContinuousProgressions doContinuousProgressions No value RepeatCount/doContinuousProgressions
h245.doOneIndependentProgression doOneIndependentProgression No value RepeatCount/doOneIndependentProgression
h245.doOneProgression doOneProgression No value RepeatCount/doOneProgression
h245.domainBased domainBased String
h245.dropConference dropConference No value ConferenceCommand/dropConference
h245.dropTerminal dropTerminal No value ConferenceRequest/dropTerminal
h245.dsm_cc dsm-cc Unsigned 32-bit integer
h245.dsvdControl dsvdControl No value
h245.dtmf dtmf No value UserInputCapability/dtmf
h245.duration duration Unsigned 32-bit integer
h245.dynamicPictureResizingByFour dynamicPictureResizingByFour Boolean
h245.dynamicPictureResizingSixteenthPel dynamicPictureResizingSixteenthPel Boolean
h245.dynamicRTPPayloadType dynamicRTPPayloadType Unsigned 32-bit integer
h245.dynamicWarpingHalfPel dynamicWarpingHalfPel Boolean
h245.dynamicWarpingSixteenthPel dynamicWarpingSixteenthPel Boolean
h245.e164Address e164Address String NetworkAccessParameters/networkAddress/e164Address
h245.eRM eRM No value V76LogicalChannelParameters/mode/eRM
h245.elementList elementList No value MultiplexEntryDescriptor/elementList
h245.elementList_item Item No value MultiplexEntryDescriptor/elementList/_item
h245.elements elements No value MultiplePayloadStream/elements
h245.elements_item Item No value MultiplePayloadStream/elements/_item
h245.encrypted encrypted Byte array EncryptedAlphanumeric/encrypted
h245.encryptedAlphanumeric encryptedAlphanumeric No value
h245.encryptedBasicString encryptedBasicString No value
h245.encryptedGeneralString encryptedGeneralString No value
h245.encryptedIA5String encryptedIA5String No value
h245.encryptedSignalType encryptedSignalType Byte array UserInputIndication/signal/encryptedSignalType
h245.encryptionAlgorithmID encryptionAlgorithmID No value EncryptionCommand/encryptionAlgorithmID
h245.encryptionAuthenticationAndIntegrity encryptionAuthenticationAndIntegrity No value
h245.encryptionCapability encryptionCapability No value EncryptionAuthenticationAndIntegrity/encryptionCapability
h245.encryptionCommand encryptionCommand Unsigned 32-bit integer CommandMessage/encryptionCommand
h245.encryptionData encryptionData Unsigned 32-bit integer DataType/encryptionData
h245.encryptionIVRequest encryptionIVRequest No value EncryptionCommand/encryptionIVRequest
h245.encryptionMode encryptionMode Unsigned 32-bit integer
h245.encryptionSE encryptionSE Byte array EncryptionCommand/encryptionSE
h245.encryptionSync encryptionSync No value
h245.encryptionUpdate encryptionUpdate No value MiscellaneousCommand/type/encryptionUpdate
h245.encryptionUpdateAck encryptionUpdateAck No value MiscellaneousCommand/type/encryptionUpdateAck
h245.encryptionUpdateCommand encryptionUpdateCommand No value MiscellaneousCommand/type/encryptionUpdateCommand
h245.encryptionUpdateRequest encryptionUpdateRequest No value MiscellaneousCommand/type/encryptionUpdateRequest
h245.endSessionCommand endSessionCommand Unsigned 32-bit integer CommandMessage/endSessionCommand
h245.enhanced enhanced No value H223Capability/h223MultiplexTableCapability/enhanced
h245.enhancedReferencePicSelect enhancedReferencePicSelect No value RefPictureSelection/enhancedReferencePicSelect
h245.enhancementLayerInfo enhancementLayerInfo No value
h245.enhancementOptions enhancementOptions No value BEnhancementParameters/enhancementOptions
h245.enterExtensionAddress enterExtensionAddress No value ConferenceRequest/enterExtensionAddress
h245.enterH243ConferenceID enterH243ConferenceID No value ConferenceRequest/enterH243ConferenceID
h245.enterH243Password enterH243Password No value ConferenceRequest/enterH243Password
h245.enterH243TerminalID enterH243TerminalID No value ConferenceRequest/enterH243TerminalID
h245.entryNumbers entryNumbers No value
h245.entryNumbers_item Item Unsigned 32-bit integer
h245.equaliseDelay equaliseDelay No value MiscellaneousCommand/type/equaliseDelay
h245.errorCompensation errorCompensation Boolean
h245.errorCorrection errorCorrection Unsigned 32-bit integer NewATMVCCommand/aal/aal1/errorCorrection
h245.errorCorrectionOnly errorCorrectionOnly Boolean
h245.escrowID escrowID String EscrowData/escrowID
h245.escrowValue escrowValue Byte array EscrowData/escrowValue
h245.escrowentry escrowentry No value EncryptionSync/escrowentry
h245.escrowentry_item Item No value EncryptionSync/escrowentry/_item
h245.estimatedReceivedJitterExponent estimatedReceivedJitterExponent Unsigned 32-bit integer JitterIndication/estimatedReceivedJitterExponent
h245.estimatedReceivedJitterMantissa estimatedReceivedJitterMantissa Unsigned 32-bit integer JitterIndication/estimatedReceivedJitterMantissa
h245.excessiveError excessiveError No value MultilinkIndication/excessiveError
h245.expirationTime expirationTime Unsigned 32-bit integer Rtp/expirationTime
h245.extendedAlphanumeric extendedAlphanumeric No value UserInputCapability/extendedAlphanumeric
h245.extendedPAR extendedPAR No value CustomPictureFormat/pixelAspectInformation/extendedPAR
h245.extendedPAR_item Item No value CustomPictureFormat/pixelAspectInformation/extendedPAR/_item
h245.extendedVideoCapability extendedVideoCapability No value VideoCapability/extendedVideoCapability
h245.extensionAddress extensionAddress Byte array ConferenceResponse/extensionAddressResponse/extensionAddress
h245.extensionAddressResponse extensionAddressResponse No value ConferenceResponse/extensionAddressResponse
h245.externalReference externalReference Byte array NetworkAccessParameters/externalReference
h245.fec fec Unsigned 32-bit integer
h245.fecCapability fecCapability Unsigned 32-bit integer Capability/fecCapability
h245.fecMode fecMode Unsigned 32-bit integer ModeElementType/fecMode
h245.field field String Criteria/field
h245.fillBitRemoval fillBitRemoval Boolean T38FaxProfile/fillBitRemoval
h245.finite finite Unsigned 32-bit integer H223AnnexCArqParameters/numberOfRetransmissions/finite
h245.firstGOB firstGOB Unsigned 32-bit integer MiscellaneousCommand/type/videoFastUpdateGOB/firstGOB
h245.firstMB firstMB Unsigned 32-bit integer
h245.fiveChannels3_0_2_0 fiveChannels3-0-2-0 Boolean IS13818AudioCapability/fiveChannels3-0-2-0
h245.fiveChannels3_2 fiveChannels3-2 Boolean IS13818AudioCapability/fiveChannels3-2
h245.fixedPointIDCT0 fixedPointIDCT0 Boolean H263Version3Options/fixedPointIDCT0
h245.floorRequested floorRequested No value ConferenceIndication/floorRequested
h245.flowControlCommand flowControlCommand No value CommandMessage/flowControlCommand
h245.flowControlIndication flowControlIndication No value IndicationMessage/flowControlIndication
h245.flowControlToZero flowControlToZero Boolean H2250LogicalChannelAckParameters/flowControlToZero
h245.forwardLogicalChannelDependency forwardLogicalChannelDependency Unsigned 32-bit integer OpenLogicalChannel/forwardLogicalChannelParameters/forwardLogicalChannelDependency
h245.forwardLogicalChannelNumber forwardLogicalChannelNumber Unsigned 32-bit integer
h245.forwardLogicalChannelParameters forwardLogicalChannelParameters No value OpenLogicalChannel/forwardLogicalChannelParameters
h245.forwardMaximumSDUSize forwardMaximumSDUSize Unsigned 32-bit integer
h245.forwardMultiplexAckParameters forwardMultiplexAckParameters Unsigned 32-bit integer OpenLogicalChannelAck/forwardMultiplexAckParameters
h245.fourChannels2_0_2_0 fourChannels2-0-2-0 Boolean IS13818AudioCapability/fourChannels2-0-2-0
h245.fourChannels2_2 fourChannels2-2 Boolean IS13818AudioCapability/fourChannels2-2
h245.fourChannels3_1 fourChannels3-1 Boolean IS13818AudioCapability/fourChannels3-1
h245.frameSequence frameSequence No value RTPH263VideoRedundancyFrameMapping/frameSequence
h245.frameSequence_item Item Unsigned 32-bit integer RTPH263VideoRedundancyFrameMapping/frameSequence/_item
h245.frameToThreadMapping frameToThreadMapping Unsigned 32-bit integer RTPH263VideoRedundancyEncoding/frameToThreadMapping
h245.framed framed No value H223AL1MParameters/transferMode/framed
h245.framesBetweenSyncPoints framesBetweenSyncPoints Unsigned 32-bit integer RTPH263VideoRedundancyEncoding/framesBetweenSyncPoints
h245.framesPerSecond framesPerSecond Unsigned 32-bit integer
h245.fullPictureFreeze fullPictureFreeze Boolean H263Options/fullPictureFreeze
h245.fullPictureSnapshot fullPictureSnapshot Boolean H263Options/fullPictureSnapshot
h245.functionNotSupported functionNotSupported No value IndicationMessage/functionNotSupported
h245.functionNotUnderstood functionNotUnderstood Unsigned 32-bit integer IndicationMessage/functionNotUnderstood
h245.g3FacsMH200x100 g3FacsMH200x100 Boolean T84Profile/t84Restricted/g3FacsMH200x100
h245.g3FacsMH200x200 g3FacsMH200x200 Boolean T84Profile/t84Restricted/g3FacsMH200x200
h245.g4FacsMMR200x100 g4FacsMMR200x100 Boolean T84Profile/t84Restricted/g4FacsMMR200x100
h245.g4FacsMMR200x200 g4FacsMMR200x200 Boolean T84Profile/t84Restricted/g4FacsMMR200x200
h245.g711Alaw56k g711Alaw56k Unsigned 32-bit integer AudioCapability/g711Alaw56k
h245.g711Alaw64k g711Alaw64k Unsigned 32-bit integer AudioCapability/g711Alaw64k
h245.g711Ulaw56k g711Ulaw56k Unsigned 32-bit integer AudioCapability/g711Ulaw56k
h245.g711Ulaw64k g711Ulaw64k Unsigned 32-bit integer AudioCapability/g711Ulaw64k
h245.g722_48k g722-48k Unsigned 32-bit integer AudioCapability/g722-48k
h245.g722_56k g722-56k Unsigned 32-bit integer AudioCapability/g722-56k
h245.g722_64k g722-64k Unsigned 32-bit integer AudioCapability/g722-64k
h245.g7231 g7231 No value AudioCapability/g7231
h245.g7231AnnexCCapability g7231AnnexCCapability No value AudioCapability/g7231AnnexCCapability
h245.g7231AnnexCMode g7231AnnexCMode No value AudioMode/g7231AnnexCMode
h245.g723AnnexCAudioMode g723AnnexCAudioMode No value
h245.g728 g728 Unsigned 32-bit integer AudioCapability/g728
h245.g729 g729 Unsigned 32-bit integer AudioCapability/g729
h245.g729AnnexA g729AnnexA Unsigned 32-bit integer AudioCapability/g729AnnexA
h245.g729AnnexAwAnnexB g729AnnexAwAnnexB Unsigned 32-bit integer
h245.g729Extensions g729Extensions No value
h245.g729wAnnexB g729wAnnexB Unsigned 32-bit integer
h245.gatewayAddress gatewayAddress No value VCCapability/aal1ViaGateway/gatewayAddress
h245.gatewayAddress_item Item No value VCCapability/aal1ViaGateway/gatewayAddress/_item
h245.generalString generalString No value
h245.genericAudioCapability genericAudioCapability No value AudioCapability/genericAudioCapability
h245.genericAudioMode genericAudioMode No value AudioMode/genericAudioMode
h245.genericCommand genericCommand No value CommandMessage/genericCommand
h245.genericControlCapability genericControlCapability No value Capability/genericControlCapability
h245.genericDataCapability genericDataCapability No value Application/genericDataCapability
h245.genericDataMode genericDataMode No value DataMode/application/genericDataMode
h245.genericIndication genericIndication No value IndicationMessage/genericIndication
h245.genericModeParameters genericModeParameters No value ModeElement/genericModeParameters
h245.genericMultiplexCapability genericMultiplexCapability No value MultiplexCapability/genericMultiplexCapability
h245.genericParameter genericParameter No value ParameterValue/genericParameter
h245.genericParameter_item Item No value ParameterValue/genericParameter/_item
h245.genericRequest genericRequest No value RequestMessage/genericRequest
h245.genericResponse genericResponse No value ResponseMessage/genericResponse
h245.genericVideoCapability genericVideoCapability No value VideoCapability/genericVideoCapability
h245.genericVideoMode genericVideoMode No value VideoMode/genericVideoMode
h245.golay24_12 golay24-12 No value
h245.grantedBroadcastMyLogicalChannel grantedBroadcastMyLogicalChannel No value ConferenceResponse/broadcastMyLogicalChannelResponse/grantedBroadcastMyLogicalChannel
h245.grantedChairToken grantedChairToken No value ConferenceResponse/makeMeChairResponse/grantedChairToken
h245.grantedMakeTerminalBroadcaster grantedMakeTerminalBroadcaster No value ConferenceResponse/makeTerminalBroadcasterResponse/grantedMakeTerminalBroadcaster
h245.grantedSendThisSource grantedSendThisSource No value ConferenceResponse/sendThisSourceResponse/grantedSendThisSource
h245.gsmEnhancedFullRate gsmEnhancedFullRate No value
h245.gsmFullRate gsmFullRate No value
h245.gsmHalfRate gsmHalfRate No value
h245.gstn gstn No value DialingInformationNetworkType/gstn
h245.gstnOptions gstnOptions Unsigned 32-bit integer EndSessionCommand/gstnOptions
h245.guaranteedQOS guaranteedQOS No value QOSMode/guaranteedQOS
h245.h221NonStandard h221NonStandard No value NonStandardIdentifier/h221NonStandard
h245.h222Capability h222Capability No value
h245.h222DataPartitioning h222DataPartitioning Unsigned 32-bit integer
h245.h222LogicalChannelParameters h222LogicalChannelParameters No value
h245.h223AnnexA h223AnnexA Boolean H223Capability/mobileOperationTransmitCapability/h223AnnexA
h245.h223AnnexADoubleFlag h223AnnexADoubleFlag Boolean H223Capability/mobileOperationTransmitCapability/h223AnnexADoubleFlag
h245.h223AnnexB h223AnnexB Boolean H223Capability/mobileOperationTransmitCapability/h223AnnexB
h245.h223AnnexBwithHeader h223AnnexBwithHeader Boolean H223Capability/mobileOperationTransmitCapability/h223AnnexBwithHeader
h245.h223AnnexCCapability h223AnnexCCapability No value H223Capability/h223AnnexCCapability
h245.h223Capability h223Capability No value
h245.h223LogicalChannelParameters h223LogicalChannelParameters No value
h245.h223ModeChange h223ModeChange Unsigned 32-bit integer H223MultiplexReconfiguration/h223ModeChange
h245.h223ModeParameters h223ModeParameters No value ModeElement/h223ModeParameters
h245.h223MultiplexReconfiguration h223MultiplexReconfiguration Unsigned 32-bit integer CommandMessage/h223MultiplexReconfiguration
h245.h223MultiplexTableCapability h223MultiplexTableCapability Unsigned 32-bit integer H223Capability/h223MultiplexTableCapability
h245.h223SkewIndication h223SkewIndication No value IndicationMessage/h223SkewIndication
h245.h224 h224 Unsigned 32-bit integer
h245.h2250Capability h2250Capability No value MultiplexCapability/h2250Capability
h245.h2250LogicalChannelAckParameters h2250LogicalChannelAckParameters No value OpenLogicalChannelAck/forwardMultiplexAckParameters/h2250LogicalChannelAckParameters
h245.h2250LogicalChannelParameters h2250LogicalChannelParameters No value
h245.h2250MaximumSkewIndication h2250MaximumSkewIndication No value IndicationMessage/h2250MaximumSkewIndication
h245.h2250ModeParameters h2250ModeParameters No value ModeElement/h2250ModeParameters
h245.h233AlgorithmIdentifier h233AlgorithmIdentifier Unsigned 32-bit integer EncryptionCommand/encryptionAlgorithmID/h233AlgorithmIdentifier
h245.h233Encryption h233Encryption No value EncryptionMode/h233Encryption
h245.h233EncryptionReceiveCapability h233EncryptionReceiveCapability No value Capability/h233EncryptionReceiveCapability
h245.h233EncryptionTransmitCapability h233EncryptionTransmitCapability Boolean Capability/h233EncryptionTransmitCapability
h245.h233IVResponseTime h233IVResponseTime Unsigned 32-bit integer Capability/h233EncryptionReceiveCapability/h233IVResponseTime
h245.h235Control h235Control No value DataType/h235Control
h245.h235Key h235Key Byte array EncryptionSync/h235Key
h245.h235Media h235Media No value DataType/h235Media
h245.h235Mode h235Mode No value
h245.h235SecurityCapability h235SecurityCapability No value Capability/h235SecurityCapability
h245.h261VideoCapability h261VideoCapability No value VideoCapability/h261VideoCapability
h245.h261VideoMode h261VideoMode No value VideoMode/h261VideoMode
h245.h261aVideoPacketization h261aVideoPacketization Boolean MediaPacketizationCapability/h261aVideoPacketization
h245.h262VideoCapability h262VideoCapability No value VideoCapability/h262VideoCapability
h245.h262VideoMode h262VideoMode No value VideoMode/h262VideoMode
h245.h263Options h263Options No value
h245.h263Version3Options h263Version3Options No value
h245.h263VideoCapability h263VideoCapability No value VideoCapability/h263VideoCapability
h245.h263VideoCoupledModes h263VideoCoupledModes No value H263VideoModeCombos/h263VideoCoupledModes
h245.h263VideoCoupledModes_item Item No value H263VideoModeCombos/h263VideoCoupledModes/_item
h245.h263VideoMode h263VideoMode No value VideoMode/h263VideoMode
h245.h263VideoUncoupledModes h263VideoUncoupledModes No value H263VideoModeCombos/h263VideoUncoupledModes
h245.h310SeparateVCStack h310SeparateVCStack No value DataProtocolCapability/h310SeparateVCStack
h245.h310SingleVCStack h310SingleVCStack No value DataProtocolCapability/h310SingleVCStack
h245.hdlcFrameTunnelingwSAR hdlcFrameTunnelingwSAR No value DataProtocolCapability/hdlcFrameTunnelingwSAR
h245.hdlcFrameTunnelling hdlcFrameTunnelling No value DataProtocolCapability/hdlcFrameTunnelling
h245.hdlcParameters hdlcParameters No value V76LogicalChannelParameters/hdlcParameters
h245.hdtvProg hdtvProg Boolean T84Profile/t84Restricted/hdtvProg
h245.hdtvSeq hdtvSeq Boolean T84Profile/t84Restricted/hdtvSeq
h245.headerFEC headerFEC Unsigned 32-bit integer H223AL1MParameters/headerFEC
h245.headerFormat headerFormat Unsigned 32-bit integer H223AL3MParameters/headerFormat
h245.height height Unsigned 32-bit integer CustomPictureFormat/pixelAspectInformation/extendedPAR/_item/height
h245.highRateMode0 highRateMode0 Unsigned 32-bit integer G723AnnexCAudioMode/highRateMode0
h245.highRateMode1 highRateMode1 Unsigned 32-bit integer G723AnnexCAudioMode/highRateMode1
h245.higherBitRate higherBitRate Unsigned 32-bit integer VCCapability/availableBitRates/type/rangeOfBitRates/higherBitRate
h245.highestEntryNumberProcessed highestEntryNumberProcessed Unsigned 32-bit integer TerminalCapabilitySetReject/cause/tableEntryCapacityExceeded/highestEntryNumberProcessed
h245.hookflash hookflash No value UserInputCapability/hookflash
h245.hrd_B hrd-B Unsigned 32-bit integer H263VideoCapability/hrd-B
h245.iA5String iA5String No value
h245.iP6Address iP6Address No value UnicastAddress/iP6Address
h245.iPAddress iPAddress No value UnicastAddress/iPAddress
h245.iPSourceRouteAddress iPSourceRouteAddress No value UnicastAddress/iPSourceRouteAddress
h245.iPXAddress iPXAddress No value UnicastAddress/iPXAddress
h245.identicalNumbers identicalNumbers No value MasterSlaveDeterminationReject/cause/identicalNumbers
h245.improvedPBFramesMode improvedPBFramesMode Boolean
h245.independentSegmentDecoding independentSegmentDecoding Boolean
h245.indication indication Unsigned 32-bit integer MultimediaSystemControlMessage/indication
h245.infinite infinite No value H223AnnexCArqParameters/numberOfRetransmissions/infinite
h245.infoNotAvailable infoNotAvailable Unsigned 32-bit integer DialingInformation/infoNotAvailable
h245.insufficientBandwidth insufficientBandwidth No value OpenLogicalChannelReject/cause/insufficientBandwidth
h245.insufficientResources insufficientResources No value LogicalChannelRateRejectReason/insufficientResources
h245.integrityCapability integrityCapability No value EncryptionAuthenticationAndIntegrity/integrityCapability
h245.interlacedFields interlacedFields Boolean H263Version3Options/interlacedFields
h245.internationalNumber internationalNumber String Q2931Address/address/internationalNumber
h245.invalidDependentChannel invalidDependentChannel No value OpenLogicalChannelReject/cause/invalidDependentChannel
h245.invalidSessionID invalidSessionID No value OpenLogicalChannelReject/cause/invalidSessionID
h245.ip_TCP ip-TCP No value MediaTransportType/ip-TCP
h245.ip_UDP ip-UDP No value MediaTransportType/ip-UDP
h245.is11172AudioCapability is11172AudioCapability No value AudioCapability/is11172AudioCapability
h245.is11172AudioMode is11172AudioMode No value AudioMode/is11172AudioMode
h245.is11172VideoCapability is11172VideoCapability No value VideoCapability/is11172VideoCapability
h245.is11172VideoMode is11172VideoMode No value VideoMode/is11172VideoMode
h245.is13818AudioCapability is13818AudioCapability No value AudioCapability/is13818AudioCapability
h245.is13818AudioMode is13818AudioMode No value AudioMode/is13818AudioMode
h245.isdnOptions isdnOptions Unsigned 32-bit integer EndSessionCommand/isdnOptions
h245.issueQuery issueQuery No value NetworkAccessParameters/t120SetupProcedure/issueQuery
h245.iv iv Byte array Params/iv
h245.iv16 iv16 Byte array Params/iv16
h245.iv8 iv8 Byte array Params/iv8
h245.jbig200x200Prog jbig200x200Prog Boolean T84Profile/t84Restricted/jbig200x200Prog
h245.jbig200x200Seq jbig200x200Seq Boolean T84Profile/t84Restricted/jbig200x200Seq
h245.jbig300x300Prog jbig300x300Prog Boolean T84Profile/t84Restricted/jbig300x300Prog
h245.jbig300x300Seq jbig300x300Seq Boolean T84Profile/t84Restricted/jbig300x300Seq
h245.jitterIndication jitterIndication No value IndicationMessage/jitterIndication
h245.keyProtectionMethod keyProtectionMethod No value EncryptionUpdateRequest/keyProtectionMethod
h245.lcse lcse No value CloseLogicalChannel/source/lcse
h245.linesPerFrame linesPerFrame Unsigned 32-bit integer
h245.localAreaAddress localAreaAddress Unsigned 32-bit integer NetworkAccessParameters/networkAddress/localAreaAddress
h245.localTCF localTCF No value T38FaxRateManagement/localTCF
h245.logical logical No value ParameterValue/logical
h245.logicalChannelActive logicalChannelActive No value MiscellaneousIndication/type/logicalChannelActive
h245.logicalChannelInactive logicalChannelInactive No value MiscellaneousIndication/type/logicalChannelInactive
h245.logicalChannelLoop logicalChannelLoop Unsigned 32-bit integer
h245.logicalChannelNumber logicalChannelNumber Unsigned 32-bit integer MultiplexElement/type/logicalChannelNumber
h245.logicalChannelNumber1 logicalChannelNumber1 Unsigned 32-bit integer
h245.logicalChannelNumber2 logicalChannelNumber2 Unsigned 32-bit integer
h245.logicalChannelRateAcknowledge logicalChannelRateAcknowledge No value ResponseMessage/logicalChannelRateAcknowledge
h245.logicalChannelRateReject logicalChannelRateReject No value ResponseMessage/logicalChannelRateReject
h245.logicalChannelRateRelease logicalChannelRateRelease No value IndicationMessage/logicalChannelRateRelease
h245.logicalChannelRateRequest logicalChannelRateRequest No value RequestMessage/logicalChannelRateRequest
h245.logicalChannelSwitchingCapability logicalChannelSwitchingCapability Boolean H2250Capability/logicalChannelSwitchingCapability
h245.longInterleaver longInterleaver Boolean
h245.longTermPictureIndex longTermPictureIndex Unsigned 32-bit integer PictureReference/longTermPictureIndex
h245.loopBackTestCapability loopBackTestCapability Boolean V76Capability/loopBackTestCapability
h245.loopbackTestProcedure loopbackTestProcedure Boolean V76HDLCParameters/loopbackTestProcedure
h245.loose loose No value UnicastAddress/iPSourceRouteAddress/routing/loose
h245.lostPartialPicture lostPartialPicture No value MiscellaneousCommand/type/lostPartialPicture
h245.lostPicture lostPicture No value MiscellaneousCommand/type/lostPicture
h245.lostPicture_item Item Unsigned 32-bit integer MiscellaneousCommand/type/lostPicture/_item
h245.lowFrequencyEnhancement lowFrequencyEnhancement Boolean
h245.lowRateMode0 lowRateMode0 Unsigned 32-bit integer G723AnnexCAudioMode/lowRateMode0
h245.lowRateMode1 lowRateMode1 Unsigned 32-bit integer G723AnnexCAudioMode/lowRateMode1
h245.lowerBitRate lowerBitRate Unsigned 32-bit integer VCCapability/availableBitRates/type/rangeOfBitRates/lowerBitRate
h245.luminanceSampleRate luminanceSampleRate Unsigned 32-bit integer
h245.mCTerminalIDResponse mCTerminalIDResponse No value ConferenceResponse/mCTerminalIDResponse
h245.mPI mPI No value CustomPictureFormat/mPI
h245.mREJCapability mREJCapability Boolean V76Capability/mREJCapability
h245.mSREJ mSREJ No value V76LogicalChannelParameters/mode/eRM/recovery/mSREJ
h245.maintenanceLoopAck maintenanceLoopAck No value ResponseMessage/maintenanceLoopAck
h245.maintenanceLoopOffCommand maintenanceLoopOffCommand No value CommandMessage/maintenanceLoopOffCommand
h245.maintenanceLoopReject maintenanceLoopReject No value ResponseMessage/maintenanceLoopReject
h245.maintenanceLoopRequest maintenanceLoopRequest No value RequestMessage/maintenanceLoopRequest
h245.makeMeChair makeMeChair No value ConferenceRequest/makeMeChair
h245.makeMeChairResponse makeMeChairResponse Unsigned 32-bit integer ConferenceResponse/makeMeChairResponse
h245.makeTerminalBroadcaster makeTerminalBroadcaster No value
h245.makeTerminalBroadcasterResponse makeTerminalBroadcasterResponse Unsigned 32-bit integer ConferenceResponse/makeTerminalBroadcasterResponse
h245.manufacturerCode manufacturerCode Unsigned 32-bit integer NonStandardIdentifier/h221NonStandard/manufacturerCode
h245.master master No value MasterSlaveDeterminationAck/decision/master
h245.masterActivate masterActivate No value RemoteMCRequest/masterActivate
h245.masterSlaveConflict masterSlaveConflict No value OpenLogicalChannelReject/cause/masterSlaveConflict
h245.masterSlaveDetermination masterSlaveDetermination No value RequestMessage/masterSlaveDetermination
h245.masterSlaveDeterminationAck masterSlaveDeterminationAck No value ResponseMessage/masterSlaveDeterminationAck
h245.masterSlaveDeterminationReject masterSlaveDeterminationReject No value ResponseMessage/masterSlaveDeterminationReject
h245.masterSlaveDeterminationRelease masterSlaveDeterminationRelease No value IndicationMessage/masterSlaveDeterminationRelease
h245.masterToSlave masterToSlave No value EncryptionUpdateDirection/masterToSlave
h245.maxAl_sduAudioFrames maxAl-sduAudioFrames Unsigned 32-bit integer
h245.maxBitRate maxBitRate Unsigned 32-bit integer H261VideoCapability/maxBitRate
h245.maxCustomPictureHeight maxCustomPictureHeight Unsigned 32-bit integer CustomPictureFormat/maxCustomPictureHeight
h245.maxCustomPictureWidth maxCustomPictureWidth Unsigned 32-bit integer CustomPictureFormat/maxCustomPictureWidth
h245.maxH223MUXPDUsize maxH223MUXPDUsize Unsigned 32-bit integer MiscellaneousCommand/type/maxH223MUXPDUsize
h245.maxMUXPDUSizeCapability maxMUXPDUSizeCapability Boolean H223Capability/maxMUXPDUSizeCapability
h245.maxNTUSize maxNTUSize Unsigned 32-bit integer ATMParameters/maxNTUSize
h245.maxNumberOfAdditionalConnections maxNumberOfAdditionalConnections Unsigned 32-bit integer MultilinkRequest/callInformation/maxNumberOfAdditionalConnections
h245.maxPendingReplacementFor maxPendingReplacementFor Unsigned 32-bit integer Capability/maxPendingReplacementFor
h245.maxPktSize maxPktSize Unsigned 32-bit integer RSVPParameters/maxPktSize
h245.maxWindowSizeCapability maxWindowSizeCapability Unsigned 32-bit integer V76Capability/maxWindowSizeCapability
h245.maximumAL1MPDUSize maximumAL1MPDUSize Unsigned 32-bit integer H223AnnexCCapability/maximumAL1MPDUSize
h245.maximumAL2MSDUSize maximumAL2MSDUSize Unsigned 32-bit integer H223AnnexCCapability/maximumAL2MSDUSize
h245.maximumAL3MSDUSize maximumAL3MSDUSize Unsigned 32-bit integer H223AnnexCCapability/maximumAL3MSDUSize
h245.maximumAl2SDUSize maximumAl2SDUSize Unsigned 32-bit integer H223Capability/maximumAl2SDUSize
h245.maximumAl3SDUSize maximumAl3SDUSize Unsigned 32-bit integer H223Capability/maximumAl3SDUSize
h245.maximumAudioDelayJitter maximumAudioDelayJitter Unsigned 32-bit integer H2250Capability/maximumAudioDelayJitter
h245.maximumBitRate maximumBitRate Unsigned 32-bit integer
h245.maximumDelayJitter maximumDelayJitter Unsigned 32-bit integer H223Capability/maximumDelayJitter
h245.maximumElementListSize maximumElementListSize Unsigned 32-bit integer H223Capability/h223MultiplexTableCapability/enhanced/maximumElementListSize
h245.maximumHeaderInterval maximumHeaderInterval No value MultilinkRequest/maximumHeaderInterval
h245.maximumNestingDepth maximumNestingDepth Unsigned 32-bit integer H223Capability/h223MultiplexTableCapability/enhanced/maximumNestingDepth
h245.maximumPayloadLength maximumPayloadLength Unsigned 32-bit integer H223Capability/mobileMultilinkFrameCapability/maximumPayloadLength
h245.maximumSampleSize maximumSampleSize Unsigned 32-bit integer H223Capability/mobileMultilinkFrameCapability/maximumSampleSize
h245.maximumSkew maximumSkew Unsigned 32-bit integer H2250MaximumSkewIndication/maximumSkew
h245.maximumStringLength maximumStringLength Unsigned 32-bit integer V42bis/maximumStringLength
h245.maximumSubElementListSize maximumSubElementListSize Unsigned 32-bit integer H223Capability/h223MultiplexTableCapability/enhanced/maximumSubElementListSize
h245.mcCapability mcCapability No value H2250Capability/mcCapability
h245.mcLocationIndication mcLocationIndication No value IndicationMessage/mcLocationIndication
h245.mcuNumber mcuNumber Unsigned 32-bit integer TerminalLabel/mcuNumber
h245.mediaCapability mediaCapability Unsigned 32-bit integer H235SecurityCapability/mediaCapability
h245.mediaChannel mediaChannel Unsigned 32-bit integer H2250LogicalChannelParameters/mediaChannel
h245.mediaChannelCapabilities mediaChannelCapabilities No value TransportCapability/mediaChannelCapabilities
h245.mediaChannelCapabilities_item Item No value TransportCapability/mediaChannelCapabilities/_item
h245.mediaControlChannel mediaControlChannel Unsigned 32-bit integer H2250LogicalChannelParameters/mediaControlChannel
h245.mediaControlGuaranteedDelivery mediaControlGuaranteedDelivery Boolean
h245.mediaDistributionCapability mediaDistributionCapability No value MultipointCapability/mediaDistributionCapability
h245.mediaDistributionCapability_item Item No value MultipointCapability/mediaDistributionCapability/_item
h245.mediaGuaranteedDelivery mediaGuaranteedDelivery Boolean
h245.mediaLoop mediaLoop Unsigned 32-bit integer
h245.mediaMode mediaMode Unsigned 32-bit integer H235Mode/mediaMode
h245.mediaPacketization mediaPacketization Unsigned 32-bit integer H2250LogicalChannelParameters/mediaPacketization
h245.mediaPacketizationCapability mediaPacketizationCapability No value H2250Capability/mediaPacketizationCapability
h245.mediaTransport mediaTransport Unsigned 32-bit integer MediaChannelCapability/mediaTransport
h245.mediaType mediaType Unsigned 32-bit integer H235Media/mediaType
h245.messageContent messageContent No value GenericMessage/messageContent
h245.messageContent_item Item No value GenericMessage/messageContent/_item
h245.messageIdentifier messageIdentifier Unsigned 32-bit integer GenericMessage/messageIdentifier
h245.minCustomPictureHeight minCustomPictureHeight Unsigned 32-bit integer CustomPictureFormat/minCustomPictureHeight
h245.minCustomPictureWidth minCustomPictureWidth Unsigned 32-bit integer CustomPictureFormat/minCustomPictureWidth
h245.minPoliced minPoliced Unsigned 32-bit integer RSVPParameters/minPoliced
h245.miscellaneousCommand miscellaneousCommand No value CommandMessage/miscellaneousCommand
h245.miscellaneousIndication miscellaneousIndication No value IndicationMessage/miscellaneousIndication
h245.mobile mobile No value DialingInformationNetworkType/mobile
h245.mobileMultilinkFrameCapability mobileMultilinkFrameCapability No value H223Capability/mobileMultilinkFrameCapability
h245.mobileMultilinkReconfigurationCommand mobileMultilinkReconfigurationCommand No value CommandMessage/mobileMultilinkReconfigurationCommand
h245.mobileMultilinkReconfigurationIndication mobileMultilinkReconfigurationIndication No value IndicationMessage/mobileMultilinkReconfigurationIndication
h245.mobileOperationTransmitCapability mobileOperationTransmitCapability No value H223Capability/mobileOperationTransmitCapability
h245.mode mode Unsigned 32-bit integer V76LogicalChannelParameters/mode
h245.modeChangeCapability modeChangeCapability Boolean H223Capability/mobileOperationTransmitCapability/modeChangeCapability
h245.modeCombos modeCombos No value H263Options/modeCombos
h245.modeCombos_item Item No value H263Options/modeCombos/_item
h245.modeUnavailable modeUnavailable No value RequestModeReject/cause/modeUnavailable
h245.modifiedQuantizationMode modifiedQuantizationMode Boolean
h245.mpsmElements mpsmElements No value MultiplePayloadStreamMode/mpsmElements
h245.mpsmElements_item Item No value MultiplePayloadStreamMode/mpsmElements/_item
h245.mpuHorizMBs mpuHorizMBs Unsigned 32-bit integer RefPictureSelection/enhancedReferencePicSelect/subPictureRemovalParameters/mpuHorizMBs
h245.mpuTotalNumber mpuTotalNumber Unsigned 32-bit integer RefPictureSelection/enhancedReferencePicSelect/subPictureRemovalParameters/mpuTotalNumber
h245.mpuVertMBs mpuVertMBs Unsigned 32-bit integer RefPictureSelection/enhancedReferencePicSelect/subPictureRemovalParameters/mpuVertMBs
h245.multiUniCastConference multiUniCastConference Boolean MultipointCapability/multiUniCastConference
h245.multicast multicast No value NetworkAccessParameters/distribution/multicast
h245.multicastAddress multicastAddress Unsigned 32-bit integer TransportAddress/multicastAddress
h245.multicastCapability multicastCapability Boolean MultipointCapability/multicastCapability
h245.multicastChannelNotAllowed multicastChannelNotAllowed No value OpenLogicalChannelReject/cause/multicastChannelNotAllowed
h245.multichannelType multichannelType Unsigned 32-bit integer IS11172AudioMode/multichannelType
h245.multilingual multilingual Boolean
h245.multilinkIndication multilinkIndication Unsigned 32-bit integer IndicationMessage/multilinkIndication
h245.multilinkRequest multilinkRequest Unsigned 32-bit integer RequestMessage/multilinkRequest
h245.multilinkResponse multilinkResponse Unsigned 32-bit integer ResponseMessage/multilinkResponse
h245.multiplePayloadStream multiplePayloadStream No value
h245.multiplePayloadStreamCapability multiplePayloadStreamCapability No value Capability/multiplePayloadStreamCapability
h245.multiplePayloadStreamMode multiplePayloadStreamMode No value ModeElementType/multiplePayloadStreamMode
h245.multiplex multiplex Unsigned 32-bit integer NewATMVCCommand/multiplex
h245.multiplexCapability multiplexCapability Unsigned 32-bit integer TerminalCapabilitySet/multiplexCapability
h245.multiplexEntryDescriptors multiplexEntryDescriptors No value MultiplexEntrySend/multiplexEntryDescriptors
h245.multiplexEntryDescriptors_item Item No value MultiplexEntrySend/multiplexEntryDescriptors/_item
h245.multiplexEntrySend multiplexEntrySend No value RequestMessage/multiplexEntrySend
h245.multiplexEntrySendAck multiplexEntrySendAck No value ResponseMessage/multiplexEntrySendAck
h245.multiplexEntrySendReject multiplexEntrySendReject No value ResponseMessage/multiplexEntrySendReject
h245.multiplexEntrySendRelease multiplexEntrySendRelease No value IndicationMessage/multiplexEntrySendRelease
h245.multiplexFormat multiplexFormat Unsigned 32-bit integer
h245.multiplexParameters multiplexParameters Unsigned 32-bit integer OpenLogicalChannel/forwardLogicalChannelParameters/multiplexParameters
h245.multiplexTableEntryNumber multiplexTableEntryNumber Unsigned 32-bit integer
h245.multiplexTableEntryNumber_item Item Unsigned 32-bit integer
h245.multiplexedStream multiplexedStream No value DataType/multiplexedStream
h245.multiplexedStreamMode multiplexedStreamMode No value ModeElementType/multiplexedStreamMode
h245.multiplexedStreamModeParameters multiplexedStreamModeParameters No value ModeElement/multiplexedStreamModeParameters
h245.multipointConference multipointConference No value MiscellaneousIndication/type/multipointConference
h245.multipointConstraint multipointConstraint No value RequestModeReject/cause/multipointConstraint
h245.multipointModeCommand multipointModeCommand No value MiscellaneousCommand/type/multipointModeCommand
h245.multipointSecondaryStatus multipointSecondaryStatus No value MiscellaneousIndication/type/multipointSecondaryStatus
h245.multipointVisualizationCapability multipointVisualizationCapability Boolean ConferenceCapability/multipointVisualizationCapability
h245.multipointZeroComm multipointZeroComm No value MiscellaneousIndication/type/multipointZeroComm
h245.n401 n401 Unsigned 32-bit integer V76HDLCParameters/n401
h245.n401Capability n401Capability Unsigned 32-bit integer V76Capability/n401Capability
h245.n_isdn n-isdn No value DialingInformationNetworkType/n-isdn
h245.nackMessageOnly nackMessageOnly No value RefPictureSelection/videoBackChannelSend/nackMessageOnly
h245.netBios netBios Byte array UnicastAddress/netBios
h245.netnum netnum Byte array UnicastAddress/iPXAddress/netnum
h245.network network IPv4 address UnicastAddress/iPAddress/network
h245.networkAddress networkAddress Unsigned 32-bit integer NetworkAccessParameters/networkAddress
h245.networkType networkType No value DialingInformationNumber/networkType
h245.networkType_item Item Unsigned 32-bit integer DialingInformationNumber/networkType/_item
h245.newATMVCCommand newATMVCCommand No value CommandMessage/newATMVCCommand
h245.newATMVCIndication newATMVCIndication No value IndicationMessage/newATMVCIndication
h245.nextPictureHeaderRepetition nextPictureHeaderRepetition Boolean H263Version3Options/nextPictureHeaderRepetition
h245.nlpid nlpid No value
h245.nlpidData nlpidData Byte array Nlpid/nlpidData
h245.nlpidProtocol nlpidProtocol Unsigned 32-bit integer Nlpid/nlpidProtocol
h245.noArq noArq No value ArqType/noArq
h245.noMultiplex noMultiplex No value
h245.noRestriction noRestriction No value Restriction/noRestriction
h245.noSilenceSuppressionHighRate noSilenceSuppressionHighRate No value AudioMode/g7231/noSilenceSuppressionHighRate
h245.noSilenceSuppressionLowRate noSilenceSuppressionLowRate No value AudioMode/g7231/noSilenceSuppressionLowRate
h245.noSuspendResume noSuspendResume No value V76LogicalChannelParameters/suspendResume/noSuspendResume
h245.node node Byte array UnicastAddress/iPXAddress/node
h245.nonCollapsing nonCollapsing No value GenericCapability/nonCollapsing
h245.nonCollapsingRaw nonCollapsingRaw Byte array GenericCapability/nonCollapsingRaw
h245.nonCollapsing_item Item No value GenericCapability/nonCollapsing/_item
h245.nonStandard nonStandard No value
h245.nonStandardAddress nonStandardAddress No value
h245.nonStandardData nonStandardData No value
h245.nonStandardData_item Item No value ConferenceCapability/nonStandardData/_item
h245.nonStandardIdentifier nonStandardIdentifier Unsigned 32-bit integer NonStandardParameter/nonStandardIdentifier
h245.nonStandard_item Item No value
h245.none none No value
h245.noneProcessed noneProcessed No value TerminalCapabilitySetReject/cause/tableEntryCapacityExceeded/noneProcessed
h245.normal normal No value RequestChannelClose/reason/normal
h245.nsap nsap Byte array
h245.nsapAddress nsapAddress Byte array Q2931Address/address/nsapAddress
h245.nsrpSupport nsrpSupport Boolean H223Capability/nsrpSupport
h245.nullClockRecovery nullClockRecovery Boolean
h245.nullData nullData No value DataType/nullData
h245.nullErrorCorrection nullErrorCorrection Boolean
h245.numOfDLCS numOfDLCS Unsigned 32-bit integer V76Capability/numOfDLCS
h245.numberOfBPictures numberOfBPictures Unsigned 32-bit integer BEnhancementParameters/numberOfBPictures
h245.numberOfCodewords numberOfCodewords Unsigned 32-bit integer V42bis/numberOfCodewords
h245.numberOfGOBs numberOfGOBs Unsigned 32-bit integer MiscellaneousCommand/type/videoFastUpdateGOB/numberOfGOBs
h245.numberOfMBs numberOfMBs Unsigned 32-bit integer
h245.numberOfRetransmissions numberOfRetransmissions Unsigned 32-bit integer H223AnnexCArqParameters/numberOfRetransmissions
h245.numberOfThreads numberOfThreads Unsigned 32-bit integer RTPH263VideoRedundancyEncoding/numberOfThreads
h245.numberOfVCs numberOfVCs Unsigned 32-bit integer H222Capability/numberOfVCs
h245.object object String NonStandardIdentifier/object
h245.octetString octetString Byte array ParameterValue/octetString
h245.offset_x offset-x Unsigned 32-bit integer TransparencyParameters/offset-x
h245.offset_y offset-y Unsigned 32-bit integer TransparencyParameters/offset-y
h245.oid oid String RTPPayloadType/payloadDescriptor/oid
h245.openLogicalChannel openLogicalChannel No value RequestMessage/openLogicalChannel
h245.openLogicalChannelAck openLogicalChannelAck No value ResponseMessage/openLogicalChannelAck
h245.openLogicalChannelConfirm openLogicalChannelConfirm No value IndicationMessage/openLogicalChannelConfirm
h245.openLogicalChannelReject openLogicalChannelReject No value ResponseMessage/openLogicalChannelReject
h245.originateCall originateCall No value NetworkAccessParameters/t120SetupProcedure/originateCall
h245.paramS paramS No value
h245.parameterIdentifier parameterIdentifier Unsigned 32-bit integer GenericParameter/parameterIdentifier
h245.parameterValue parameterValue Unsigned 32-bit integer GenericParameter/parameterValue
h245.partialPictureFreezeAndRelease partialPictureFreezeAndRelease Boolean H263Options/partialPictureFreezeAndRelease
h245.partialPictureSnapshot partialPictureSnapshot Boolean H263Options/partialPictureSnapshot
h245.partiallyFilledCells partiallyFilledCells Boolean
h245.password password Byte array ConferenceResponse/passwordResponse/password
h245.passwordResponse passwordResponse No value ConferenceResponse/passwordResponse
h245.payloadDescriptor payloadDescriptor Unsigned 32-bit integer RTPPayloadType/payloadDescriptor
h245.payloadType payloadType Unsigned 32-bit integer
h245.pbFrames pbFrames Boolean
h245.pcr_pid pcr-pid Unsigned 32-bit integer H222LogicalChannelParameters/pcr-pid
h245.pdu_type PDU Type Unsigned 32-bit integer Type of H.245 PDU
h245.peakRate peakRate Unsigned 32-bit integer RSVPParameters/peakRate
h245.pictureNumber pictureNumber Boolean H263Version3Options/pictureNumber
h245.pictureRate pictureRate Unsigned 32-bit integer
h245.pictureReference pictureReference Unsigned 32-bit integer MiscellaneousCommand/type/lostPartialPicture/pictureReference
h245.pixelAspectCode pixelAspectCode No value CustomPictureFormat/pixelAspectInformation/pixelAspectCode
h245.pixelAspectCode_item Item Unsigned 32-bit integer CustomPictureFormat/pixelAspectInformation/pixelAspectCode/_item
h245.pixelAspectInformation pixelAspectInformation Unsigned 32-bit integer CustomPictureFormat/pixelAspectInformation
h245.portNumber portNumber Unsigned 32-bit integer
h245.presentationOrder presentationOrder Unsigned 32-bit integer TransparencyParameters/presentationOrder
h245.previousPictureHeaderRepetition previousPictureHeaderRepetition Boolean H263Version3Options/previousPictureHeaderRepetition
h245.primary primary No value RedundancyEncoding/rtpRedundancyEncoding/primary
h245.primaryEncoding primaryEncoding Unsigned 32-bit integer RedundancyEncodingCapability/primaryEncoding
h245.productNumber productNumber Byte array VendorIdentification/productNumber
h245.profileAndLevel profileAndLevel Unsigned 32-bit integer H262VideoMode/profileAndLevel
h245.profileAndLevel_HPatHL profileAndLevel-HPatHL Boolean H262VideoCapability/profileAndLevel-HPatHL
h245.profileAndLevel_HPatH_14 profileAndLevel-HPatH-14 Boolean H262VideoCapability/profileAndLevel-HPatH-14
h245.profileAndLevel_HPatML profileAndLevel-HPatML Boolean H262VideoCapability/profileAndLevel-HPatML
h245.profileAndLevel_MPatHL profileAndLevel-MPatHL Boolean H262VideoCapability/profileAndLevel-MPatHL
h245.profileAndLevel_MPatH_14 profileAndLevel-MPatH-14 Boolean H262VideoCapability/profileAndLevel-MPatH-14
h245.profileAndLevel_MPatLL profileAndLevel-MPatLL Boolean H262VideoCapability/profileAndLevel-MPatLL
h245.profileAndLevel_MPatML profileAndLevel-MPatML Boolean H262VideoCapability/profileAndLevel-MPatML
h245.profileAndLevel_SNRatLL profileAndLevel-SNRatLL Boolean H262VideoCapability/profileAndLevel-SNRatLL
h245.profileAndLevel_SNRatML profileAndLevel-SNRatML Boolean H262VideoCapability/profileAndLevel-SNRatML
h245.profileAndLevel_SPatML profileAndLevel-SPatML Boolean H262VideoCapability/profileAndLevel-SPatML
h245.profileAndLevel_SpatialatH_14 profileAndLevel-SpatialatH-14 Boolean H262VideoCapability/profileAndLevel-SpatialatH-14
h245.programDescriptors programDescriptors Byte array H222LogicalChannelParameters/programDescriptors
h245.programStream programStream Boolean VCCapability/programStream
h245.progressiveRefinement progressiveRefinement Boolean H263Options/progressiveRefinement
h245.progressiveRefinementAbortContinuous progressiveRefinementAbortContinuous No value MiscellaneousCommand/type/progressiveRefinementAbortContinuous
h245.progressiveRefinementAbortOne progressiveRefinementAbortOne No value MiscellaneousCommand/type/progressiveRefinementAbortOne
h245.progressiveRefinementStart progressiveRefinementStart No value MiscellaneousCommand/type/progressiveRefinementStart
h245.protectedPayloadType protectedPayloadType Unsigned 32-bit integer
h245.protectedSessionID protectedSessionID Unsigned 32-bit integer SeparateStream/differentPort/protectedSessionID
h245.protocolIdentifier protocolIdentifier String TerminalCapabilitySet/protocolIdentifier
h245.q2931Address q2931Address No value NetworkAccessParameters/networkAddress/q2931Address
h245.qOSCapabilities qOSCapabilities No value TransportCapability/qOSCapabilities
h245.qOSCapabilities_item Item No value TransportCapability/qOSCapabilities/_item
h245.qcif qcif Boolean T84Profile/t84Restricted/qcif
h245.qcifAdditionalPictureMemory qcifAdditionalPictureMemory Unsigned 32-bit integer RefPictureSelection/additionalPictureMemory/qcifAdditionalPictureMemory
h245.qcifMPI qcifMPI Unsigned 32-bit integer H261VideoCapability/qcifMPI
h245.qosCapability qosCapability No value RequestChannelClose/qosCapability
h245.qosMode qosMode Unsigned 32-bit integer RSVPParameters/qosMode
h245.rangeOfBitRates rangeOfBitRates No value VCCapability/availableBitRates/type/rangeOfBitRates
h245.rcpcCodeRate rcpcCodeRate Unsigned 32-bit integer
h245.reason reason Unsigned 32-bit integer CloseLogicalChannel/reason
h245.receiveAndTransmitAudioCapability receiveAndTransmitAudioCapability Unsigned 32-bit integer Capability/receiveAndTransmitAudioCapability
h245.receiveAndTransmitDataApplicationCapability receiveAndTransmitDataApplicationCapability No value Capability/receiveAndTransmitDataApplicationCapability
h245.receiveAndTransmitMultiplexedStreamCapability receiveAndTransmitMultiplexedStreamCapability No value Capability/receiveAndTransmitMultiplexedStreamCapability
h245.receiveAndTransmitMultipointCapability receiveAndTransmitMultipointCapability No value H2250Capability/receiveAndTransmitMultipointCapability
h245.receiveAndTransmitUserInputCapability receiveAndTransmitUserInputCapability Unsigned 32-bit integer Capability/receiveAndTransmitUserInputCapability
h245.receiveAndTransmitVideoCapability receiveAndTransmitVideoCapability Unsigned 32-bit integer Capability/receiveAndTransmitVideoCapability
h245.receiveAudioCapability receiveAudioCapability Unsigned 32-bit integer Capability/receiveAudioCapability
h245.receiveCompression receiveCompression Unsigned 32-bit integer DataProtocolCapability/v76wCompression/receiveCompression
h245.receiveDataApplicationCapability receiveDataApplicationCapability No value Capability/receiveDataApplicationCapability
h245.receiveMultiplexedStreamCapability receiveMultiplexedStreamCapability No value Capability/receiveMultiplexedStreamCapability
h245.receiveMultipointCapability receiveMultipointCapability No value H2250Capability/receiveMultipointCapability
h245.receiveRTPAudioTelephonyEventCapability receiveRTPAudioTelephonyEventCapability No value Capability/receiveRTPAudioTelephonyEventCapability
h245.receiveRTPAudioToneCapability receiveRTPAudioToneCapability No value Capability/receiveRTPAudioToneCapability
h245.receiveUserInputCapability receiveUserInputCapability Unsigned 32-bit integer Capability/receiveUserInputCapability
h245.receiveVideoCapability receiveVideoCapability Unsigned 32-bit integer Capability/receiveVideoCapability
h245.reconfiguration reconfiguration No value MobileMultilinkReconfigurationCommand/status/reconfiguration
h245.recovery recovery Unsigned 32-bit integer V76LogicalChannelParameters/mode/eRM/recovery
h245.recoveryReferencePicture recoveryReferencePicture No value MiscellaneousCommand/type/recoveryReferencePicture
h245.recoveryReferencePicture_item Item Unsigned 32-bit integer MiscellaneousCommand/type/recoveryReferencePicture/_item
h245.reducedResolutionUpdate reducedResolutionUpdate Boolean
h245.redundancyEncoding redundancyEncoding Boolean FECCapability/rfc2733/redundancyEncoding
h245.redundancyEncodingCapability redundancyEncodingCapability No value H2250Capability/redundancyEncodingCapability
h245.redundancyEncodingCapability_item Item No value H2250Capability/redundancyEncodingCapability/_item
h245.redundancyEncodingDTMode redundancyEncodingDTMode No value ModeElementType/redundancyEncodingDTMode
h245.redundancyEncodingMethod redundancyEncodingMethod Unsigned 32-bit integer
h245.redundancyEncodingMode redundancyEncodingMode No value H2250ModeParameters/redundancyEncodingMode
h245.refPictureSelection refPictureSelection No value H263Options/refPictureSelection
h245.referencePicSelect referencePicSelect Boolean H263ModeComboFlags/referencePicSelect
h245.rej rej No value V76LogicalChannelParameters/mode/eRM/recovery/rej
h245.rejCapability rejCapability Boolean V76Capability/rejCapability
h245.reject reject Unsigned 32-bit integer RemoteMCResponse/reject
h245.rejectReason rejectReason Unsigned 32-bit integer LogicalChannelRateReject/rejectReason
h245.rejected rejected Unsigned 32-bit integer MultilinkResponse/addConnection/responseCode/rejected
h245.rejectionDescriptions1 rejectionDescriptions1 No value MultiplexEntrySendReject/rejectionDescriptions1
h245.rejectionDescriptions1_item Item No value MultiplexEntrySendReject/rejectionDescriptions1/_item
h245.rejectionDescriptions2 rejectionDescriptions2 No value RequestMultiplexEntryReject/rejectionDescriptions2
h245.rejectionDescriptions2_item Item No value RequestMultiplexEntryReject/rejectionDescriptions2/_item
h245.remoteMCRequest remoteMCRequest Unsigned 32-bit integer ConferenceRequest/remoteMCRequest
h245.remoteMCResponse remoteMCResponse Unsigned 32-bit integer ConferenceResponse/remoteMCResponse
h245.removeConnection removeConnection No value MultilinkRequest/removeConnection
h245.reopen reopen No value
h245.repeatCount repeatCount Unsigned 32-bit integer MultiplexElement/repeatCount
h245.replacementFor replacementFor Unsigned 32-bit integer
h245.replacementForRejected replacementForRejected No value OpenLogicalChannelReject/cause/replacementForRejected
h245.request request Unsigned 32-bit integer
h245.requestAllTerminalIDs requestAllTerminalIDs No value ConferenceRequest/requestAllTerminalIDs
h245.requestAllTerminalIDsResponse requestAllTerminalIDsResponse No value ConferenceResponse/requestAllTerminalIDsResponse
h245.requestChairTokenOwner requestChairTokenOwner No value ConferenceRequest/requestChairTokenOwner
h245.requestChannelClose requestChannelClose No value RequestMessage/requestChannelClose
h245.requestChannelCloseAck requestChannelCloseAck No value ResponseMessage/requestChannelCloseAck
h245.requestChannelCloseReject requestChannelCloseReject No value ResponseMessage/requestChannelCloseReject
h245.requestChannelCloseRelease requestChannelCloseRelease No value IndicationMessage/requestChannelCloseRelease
h245.requestDenied requestDenied No value RequestModeReject/cause/requestDenied
h245.requestForFloor requestForFloor No value ConferenceIndication/requestForFloor
h245.requestMode requestMode No value RequestMessage/requestMode
h245.requestModeAck requestModeAck No value ResponseMessage/requestModeAck
h245.requestModeReject requestModeReject No value ResponseMessage/requestModeReject
h245.requestModeRelease requestModeRelease No value IndicationMessage/requestModeRelease
h245.requestMultiplexEntry requestMultiplexEntry No value RequestMessage/requestMultiplexEntry
h245.requestMultiplexEntryAck requestMultiplexEntryAck No value ResponseMessage/requestMultiplexEntryAck
h245.requestMultiplexEntryReject requestMultiplexEntryReject No value ResponseMessage/requestMultiplexEntryReject
h245.requestMultiplexEntryRelease requestMultiplexEntryRelease No value IndicationMessage/requestMultiplexEntryRelease
h245.requestTerminalCertificate requestTerminalCertificate No value ConferenceRequest/requestTerminalCertificate
h245.requestTerminalID requestTerminalID No value ConferenceRequest/requestTerminalID
h245.requestType requestType Unsigned 32-bit integer MultilinkRequest/maximumHeaderInterval/requestType
h245.requestedInterval requestedInterval Unsigned 32-bit integer MultilinkRequest/maximumHeaderInterval/requestType/requestedInterval
h245.requestedModes requestedModes No value RequestMode/requestedModes
h245.requestedModes_item Item No value RequestMode/requestedModes/_item
h245.reservationFailure reservationFailure No value
h245.resizingPartPicFreezeAndRelease resizingPartPicFreezeAndRelease Boolean H263Options/resizingPartPicFreezeAndRelease
h245.resolution resolution Unsigned 32-bit integer H261VideoMode/resolution
h245.resourceID resourceID Unsigned 32-bit integer
h245.response response Unsigned 32-bit integer
h245.responseCode responseCode Unsigned 32-bit integer MultilinkResponse/addConnection/responseCode
h245.restriction restriction Unsigned 32-bit integer
h245.returnedFunction returnedFunction Byte array FunctionNotSupported/returnedFunction
h245.reverseLogicalChannelDependency reverseLogicalChannelDependency Unsigned 32-bit integer OpenLogicalChannel/reverseLogicalChannelParameters/reverseLogicalChannelDependency
h245.reverseLogicalChannelNumber reverseLogicalChannelNumber Unsigned 32-bit integer OpenLogicalChannelAck/reverseLogicalChannelParameters/reverseLogicalChannelNumber
h245.reverseLogicalChannelParameters reverseLogicalChannelParameters No value OpenLogicalChannel/reverseLogicalChannelParameters
h245.reverseParameters reverseParameters No value NewATMVCCommand/reverseParameters
h245.rfc2733 rfc2733 No value FECCapability/rfc2733
h245.rfc2733Mode rfc2733Mode No value FECMode/rfc2733Mode
h245.rfc_number rfc-number Unsigned 32-bit integer RTPPayloadType/payloadDescriptor/rfc-number
h245.roundTripDelayRequest roundTripDelayRequest No value RequestMessage/roundTripDelayRequest
h245.roundTripDelayResponse roundTripDelayResponse No value ResponseMessage/roundTripDelayResponse
h245.roundrobin roundrobin No value RTPH263VideoRedundancyEncoding/frameToThreadMapping/roundrobin
h245.route route No value UnicastAddress/iPSourceRouteAddress/route
h245.route_item Item Byte array UnicastAddress/iPSourceRouteAddress/route/_item
h245.routing routing Unsigned 32-bit integer UnicastAddress/iPSourceRouteAddress/routing
h245.rsCodeCapability rsCodeCapability Boolean H223AnnexCCapability/rsCodeCapability
h245.rsCodeCorrection rsCodeCorrection Unsigned 32-bit integer
h245.rsvpParameters rsvpParameters No value QOSCapability/rsvpParameters
h245.rtcpVideoControlCapability rtcpVideoControlCapability Boolean H2250Capability/rtcpVideoControlCapability
h245.rtp rtp No value UserInputIndication/signal/rtp
h245.rtpAudioRedundancyEncoding rtpAudioRedundancyEncoding No value RedundancyEncodingMethod/rtpAudioRedundancyEncoding
h245.rtpH263VideoRedundancyEncoding rtpH263VideoRedundancyEncoding No value RedundancyEncodingMethod/rtpH263VideoRedundancyEncoding
h245.rtpPayloadIndication rtpPayloadIndication No value
h245.rtpPayloadType rtpPayloadType No value H2250LogicalChannelParameters/mediaPacketization/rtpPayloadType
h245.rtpPayloadType2 rtpPayloadType2 No value MediaPacketizationCapability/rtpPayloadType2
h245.rtpPayloadType2_item Item No value MediaPacketizationCapability/rtpPayloadType2/_item
h245.rtpRedundancyEncoding rtpRedundancyEncoding No value RedundancyEncoding/rtpRedundancyEncoding
h245.sREJ sREJ No value V76LogicalChannelParameters/mode/eRM/recovery/sREJ
h245.sREJCapability sREJCapability Boolean V76Capability/sREJCapability
h245.sRandom sRandom Unsigned 32-bit integer ConferenceRequest/requestTerminalCertificate/sRandom
h245.samePort samePort Boolean FECCapability/rfc2733/separateStream/samePort
h245.sampleSize sampleSize Unsigned 32-bit integer
h245.samplesPerFrame samplesPerFrame Unsigned 32-bit integer
h245.samplesPerLine samplesPerLine Unsigned 32-bit integer
h245.sbeNumber sbeNumber Unsigned 32-bit integer ConferenceIndication/sbeNumber
h245.scale_x scale-x Unsigned 32-bit integer TransparencyParameters/scale-x
h245.scale_y scale-y Unsigned 32-bit integer TransparencyParameters/scale-y
h245.scope scope Unsigned 32-bit integer
h245.scrambled scrambled Boolean GSMAudioCapability/scrambled
h245.sebch16_5 sebch16-5 No value H223AL2MParameters/headerFEC/sebch16-5
h245.sebch16_7 sebch16-7 No value
h245.secondary secondary No value RedundancyEncoding/rtpRedundancyEncoding/secondary
h245.secondary2 secondary2 No value RedundancyEncodingDTMode/secondary2
h245.secondary2_item Item No value RedundancyEncodingDTMode/secondary2/_item
h245.secondaryEncoding secondaryEncoding Unsigned 32-bit integer RedundancyEncodingMode/secondaryEncoding
h245.secondaryEncoding2 secondaryEncoding2 No value RedundancyEncodingCapability/secondaryEncoding2
h245.secondaryEncoding2_item Item Unsigned 32-bit integer RedundancyEncodingCapability/secondaryEncoding2/_item
h245.secondaryEncoding3 secondaryEncoding3 Unsigned 32-bit integer RedundancyEncoding/secondaryEncoding3
h245.secondary_item Item No value RedundancyEncoding/rtpRedundancyEncoding/secondary/_item
h245.secureChannel secureChannel Boolean KeyProtectionMethod/secureChannel
h245.secureDTMF secureDTMF No value UserInputCapability/secureDTMF
h245.seenByAll seenByAll No value ConferenceIndication/seenByAll
h245.seenByAtLeastOneOther seenByAtLeastOneOther No value ConferenceIndication/seenByAtLeastOneOther
h245.segmentableFlag segmentableFlag Boolean
h245.segmentationAndReassembly segmentationAndReassembly No value DataProtocolCapability/segmentationAndReassembly
h245.semanticError semanticError No value FunctionNotSupported/cause/semanticError
h245.sendBufferSize sendBufferSize Unsigned 32-bit integer
h245.sendTerminalCapabilitySet sendTerminalCapabilitySet Unsigned 32-bit integer CommandMessage/sendTerminalCapabilitySet
h245.sendThisSource sendThisSource No value
h245.sendThisSourceResponse sendThisSourceResponse Unsigned 32-bit integer ConferenceResponse/sendThisSourceResponse
h245.separateLANStack separateLANStack No value DataProtocolCapability/separateLANStack
h245.separatePort separatePort Boolean FECCapability/rfc2733/separateStream/separatePort
h245.separateStack separateStack No value
h245.separateStackEstablishmentFailed separateStackEstablishmentFailed No value OpenLogicalChannelReject/cause/separateStackEstablishmentFailed
h245.separateStream separateStream No value FECCapability/rfc2733/separateStream
h245.separateVideoBackChannel separateVideoBackChannel Boolean H263Options/separateVideoBackChannel
h245.sequenceNumber sequenceNumber Unsigned 32-bit integer
h245.sessionDependency sessionDependency Unsigned 32-bit integer CommunicationModeTableEntry/sessionDependency
h245.sessionDescription sessionDescription String CommunicationModeTableEntry/sessionDescription
h245.sessionID sessionID Unsigned 32-bit integer H2250LogicalChannelParameters/sessionID
h245.sharedSecret sharedSecret Boolean KeyProtectionMethod/sharedSecret
h245.shortInterleaver shortInterleaver Boolean
h245.sidMode0 sidMode0 Unsigned 32-bit integer G723AnnexCAudioMode/sidMode0
h245.sidMode1 sidMode1 Unsigned 32-bit integer G723AnnexCAudioMode/sidMode1
h245.signal signal No value UserInputIndication/signal
h245.signalAddress signalAddress Unsigned 32-bit integer MCLocationIndication/signalAddress
h245.signalType signalType String UserInputIndication/signal/signalType
h245.signalUpdate signalUpdate No value UserInputIndication/signalUpdate
h245.silenceSuppression silenceSuppression Boolean
h245.silenceSuppressionHighRate silenceSuppressionHighRate No value AudioMode/g7231/silenceSuppressionHighRate
h245.silenceSuppressionLowRate silenceSuppressionLowRate No value AudioMode/g7231/silenceSuppressionLowRate
h245.simultaneousCapabilities simultaneousCapabilities No value CapabilityDescriptor/simultaneousCapabilities
h245.simultaneousCapabilities_item Item No value CapabilityDescriptor/simultaneousCapabilities/_item
h245.singleBitRate singleBitRate Unsigned 32-bit integer VCCapability/availableBitRates/type/singleBitRate
h245.singleChannel singleChannel Boolean
h245.skew skew Unsigned 32-bit integer H223SkewIndication/skew
h245.skippedFrameCount skippedFrameCount Unsigned 32-bit integer JitterIndication/skippedFrameCount
h245.slave slave No value MasterSlaveDeterminationAck/decision/slave
h245.slaveActivate slaveActivate No value RemoteMCRequest/slaveActivate
h245.slaveToMaster slaveToMaster No value EncryptionUpdateDirection/slaveToMaster
h245.slicesInOrder_NonRect slicesInOrder-NonRect Boolean
h245.slicesInOrder_Rect slicesInOrder-Rect Boolean
h245.slicesNoOrder_NonRect slicesNoOrder-NonRect Boolean
h245.slicesNoOrder_Rect slicesNoOrder-Rect Boolean
h245.slowCif16MPI slowCif16MPI Unsigned 32-bit integer
h245.slowCif4MPI slowCif4MPI Unsigned 32-bit integer
h245.slowCifMPI slowCifMPI Unsigned 32-bit integer
h245.slowQcifMPI slowQcifMPI Unsigned 32-bit integer
h245.slowSqcifMPI slowSqcifMPI Unsigned 32-bit integer
h245.snrEnhancement snrEnhancement No value EnhancementLayerInfo/snrEnhancement
h245.snrEnhancement_item Item No value EnhancementLayerInfo/snrEnhancement/_item
h245.source source No value H2250LogicalChannelParameters/source
h245.spareReferencePictures spareReferencePictures Boolean H263Version3Options/spareReferencePictures
h245.spatialEnhancement spatialEnhancement No value EnhancementLayerInfo/spatialEnhancement
h245.spatialEnhancement_item Item No value EnhancementLayerInfo/spatialEnhancement/_item
h245.specificRequest specificRequest No value SendTerminalCapabilitySet/specificRequest
h245.sqcif sqcif No value H263VideoMode/resolution/sqcif
h245.sqcifAdditionalPictureMemory sqcifAdditionalPictureMemory Unsigned 32-bit integer RefPictureSelection/additionalPictureMemory/sqcifAdditionalPictureMemory
h245.sqcifMPI sqcifMPI Unsigned 32-bit integer
h245.srtsClockRecovery srtsClockRecovery Boolean VCCapability/aal1/srtsClockRecovery
h245.standard standard String CapabilityIdentifier/standard
h245.standardMPI standardMPI Unsigned 32-bit integer CustomPictureFormat/mPI/standardMPI
h245.start start No value H223MultiplexReconfiguration/h223AnnexADoubleFlag/start
h245.status status Unsigned 32-bit integer MobileMultilinkReconfigurationCommand/status
h245.statusDeterminationNumber statusDeterminationNumber Unsigned 32-bit integer MasterSlaveDetermination/statusDeterminationNumber
h245.stillImageTransmission stillImageTransmission Boolean
h245.stop stop No value H223MultiplexReconfiguration/h223AnnexADoubleFlag/stop
h245.streamDescriptors streamDescriptors Byte array H222LogicalChannelParameters/streamDescriptors
h245.strict strict No value UnicastAddress/iPSourceRouteAddress/routing/strict
h245.structuredDataTransfer structuredDataTransfer Boolean
h245.subAddress subAddress String DialingInformationNumber/subAddress
h245.subChannelID subChannelID Unsigned 32-bit integer H222LogicalChannelParameters/subChannelID
h245.subElementList subElementList No value MultiplexElement/type/subElementList
h245.subElementList_item Item No value MultiplexElement/type/subElementList/_item
h245.subMessageIdentifer subMessageIdentifer Unsigned 32-bit integer GenericMessage/subMessageIdentifer
h245.subPictureNumber subPictureNumber Unsigned 32-bit integer TerminalYouAreSeeingInSubPictureNumber/subPictureNumber
h245.subPictureRemovalParameters subPictureRemovalParameters No value RefPictureSelection/enhancedReferencePicSelect/subPictureRemovalParameters
h245.subaddress subaddress Byte array Q2931Address/subaddress
h245.substituteConferenceIDCommand substituteConferenceIDCommand No value ConferenceCommand/substituteConferenceIDCommand
h245.supersedes supersedes No value GenericParameter/supersedes
h245.supersedes_item Item Unsigned 32-bit integer GenericParameter/supersedes/_item
h245.suspendResume suspendResume Unsigned 32-bit integer V76LogicalChannelParameters/suspendResume
h245.suspendResumeCapabilitywAddress suspendResumeCapabilitywAddress Boolean V76Capability/suspendResumeCapabilitywAddress
h245.suspendResumeCapabilitywoAddress suspendResumeCapabilitywoAddress Boolean V76Capability/suspendResumeCapabilitywoAddress
h245.suspendResumewAddress suspendResumewAddress No value
h245.suspendResumewoAddress suspendResumewoAddress No value
h245.switchReceiveMediaOff switchReceiveMediaOff No value MiscellaneousCommand/type/switchReceiveMediaOff
h245.switchReceiveMediaOn switchReceiveMediaOn No value MiscellaneousCommand/type/switchReceiveMediaOn
h245.synchFlag synchFlag Unsigned 32-bit integer
h245.synchronized synchronized No value MobileMultilinkReconfigurationCommand/status/synchronized
h245.syntaxError syntaxError No value FunctionNotSupported/cause/syntaxError
h245.systemLoop systemLoop No value
h245.t120 t120 Unsigned 32-bit integer
h245.t120DynamicPortCapability t120DynamicPortCapability Boolean H2250Capability/t120DynamicPortCapability
h245.t120SetupProcedure t120SetupProcedure Unsigned 32-bit integer NetworkAccessParameters/t120SetupProcedure
h245.t140 t140 Unsigned 32-bit integer
h245.t30fax t30fax Unsigned 32-bit integer
h245.t35CountryCode t35CountryCode Unsigned 32-bit integer NonStandardIdentifier/h221NonStandard/t35CountryCode
h245.t35Extension t35Extension Unsigned 32-bit integer NonStandardIdentifier/h221NonStandard/t35Extension
h245.t38FaxMaxBuffer t38FaxMaxBuffer Signed 32-bit integer T38FaxUdpOptions/t38FaxMaxBuffer
h245.t38FaxMaxDatagram t38FaxMaxDatagram Signed 32-bit integer T38FaxUdpOptions/t38FaxMaxDatagram
h245.t38FaxProfile t38FaxProfile No value
h245.t38FaxProtocol t38FaxProtocol Unsigned 32-bit integer
h245.t38FaxRateManagement t38FaxRateManagement Unsigned 32-bit integer T38FaxProfile/t38FaxRateManagement
h245.t38FaxTcpOptions t38FaxTcpOptions No value T38FaxProfile/t38FaxTcpOptions
h245.t38FaxUdpEC t38FaxUdpEC Unsigned 32-bit integer T38FaxUdpOptions/t38FaxUdpEC
h245.t38FaxUdpOptions t38FaxUdpOptions No value T38FaxProfile/t38FaxUdpOptions
h245.t38TCPBidirectionalMode t38TCPBidirectionalMode Boolean T38FaxTcpOptions/t38TCPBidirectionalMode
h245.t38UDPFEC t38UDPFEC No value T38FaxUdpOptions/t38FaxUdpEC/t38UDPFEC
h245.t38UDPRedundancy t38UDPRedundancy No value T38FaxUdpOptions/t38FaxUdpEC/t38UDPRedundancy
h245.t38fax t38fax No value Application/t38fax
h245.t434 t434 Unsigned 32-bit integer
h245.t84 t84 No value Application/t84
h245.t84Profile t84Profile Unsigned 32-bit integer Application/t84/t84Profile
h245.t84Protocol t84Protocol Unsigned 32-bit integer Application/t84/t84Protocol
h245.t84Restricted t84Restricted No value T84Profile/t84Restricted
h245.t84Unrestricted t84Unrestricted No value T84Profile/t84Unrestricted
h245.tableEntryCapacityExceeded tableEntryCapacityExceeded Unsigned 32-bit integer TerminalCapabilitySetReject/cause/tableEntryCapacityExceeded
h245.tcp tcp No value DataProtocolCapability/tcp
h245.telephonyMode telephonyMode No value
h245.temporalReference temporalReference Unsigned 32-bit integer MiscellaneousCommand/type/videoBadMBs/temporalReference
h245.temporalSpatialTradeOffCapability temporalSpatialTradeOffCapability Boolean
h245.terminalCapabilitySet terminalCapabilitySet No value RequestMessage/terminalCapabilitySet
h245.terminalCapabilitySetAck terminalCapabilitySetAck No value ResponseMessage/terminalCapabilitySetAck
h245.terminalCapabilitySetReject terminalCapabilitySetReject No value ResponseMessage/terminalCapabilitySetReject
h245.terminalCapabilitySetRelease terminalCapabilitySetRelease No value IndicationMessage/terminalCapabilitySetRelease
h245.terminalCertificateResponse terminalCertificateResponse No value ConferenceResponse/terminalCertificateResponse
h245.terminalDropReject terminalDropReject No value ConferenceResponse/terminalDropReject
h245.terminalID terminalID Byte array
h245.terminalIDResponse terminalIDResponse No value ConferenceResponse/terminalIDResponse
h245.terminalInformation terminalInformation No value RequestAllTerminalIDsResponse/terminalInformation
h245.terminalInformation_item Item No value RequestAllTerminalIDsResponse/terminalInformation/_item
h245.terminalJoinedConference terminalJoinedConference No value ConferenceIndication/terminalJoinedConference
h245.terminalLabel terminalLabel No value
h245.terminalLeftConference terminalLeftConference No value ConferenceIndication/terminalLeftConference
h245.terminalListRequest terminalListRequest No value ConferenceRequest/terminalListRequest
h245.terminalListResponse terminalListResponse No value ConferenceResponse/terminalListResponse
h245.terminalListResponse_item Item No value ConferenceResponse/terminalListResponse/_item
h245.terminalNumber terminalNumber Unsigned 32-bit integer
h245.terminalNumberAssign terminalNumberAssign No value ConferenceIndication/terminalNumberAssign
h245.terminalOnHold terminalOnHold No value EndSessionCommand/isdnOptions/terminalOnHold
h245.terminalType terminalType Unsigned 32-bit integer MasterSlaveDetermination/terminalType
h245.terminalYouAreSeeing terminalYouAreSeeing No value ConferenceIndication/terminalYouAreSeeing
h245.terminalYouAreSeeingInSubPictureNumber terminalYouAreSeeingInSubPictureNumber No value ConferenceIndication/terminalYouAreSeeingInSubPictureNumber
h245.threadNumber threadNumber Unsigned 32-bit integer RTPH263VideoRedundancyFrameMapping/threadNumber
h245.threeChannels2_1 threeChannels2-1 Boolean IS13818AudioCapability/threeChannels2-1
h245.threeChannels3_0 threeChannels3-0 Boolean IS13818AudioCapability/threeChannels3-0
h245.timestamp timestamp Unsigned 32-bit integer Rtp/timestamp
h245.toLevel0 toLevel0 No value H223MultiplexReconfiguration/h223ModeChange/toLevel0
h245.toLevel1 toLevel1 No value H223MultiplexReconfiguration/h223ModeChange/toLevel1
h245.toLevel2 toLevel2 No value H223MultiplexReconfiguration/h223ModeChange/toLevel2
h245.toLevel2withOptionalHeader toLevel2withOptionalHeader No value H223MultiplexReconfiguration/h223ModeChange/toLevel2withOptionalHeader
h245.tokenRate tokenRate Unsigned 32-bit integer RSVPParameters/tokenRate
h245.transcodingJBIG transcodingJBIG Boolean T38FaxProfile/transcodingJBIG
h245.transcodingMMR transcodingMMR Boolean T38FaxProfile/transcodingMMR
h245.transferMode transferMode Unsigned 32-bit integer H223AL1MParameters/transferMode
h245.transferredTCF transferredTCF No value T38FaxRateManagement/transferredTCF
h245.transmitAndReceiveCompression transmitAndReceiveCompression Unsigned 32-bit integer DataProtocolCapability/v76wCompression/transmitAndReceiveCompression
h245.transmitAudioCapability transmitAudioCapability Unsigned 32-bit integer Capability/transmitAudioCapability
h245.transmitCompression transmitCompression Unsigned 32-bit integer DataProtocolCapability/v76wCompression/transmitCompression
h245.transmitDataApplicationCapability transmitDataApplicationCapability No value Capability/transmitDataApplicationCapability
h245.transmitMultiplexedStreamCapability transmitMultiplexedStreamCapability No value Capability/transmitMultiplexedStreamCapability
h245.transmitMultipointCapability transmitMultipointCapability No value H2250Capability/transmitMultipointCapability
h245.transmitUserInputCapability transmitUserInputCapability Unsigned 32-bit integer Capability/transmitUserInputCapability
h245.transmitVideoCapability transmitVideoCapability Unsigned 32-bit integer Capability/transmitVideoCapability
h245.transparencyParameters transparencyParameters No value H263Options/transparencyParameters
h245.transparent transparent No value DataProtocolCapability/transparent
h245.transport transport Unsigned 32-bit integer GenericCapability/transport
h245.transportCapability transportCapability No value
h245.transportStream transportStream Boolean VCCapability/transportStream
h245.transportWithI_frames transportWithI-frames Boolean H223Capability/transportWithI-frames
h245.tsapIdentifier tsapIdentifier Unsigned 32-bit integer UnicastAddress/iPAddress/tsapIdentifier
h245.twoChannelDual twoChannelDual No value
h245.twoChannelStereo twoChannelStereo No value
h245.twoChannels twoChannels Boolean
h245.twoOctetAddressFieldCapability twoOctetAddressFieldCapability Boolean V76Capability/twoOctetAddressFieldCapability
h245.type type Unsigned 32-bit integer VCCapability/availableBitRates/type
h245.typeIArq typeIArq No value ArqType/typeIArq
h245.typeIIArq typeIIArq No value ArqType/typeIIArq
h245.uIH uIH Boolean V76LogicalChannelParameters/uIH
h245.uNERM uNERM No value V76LogicalChannelParameters/mode/uNERM
h245.udp udp No value DataProtocolCapability/udp
h245.uihCapability uihCapability Boolean V76Capability/uihCapability
h245.undefinedReason undefinedReason No value LogicalChannelRateRejectReason/undefinedReason
h245.undefinedTableEntryUsed undefinedTableEntryUsed No value TerminalCapabilitySetReject/cause/undefinedTableEntryUsed
h245.unframed unframed No value H223AL1MParameters/transferMode/unframed
h245.unicast unicast No value NetworkAccessParameters/distribution/unicast
h245.unicastAddress unicastAddress Unsigned 32-bit integer TransportAddress/unicastAddress
h245.unknown unknown No value
h245.unknownDataType unknownDataType No value OpenLogicalChannelReject/cause/unknownDataType
h245.unknownFunction unknownFunction No value FunctionNotSupported/cause/unknownFunction
h245.unlimitedMotionVectors unlimitedMotionVectors Boolean
h245.unrestrictedVector unrestrictedVector Boolean
h245.unsigned32Max unsigned32Max Unsigned 32-bit integer ParameterValue/unsigned32Max
h245.unsigned32Min unsigned32Min Unsigned 32-bit integer ParameterValue/unsigned32Min
h245.unsignedMax unsignedMax Unsigned 32-bit integer ParameterValue/unsignedMax
h245.unsignedMin unsignedMin Unsigned 32-bit integer ParameterValue/unsignedMin
h245.unspecified unspecified No value
h245.unspecifiedCause unspecifiedCause No value
h245.unsuitableReverseParameters unsuitableReverseParameters No value OpenLogicalChannelReject/cause/unsuitableReverseParameters
h245.untilClosingFlag untilClosingFlag No value MultiplexElement/repeatCount/untilClosingFlag
h245.user user No value CloseLogicalChannel/source/user
h245.userData userData Unsigned 32-bit integer
h245.userInput userInput Unsigned 32-bit integer IndicationMessage/userInput
h245.userInputSupportIndication userInputSupportIndication Unsigned 32-bit integer UserInputIndication/userInputSupportIndication
h245.userRejected userRejected No value MultilinkResponse/addConnection/responseCode/rejected/userRejected
h245.uuid uuid Byte array
h245.v120 v120 No value DataProtocolCapability/v120
h245.v140 v140 No value EndSessionCommand/isdnOptions/v140
h245.v14buffered v14buffered No value DataProtocolCapability/v14buffered
h245.v34DSVD v34DSVD No value EndSessionCommand/gstnOptions/v34DSVD
h245.v34DuplexFAX v34DuplexFAX No value EndSessionCommand/gstnOptions/v34DuplexFAX
h245.v34H324 v34H324 No value EndSessionCommand/gstnOptions/v34H324
h245.v42bis v42bis No value CompressionType/v42bis
h245.v42lapm v42lapm No value DataProtocolCapability/v42lapm
h245.v75Capability v75Capability No value V76Capability/v75Capability
h245.v75Parameters v75Parameters No value V76LogicalChannelParameters/v75Parameters
h245.v76Capability v76Capability No value MultiplexCapability/v76Capability
h245.v76LogicalChannelParameters v76LogicalChannelParameters No value
h245.v76ModeParameters v76ModeParameters Unsigned 32-bit integer ModeElement/v76ModeParameters
h245.v76wCompression v76wCompression Unsigned 32-bit integer DataProtocolCapability/v76wCompression
h245.v8bis v8bis No value EndSessionCommand/gstnOptions/v8bis
h245.value value Byte array Criteria/value
h245.variable_delta variable-delta Boolean MediaTransportType/atm-AAL5-compressed/variable-delta
h245.vbd vbd No value AudioCapability/vbd
h245.vbvBufferSize vbvBufferSize Unsigned 32-bit integer
h245.vcCapability vcCapability No value H222Capability/vcCapability
h245.vcCapability_item Item No value H222Capability/vcCapability/_item
h245.vendor vendor Unsigned 32-bit integer VendorIdentification/vendor
h245.vendorIdentification vendorIdentification No value IndicationMessage/vendorIdentification
h245.version version Unsigned 32-bit integer T38FaxProfile/version
h245.versionNumber versionNumber Byte array VendorIdentification/versionNumber
h245.videoBackChannelSend videoBackChannelSend Unsigned 32-bit integer RefPictureSelection/videoBackChannelSend
h245.videoBadMBs videoBadMBs No value MiscellaneousCommand/type/videoBadMBs
h245.videoBadMBsCap videoBadMBsCap Boolean
h245.videoBitRate videoBitRate Unsigned 32-bit integer
h245.videoCapability videoCapability No value ExtendedVideoCapability/videoCapability
h245.videoCapabilityExtension videoCapabilityExtension No value ExtendedVideoCapability/videoCapabilityExtension
h245.videoCapabilityExtension_item Item No value ExtendedVideoCapability/videoCapabilityExtension/_item
h245.videoCapability_item Item Unsigned 32-bit integer ExtendedVideoCapability/videoCapability/_item
h245.videoCommandReject videoCommandReject No value ConferenceResponse/videoCommandReject
h245.videoData videoData Unsigned 32-bit integer
h245.videoFastUpdateGOB videoFastUpdateGOB No value MiscellaneousCommand/type/videoFastUpdateGOB
h245.videoFastUpdateMB videoFastUpdateMB No value MiscellaneousCommand/type/videoFastUpdateMB
h245.videoFastUpdatePicture videoFastUpdatePicture No value MiscellaneousCommand/type/videoFastUpdatePicture
h245.videoFreezePicture videoFreezePicture No value MiscellaneousCommand/type/videoFreezePicture
h245.videoIndicateCompose videoIndicateCompose No value ConferenceIndication/videoIndicateCompose
h245.videoIndicateMixingCapability videoIndicateMixingCapability Boolean ConferenceCapability/videoIndicateMixingCapability
h245.videoIndicateReadyToActivate videoIndicateReadyToActivate No value MiscellaneousIndication/type/videoIndicateReadyToActivate
h245.videoMode videoMode Unsigned 32-bit integer
h245.videoMux videoMux Boolean RefPictureSelection/videoMux
h245.videoNotDecodedMBs videoNotDecodedMBs No value MiscellaneousIndication/type/videoNotDecodedMBs
h245.videoSegmentTagging videoSegmentTagging Boolean H263Options/videoSegmentTagging
h245.videoSendSyncEveryGOB videoSendSyncEveryGOB No value MiscellaneousCommand/type/videoSendSyncEveryGOB
h245.videoSendSyncEveryGOBCancel videoSendSyncEveryGOBCancel No value MiscellaneousCommand/type/videoSendSyncEveryGOBCancel
h245.videoTemporalSpatialTradeOff videoTemporalSpatialTradeOff Unsigned 32-bit integer
h245.videoWithAL1 videoWithAL1 Boolean H223Capability/videoWithAL1
h245.videoWithAL1M videoWithAL1M Boolean H223AnnexCCapability/videoWithAL1M
h245.videoWithAL2 videoWithAL2 Boolean H223Capability/videoWithAL2
h245.videoWithAL2M videoWithAL2M Boolean H223AnnexCCapability/videoWithAL2M
h245.videoWithAL3 videoWithAL3 Boolean H223Capability/videoWithAL3
h245.videoWithAL3M videoWithAL3M Boolean H223AnnexCCapability/videoWithAL3M
h245.waitForCall waitForCall No value NetworkAccessParameters/t120SetupProcedure/waitForCall
h245.waitForCommunicationMode waitForCommunicationMode No value OpenLogicalChannelReject/cause/waitForCommunicationMode
h245.wholeMultiplex wholeMultiplex No value Scope/wholeMultiplex
h245.width width Unsigned 32-bit integer CustomPictureFormat/pixelAspectInformation/extendedPAR/_item/width
h245.willTransmitLessPreferredMode willTransmitLessPreferredMode No value RequestModeAck/response/willTransmitLessPreferredMode
h245.willTransmitMostPreferredMode willTransmitMostPreferredMode No value RequestModeAck/response/willTransmitMostPreferredMode
h245.windowSize windowSize Unsigned 32-bit integer V76LogicalChannelParameters/mode/eRM/windowSize
h245.withdrawChairToken withdrawChairToken No value ConferenceIndication/withdrawChairToken
h245.zeroDelay zeroDelay No value MiscellaneousCommand/type/zeroDelay
h450.ExtensionArg_item Item Unsigned 32-bit integer ExtensionArg/_item
h450.ExtensionSeq_item Item No value ExtensionSeq/_item
h450.IntResultList_item Item No value IntResultList/_item
h450.MWIInterrogateRes_item Item No value MWIInterrogateRes/_item
h450.MwiDummyRes_item Item Unsigned 32-bit integer MwiDummyRes/_item
h450.activatingUserNr activatingUserNr No value ActivateDiversionQArg/activatingUserNr
h450.anyEntity anyEntity No value EntityType/anyEntity
h450.argumentExtension argumentExtension Unsigned 32-bit integer CTInitiateArg/argumentExtension
h450.argumentExtension_item Item Unsigned 32-bit integer
h450.basicCallInfoElements basicCallInfoElements Byte array
h450.basicService basicService Unsigned 32-bit integer
h450.callForceReleased callForceReleased No value CIStatusInformation/callForceReleased
h450.callIdentity callIdentity String
h450.callIntruded callIntruded No value CIStatusInformation/callIntruded
h450.callIntrusionComplete callIntrusionComplete No value CIStatusInformation/callIntrusionComplete
h450.callIntrusionEnd callIntrusionEnd No value CIStatusInformation/callIntrusionEnd
h450.callIntrusionImpending callIntrusionImpending No value CIStatusInformation/callIntrusionImpending
h450.callIsolated callIsolated No value CIStatusInformation/callIsolated
h450.callPickupId callPickupId No value
h450.callStatus callStatus Unsigned 32-bit integer CTCompleteArg/callStatus
h450.callbackReq callbackReq Boolean
h450.calledAddress calledAddress No value CallReroutingArg/calledAddress
h450.callingInfo callingInfo String
h450.callingNr callingNr No value DivertingLegInformation4Arg/callingNr
h450.callingNumber callingNumber No value CallReroutingArg/callingNumber
h450.callingPartySubaddress callingPartySubaddress Unsigned 32-bit integer CallReroutingArg/callingPartySubaddress
h450.can_retain_service can-retain-service Boolean CcRequestArg/can-retain-service
h450.ccIdentifier ccIdentifier No value
h450.ciCapabilityLevel ciCapabilityLevel Unsigned 32-bit integer
h450.ciProtectionLevel ciProtectionLevel Unsigned 32-bit integer CIGetCIPLRes/ciProtectionLevel
h450.ciStatusInformation ciStatusInformation Unsigned 32-bit integer
h450.clearCallIfAnyInvokePduNotRecognized clearCallIfAnyInvokePduNotRecognized No value InterpretationApdu/clearCallIfAnyInvokePduNotRecognized
h450.connectedAddress connectedAddress No value CTActiveArg/connectedAddress
h450.connectedInfo connectedInfo String CTActiveArg/connectedInfo
h450.deactivatingUserNr deactivatingUserNr No value DeactivateDiversionQArg/deactivatingUserNr
h450.destinationAddress destinationAddress No value EndpointAddress/destinationAddress
h450.destinationAddressPresentationIndicator destinationAddressPresentationIndicator Unsigned 32-bit integer EndpointAddress/destinationAddressPresentationIndicator
h450.destinationAddressScreeningIndicator destinationAddressScreeningIndicator Unsigned 32-bit integer EndpointAddress/destinationAddressScreeningIndicator
h450.destinationAddress_item Item Unsigned 32-bit integer EndpointAddress/destinationAddress/_item
h450.destinationEntity destinationEntity Unsigned 32-bit integer NetworkFacilityExtension/destinationEntity
h450.destinationEntityAddress destinationEntityAddress Unsigned 32-bit integer NetworkFacilityExtension/destinationEntityAddress
h450.discardAnyUnrecognizedInvokePdu discardAnyUnrecognizedInvokePdu No value InterpretationApdu/discardAnyUnrecognizedInvokePdu
h450.diversionCounter diversionCounter Unsigned 32-bit integer
h450.diversionReason diversionReason Unsigned 32-bit integer
h450.divertedToAddress divertedToAddress No value
h450.divertedToNr divertedToNr No value CheckRestrictionArg/divertedToNr
h450.divertingNr divertingNr No value DivertingLegInformation2Arg/divertingNr
h450.endDesignation endDesignation Unsigned 32-bit integer CTCompleteArg/endDesignation
h450.endpoint endpoint No value EntityType/endpoint
h450.extendedName extendedName String
h450.extension extension Unsigned 32-bit integer ActivateDiversionQArg/extension
h450.extensionArg extensionArg No value HoldNotificArg/extensionArg
h450.extensionArg_item Item Unsigned 32-bit integer
h450.extensionArgument extensionArgument Byte array Extension/extensionArgument
h450.extensionId extensionId String Extension/extensionId
h450.extensionRes extensionRes No value
h450.extensionRes_item Item Unsigned 32-bit integer
h450.extensionSeq extensionSeq No value
h450.extension_item Item Unsigned 32-bit integer
h450.featureControl featureControl No value CmnArg/featureControl
h450.featureList featureList No value CmnArg/featureList
h450.featureValues featureValues No value CmnArg/featureValues
h450.groupMemberUserNr groupMemberUserNr No value
h450.h225InfoElement h225InfoElement Byte array CallReroutingArg/h225InfoElement
h450.integer integer Unsigned 32-bit integer MsgCentreId/integer
h450.interpretationApdu interpretationApdu Unsigned 32-bit integer H4501SupplementaryService/interpretationApdu
h450.interrogatingUserNr interrogatingUserNr No value InterrogateDiversionQ/interrogatingUserNr
h450.lastReroutingNr lastReroutingNr No value CallReroutingArg/lastReroutingNr
h450.longArg longArg No value CcArg/longArg
h450.msgCentreId msgCentreId Unsigned 32-bit integer
h450.mwipartyNumber mwipartyNumber No value MsgCentreId/mwipartyNumber
h450.name name Unsigned 32-bit integer NameArg/name
h450.nameNotAvailable nameNotAvailable No value Name/nameNotAvailable
h450.namePresentationAllowed namePresentationAllowed Unsigned 32-bit integer Name/namePresentationAllowed
h450.namePresentationRestricted namePresentationRestricted Unsigned 32-bit integer Name/namePresentationRestricted
h450.nbOfAddWaitingCalls nbOfAddWaitingCalls Unsigned 32-bit integer CallWaitingArg/nbOfAddWaitingCalls
h450.nbOfMessages nbOfMessages Unsigned 32-bit integer
h450.networkFacilityExtension networkFacilityExtension No value H4501SupplementaryService/networkFacilityExtension
h450.nominatedInfo nominatedInfo String
h450.nominatedNr nominatedNr No value
h450.nonStandard nonStandard No value Unspecified/nonStandard
h450.nonStandardData nonStandardData No value
h450.nsapSubaddress nsapSubaddress Byte array PartySubaddress/nsapSubaddress
h450.numberA numberA No value
h450.numberB numberB No value
h450.numberNotAvailableDueToInterworking numberNotAvailableDueToInterworking No value
h450.numericString numericString String MsgCentreId/numericString
h450.oddCountIndicator oddCountIndicator Boolean UserSpecifiedSubaddress/oddCountIndicator
h450.originalCalledInfo originalCalledInfo String
h450.originalCalledNr originalCalledNr No value
h450.originalDiversionReason originalDiversionReason Unsigned 32-bit integer DivertingLegInformation2Arg/originalDiversionReason
h450.originalReroutingReason originalReroutingReason Unsigned 32-bit integer CallReroutingArg/originalReroutingReason
h450.originatingNr originatingNr No value
h450.parkCondition parkCondition Unsigned 32-bit integer
h450.parkPosition parkPosition Unsigned 32-bit integer
h450.parkedNumber parkedNumber No value
h450.parkedToNumber parkedToNumber No value
h450.parkedToPosition parkedToPosition Unsigned 32-bit integer
h450.parkingNumber parkingNumber No value
h450.partyCategory partyCategory Unsigned 32-bit integer FeatureValues/partyCategory
h450.partyNumber partyNumber Unsigned 32-bit integer
h450.partySubaddress partySubaddress Unsigned 32-bit integer
h450.partyToRetrieve partyToRetrieve No value
h450.picking_upNumber picking-upNumber No value
h450.presentationAllowedAddress presentationAllowedAddress No value PresentedAddressScreened/presentationAllowedAddress
h450.presentationAllowedIndicator presentationAllowedIndicator Boolean DivertingLegInformation3Arg/presentationAllowedIndicator
h450.presentationRestricted presentationRestricted No value
h450.presentationRestrictedAddress presentationRestrictedAddress No value PresentedAddressScreened/presentationRestrictedAddress
h450.priority priority Unsigned 32-bit integer
h450.procedure procedure Unsigned 32-bit integer
h450.redirectingInfo redirectingInfo String
h450.redirectingNr redirectingNr No value DivertingLegInformation1Arg/redirectingNr
h450.redirectionInfo redirectionInfo String
h450.redirectionNr redirectionNr No value DivertingLegInformation3Arg/redirectionNr
h450.redirectionNumber redirectionNumber No value
h450.redirectionSubaddress redirectionSubaddress Unsigned 32-bit integer SubaddressTransferArg/redirectionSubaddress
h450.rejectAnyUnrecognizedInvokePdu rejectAnyUnrecognizedInvokePdu No value InterpretationApdu/rejectAnyUnrecognizedInvokePdu
h450.remoteEnabled remoteEnabled Boolean IntResult/remoteEnabled
h450.remoteExtensionAddress remoteExtensionAddress Unsigned 32-bit integer EndpointAddress/remoteExtensionAddress
h450.remoteExtensionAddressPresentationIndicator remoteExtensionAddressPresentationIndicator Unsigned 32-bit integer EndpointAddress/remoteExtensionAddressPresentationIndicator
h450.remoteExtensionAddressScreeningIndicator remoteExtensionAddressScreeningIndicator Unsigned 32-bit integer EndpointAddress/remoteExtensionAddressScreeningIndicator
h450.reroutingNumber reroutingNumber No value
h450.reroutingReason reroutingReason Unsigned 32-bit integer CallReroutingArg/reroutingReason
h450.restrictedNull restrictedNull No value NamePresentationRestricted/restrictedNull
h450.resultExtension resultExtension Unsigned 32-bit integer CTIdentifyRes/resultExtension
h450.resultExtension_item Item Unsigned 32-bit integer
h450.retain_service retain-service Boolean CcRequestRes/retain-service
h450.retain_sig_connection retain-sig-connection Boolean CcRequestArg/retain-sig-connection
h450.retrieveAddress retrieveAddress No value
h450.retrieveCallType retrieveCallType Unsigned 32-bit integer GroupIndicationOnArg/retrieveCallType
h450.rosApdus rosApdus No value ServiceApdus/rosApdus
h450.rosApdus_item Item No value ServiceApdus/rosApdus/_item
h450.screeningIndicator screeningIndicator Unsigned 32-bit integer
h450.servedUserNr servedUserNr No value
h450.service service Unsigned 32-bit integer
h450.serviceApdu serviceApdu Unsigned 32-bit integer H4501SupplementaryService/serviceApdu
h450.shortArg shortArg No value CcArg/shortArg
h450.silentMonitoringPermitted silentMonitoringPermitted No value CIGetCIPLRes/silentMonitoringPermitted
h450.simpleName simpleName Byte array
h450.sourceEntity sourceEntity Unsigned 32-bit integer NetworkFacilityExtension/sourceEntity
h450.sourceEntityAddress sourceEntityAddress Unsigned 32-bit integer NetworkFacilityExtension/sourceEntityAddress
h450.specificCall specificCall No value CISilentArg/specificCall
h450.ssCCBSPossible ssCCBSPossible No value FeatureList/ssCCBSPossible
h450.ssCCNRPossible ssCCNRPossible No value FeatureList/ssCCNRPossible
h450.ssCFreRoutingSupported ssCFreRoutingSupported No value FeatureList/ssCFreRoutingSupported
h450.ssCHDoNotHold ssCHDoNotHold No value FeatureControl/ssCHDoNotHold
h450.ssCHFarHoldSupported ssCHFarHoldSupported No value FeatureList/ssCHFarHoldSupported
h450.ssCIConferenceSupported ssCIConferenceSupported No value FeatureList/ssCIConferenceSupported
h450.ssCIForcedReleaseSupported ssCIForcedReleaseSupported No value FeatureList/ssCIForcedReleaseSupported
h450.ssCIIsolationSupported ssCIIsolationSupported No value FeatureList/ssCIIsolationSupported
h450.ssCISilentMonitorPermitted ssCISilentMonitorPermitted No value FeatureControl/ssCISilentMonitorPermitted
h450.ssCISilentMonitoringSupported ssCISilentMonitoringSupported No value FeatureList/ssCISilentMonitoringSupported
h450.ssCIWaitOnBusySupported ssCIWaitOnBusySupported No value FeatureList/ssCIWaitOnBusySupported
h450.ssCIprotectionLevel ssCIprotectionLevel Unsigned 32-bit integer FeatureValues/ssCIprotectionLevel
h450.ssCOSupported ssCOSupported No value FeatureList/ssCOSupported
h450.ssCPCallParkSupported ssCPCallParkSupported No value FeatureList/ssCPCallParkSupported
h450.ssCTDoNotTransfer ssCTDoNotTransfer No value FeatureControl/ssCTDoNotTransfer
h450.ssCTreRoutingSupported ssCTreRoutingSupported No value FeatureList/ssCTreRoutingSupported
h450.ssMWICallbackCall ssMWICallbackCall No value FeatureControl/ssMWICallbackCall
h450.ssMWICallbackSupported ssMWICallbackSupported No value FeatureList/ssMWICallbackSupported
h450.subaddressInformation subaddressInformation Byte array UserSpecifiedSubaddress/subaddressInformation
h450.subscriptionOption subscriptionOption Unsigned 32-bit integer
h450.timestamp timestamp String
h450.transferringNumber transferringNumber No value CTSetupArg/transferringNumber
h450.userSpecifiedSubaddress userSpecifiedSubaddress No value PartySubaddress/userSpecifiedSubaddress
h4501.GeneralProblem GeneralProblem Unsigned 32-bit integer GeneralProblem
h4501.Invoke Invoke No value Invoke sequence of
h4501.InvokeProblem InvokeProblem Unsigned 32-bit integer InvokeProblem
h4501.ROS ROS Unsigned 32-bit integer ROS choice
h4501.Reject Reject No value Reject sequence of
h4501.ReturnError ReturnError No value ReturnError sequence of
h4501.ReturnErrorProblem ReturnErrorProblem Unsigned 32-bit integer ReturnErrorProblem
h4501.ReturnResult ReturnResult No value ReturnResult sequence of
h4501.ReturnResult.result result Byte array result
h4501.ReturnResultProblem ReturnResultProblem Unsigned 32-bit integer ReturnResultProblem
h4501.SupplementaryService SupplementaryService No value SupplementaryService sequence
h4501.argument argument Byte array argument
h4501.errorCode errorCode Signed 32-bit integer local
h4501.global global String global
h4501.invokeId invokeId Unsigned 32-bit integer invokeId
h4501.opcode opcode Signed 32-bit integer local
h4501.parameter parameter Byte array parameter
h4501.problem problem Unsigned 32-bit integer problem choice
h4501.result result No value result sequence of
h4502.CTActiveArg CTActiveArg No value CTActiveArg sequence of
h4502.CTCompleteArg CTCompleteArg No value CTCompleteArg sequence of
h4502.CTIdentifyRes CTIdentifyRes No value CTIdentifyRes sequence of
h4502.CTInitiateArg CTInitiateArg No value CTInitiateArg sequence of
h4502.CTSetupArg CTSetupArg No value CTSetupArg sequence of
h4502.CTUpdateArg CTUpdateArg No value CTUpdateArg sequence of
h4502.DummyArg DummyArg Unsigned 32-bit integer DummyArg choice
h4502.DummyRes DummyRes Unsigned 32-bit integer DummyRes Choice
h4502.SubaddressTransferArg SubaddressTransferArg No value SubaddressTransferArg sequence of
h4503.ActivateDiversionQArg ActivateDiversionQArg No value ActivateDiversionQArg sequence of
h4503.CallReroutingArg CallReroutingArg No value ActivateDiversionQArg sequence of
h4503.CfnrDivertedLegFailedArg CfnrDivertedLegFailedArg No value ActivateDiversionQArg sequence of
h4503.CheckRestrictionArg CheckRestrictionArg No value CheckRestrictionArg sequence of
h4503.DeactivateDiversionQArg DeactivateDiversionQArg No value ActivateDiversionQArg sequence of
h4503.DivertingLegInformation1Arg DivertingLegInformation1Arg No value DivertingLegInformation1Arg sequence of
h4503.DivertingLegInformation2Arg DivertingLegInformation2Arg No value DivertingLegInformation1Arg sequence of
h4503.DivertingLegInformation3Arg DivertingLegInformation3Arg No value DivertingLegInformation1Arg sequence of
h4503.DivertingLegInformation4Arg DivertingLegInformation4Arg No value DivertingLegInformation4Arg sequence of
h4503.InterrogateDiversionQ InterrogateDiversionQ No value InterrogateDiversionQ sequence of
h4504.HoldNotificArg HoldNotificArg No value HoldNotificArg sequence of
h4504.RemoteHoldArg RemoteHoldArg No value RemoteHoldArg sequence of
h4504.RemoteRetrieveArg RemoteRetrieveArg No value RemoteRetrieveArg sequence of
h4504.RemoteRetrieveRes RemoteRetrieveRes No value RemoteRetrieveRes sequence of
h4504.RetrieveNotificArg RetrieveNotificArg No value RetrieveNotificArg sequence of
h4507.MWIActivateArg MWIActivateArg No value MWIActivateArg sequence of
h4507.MWIDeactivateArg MWIDeactivateArg No value MWIDeactivateArg sequence of
h4507.MWIInterrogateArg MWIInterrogateArg No value MWIInterrogateArg sequence of
h4507.MWIInterrogateRes MWIInterrogateRes No value MWIInterrogateRes sequence of
h4507.MwiDummyRes MwiDummyRes No value MwiDummyRes sequence of
h4508.AlertingNameArg AlertingNameArg No value AlertingNameArg sequence of
h4508.BusyNameArg BusyNameArg No value BusyNameArg sequence of
h4508.CallingNameArg CallingNameArg No value CallingNameArg sequence of
h4508.ConnectedNameArg ConnectedNameArg No value ConnectedNameArg sequence of
iscsi.I I Boolean Immediate delivery
iscsi.X X Boolean Command Retry
iscsi.ahs AHS Byte array Additional header segment
iscsi.asyncevent AsyncEvent Unsigned 8-bit integer Async event type
iscsi.asyncmessagedata AsyncMessageData Byte array Async Message Data
iscsi.bufferOffset BufferOffset Unsigned 32-bit integer Buffer offset
iscsi.cid CID Unsigned 16-bit integer Connection identifier
iscsi.cmdsn CmdSN Unsigned 32-bit integer Sequence number for this command
iscsi.data_in_frame Data In in Frame number The Data In for this transaction is in this frame
iscsi.data_out_frame Data Out in Frame number The Data Out for this transaction is in this frame
iscsi.datadigest DataDigest Byte array Data Digest
iscsi.datadigest32 DataDigest Unsigned 32-bit integer Data Digest
iscsi.datasegmentlength DataSegmentLength Unsigned 32-bit integer Data segment length (bytes)
iscsi.datasn DataSN Unsigned 32-bit integer Data sequence number
iscsi.desireddatalength DesiredDataLength Unsigned 32-bit integer Desired data length (bytes)
iscsi.errorpdudata ErrorPDUData Byte array Error PDU Data
iscsi.eventvendorcode EventVendorCode Unsigned 8-bit integer Event vendor code
iscsi.expcmdsn ExpCmdSN Unsigned 32-bit integer Next expected command sequence number
iscsi.expdatasn ExpDataSN Unsigned 32-bit integer Next expected data sequence number
iscsi.expstatsn ExpStatSN Unsigned 32-bit integer Next expected status sequence number
iscsi.flags Flags Unsigned 8-bit integer Opcode specific flags
iscsi.headerdigest32 HeaderDigest Unsigned 32-bit integer Header Digest
iscsi.immediatedata ImmediateData Byte array Immediate Data
iscsi.initcmdsn InitCmdSN Unsigned 32-bit integer Initial command sequence number
iscsi.initiatortasktag InitiatorTaskTag Unsigned 32-bit integer Initiator's task tag
iscsi.initstatsn InitStatSN Unsigned 32-bit integer Initial status sequence number
iscsi.isid ISID Unsigned 16-bit integer Initiator part of session identifier
iscsi.isid.a ISID_a Unsigned 8-bit integer Initiator part of session identifier - a
iscsi.isid.b ISID_b Unsigned 16-bit integer Initiator part of session identifier - b
iscsi.isid.c ISID_c Unsigned 8-bit integer Initiator part of session identifier - c
iscsi.isid.d ISID_d Unsigned 16-bit integer Initiator part of session identifier - d
iscsi.isid.namingauthority ISID_NamingAuthority Unsigned 24-bit integer Initiator part of session identifier - naming authority
iscsi.isid.qualifier ISID_Qualifier Unsigned 8-bit integer Initiator part of session identifier - qualifier
iscsi.isid.t ISID_t Unsigned 8-bit integer Initiator part of session identifier - t
iscsi.isid.type ISID_Type Unsigned 8-bit integer Initiator part of session identifier - type
iscsi.keyvalue KeyValue String Key/value pair
iscsi.login.C C Boolean Text incomplete
iscsi.login.T T Boolean Transit to next login stage
iscsi.login.X X Boolean Restart Connection
iscsi.login.csg CSG Unsigned 8-bit integer Current stage
iscsi.login.nsg NSG Unsigned 8-bit integer Next stage
iscsi.login.status Status Unsigned 16-bit integer Status class and detail
iscsi.logout.reason Reason Unsigned 8-bit integer Reason for logout
iscsi.logout.response Response Unsigned 8-bit integer Logout response
iscsi.lun LUN Byte array Logical Unit Number
iscsi.maxcmdsn MaxCmdSN Unsigned 32-bit integer Maximum acceptable command sequence number
iscsi.opcode Opcode Unsigned 8-bit integer Opcode
iscsi.padding Padding Byte array Padding to 4 byte boundary
iscsi.parameter1 Parameter1 Unsigned 16-bit integer Parameter 1
iscsi.parameter2 Parameter2 Unsigned 16-bit integer Parameter 2
iscsi.parameter3 Parameter3 Unsigned 16-bit integer Parameter 3
iscsi.pingdata PingData Byte array Ping Data
iscsi.r2tsn R2TSN Unsigned 32-bit integer R2T PDU Number
iscsi.readdata ReadData Byte array Read Data
iscsi.refcmdsn RefCmdSN Unsigned 32-bit integer Command sequence number for command to be aborted
iscsi.reject.reason Reason Unsigned 8-bit integer Reason for command rejection
iscsi.request_frame Request in Frame number The request to this transaction is in this frame
iscsi.response_frame Response in Frame number The response to this transaction is in this frame
iscsi.scsicommand.F F Boolean PDU completes command
iscsi.scsicommand.R R Boolean Command reads from SCSI target
iscsi.scsicommand.W W Boolean Command writes to SCSI target
iscsi.scsicommand.addcdb AddCDB Unsigned 8-bit integer Additional CDB length (in 4 byte units)
iscsi.scsicommand.attr Attr Unsigned 8-bit integer SCSI task attributes
iscsi.scsicommand.crn CRN Unsigned 8-bit integer SCSI command reference number
iscsi.scsicommand.expecteddatatransferlength ExpectedDataTransferLength Unsigned 32-bit integer Expected length of data transfer
iscsi.scsidata.A A Boolean Acknowledge Requested
iscsi.scsidata.F F Boolean Final PDU
iscsi.scsidata.O O Boolean Residual overflow
iscsi.scsidata.S S Boolean PDU Contains SCSI command status
iscsi.scsidata.U U Boolean Residual underflow
iscsi.scsidata.readresidualcount ResidualCount Unsigned 32-bit integer Residual count
iscsi.scsiresponse.O O Boolean Residual overflow
iscsi.scsiresponse.U U Boolean Residual underflow
iscsi.scsiresponse.bidireadresidualcount BidiReadResidualCount Unsigned 32-bit integer Bi-directional read residual count
iscsi.scsiresponse.o o Boolean Bi-directional read residual overflow
iscsi.scsiresponse.residualcount ResidualCount Unsigned 32-bit integer Residual count
iscsi.scsiresponse.response Response Unsigned 8-bit integer SCSI command response value
iscsi.scsiresponse.senselength SenseLength Unsigned 16-bit integer Sense data length
iscsi.scsiresponse.status Status Unsigned 8-bit integer SCSI command status value
iscsi.scsiresponse.u u Boolean Bi-directional read residual underflow
iscsi.snack.begrun BegRun Unsigned 32-bit integer First missed DataSN or StatSN
iscsi.snack.runlength RunLength Unsigned 32-bit integer Number of additional missing status PDUs in this run
iscsi.snack.type S Unsigned 8-bit integer Type of SNACK requested
iscsi.statsn StatSN Unsigned 32-bit integer Status sequence number
iscsi.targettransfertag TargetTransferTag Unsigned 32-bit integer Target transfer tag
iscsi.taskmanfun.function Function Unsigned 8-bit integer Requested task function
iscsi.taskmanfun.referencedtasktag ReferencedTaskTag Unsigned 32-bit integer Referenced task tag
iscsi.taskmanfun.response Response Unsigned 8-bit integer Response
iscsi.text.C C Boolean Text incomplete
iscsi.text.F F Boolean Final PDU in text sequence
iscsi.time Time from request Time duration Time between the Command and the Response
iscsi.time2retain Time2Retain Unsigned 16-bit integer Time2Retain
iscsi.time2wait Time2Wait Unsigned 16-bit integer Time2Wait
iscsi.totalahslength TotalAHSLength Unsigned 8-bit integer Total additional header segment length (4 byte words)
iscsi.tsid TSID Unsigned 16-bit integer Target part of session identifier
iscsi.tsih TSIH Unsigned 16-bit integer Target session identifying handle
iscsi.vendorspecificdata VendorSpecificData Byte array Vendor Specific Data
iscsi.versionactive VersionActive Unsigned 8-bit integer Negotiated protocol version
iscsi.versionmax VersionMax Unsigned 8-bit integer Maximum supported protocol version
iscsi.versionmin VersionMin Unsigned 8-bit integer Minimum supported protocol version
iscsi.writedata WriteData Byte array Write Data
isns.PVer iSNSP Version Unsigned 16-bit integer iSNS Protocol Version
isns.assigned_id Assigned ID Unsigned 32-bit integer Assigned ID
isns.attr.len Attribute Length Unsigned 32-bit integer iSNS Attribute Length
isns.attr.tag Attribute Tag Unsigned 32-bit integer iSNS Attribute Tag
isns.dd.member_portal.ip_address DD Member Portal IP Address IPv6 address DD Member Portal IPv4/IPv6 Address
isns.dd.symbolic_name DD Symbolic Name String Symbolic name of this DD
isns.dd_id DD ID Unsigned 32-bit integer DD ID
isns.dd_member.iscsi_name DD Member iSCSI Name String DD Member iSCSI Name of device
isns.dd_member_portal_port DD Member Portal Port Unsigned 32-bit integer TCP/UDP DD Member Portal Port
isns.dd_set.symbolic_name DD Set Symbolic Name String Symbolic name of this DD Set
isns.dd_set_id DD Set ID Unsigned 32-bit integer DD Set ID
isns.dd_set_next_id DD Set Next ID Unsigned 32-bit integer DD Set Next ID
isns.delimiter Delimiter No value iSNS Delimiter
isns.entity.index Entity Index Unsigned 32-bit integer Entity Index
isns.entity.next_index Entity Next Index Unsigned 32-bit integer Next Entity Index
isns.entity_identifier Entity Identifier String Entity Identifier of this object
isns.entity_protocol Entity Protocol Unsigned 32-bit integer iSNS Entity Protocol
isns.errorcode ErrorCode Unsigned 32-bit integer iSNS Response Error Code
isns.esi_interval ESI Interval Unsigned 32-bit integer ESI Interval in Seconds
isns.esi_port ESI Port Unsigned 32-bit integer TCP/UDP ESI Port
isns.fabric_port_name Fabric Port Name Unsigned 64-bit integer Fabric Port Name
isns.fc4_descriptor FC4 Descriptor String FC4 Descriptor of this device
isns.fc_node_name_wwnn FC Node Name WWNN Unsigned 64-bit integer FC Node Name WWNN
isns.fc_port_name_wwpn FC Port Name WWPN Unsigned 64-bit integer FC Port Name WWPN
isns.flags Flags Unsigned 16-bit integer iSNS Flags
isns.flags.authentication_block Auth Boolean is iSNS Authentication Block present?
isns.flags.client Client Boolean iSNS Client
isns.flags.firstpdu First PDU Boolean iSNS First PDU
isns.flags.lastpdu Last PDU Boolean iSNS Last PDU
isns.flags.replace Replace Boolean iSNS Replace
isns.flags.server Server Boolean iSNS Server
isns.functionid Function ID Unsigned 16-bit integer iSNS Function ID
isns.hard_address Hard Address Unsigned 24-bit integer Hard Address
isns.heartbeat.address Heartbeat Address (ipv6) IPv6 address Server IPv6 Address
isns.heartbeat.counter Heartbeat counter Unsigned 32-bit integer Server Heartbeat Counter
isns.heartbeat.interval Heartbeat Interval (secs) Unsigned 32-bit integer Server Heartbeat interval
isns.heartbeat.tcpport Heartbeat TCP Port Unsigned 16-bit integer Server TCP Port
isns.heartbeat.udpport Heartbeat UDP Port Unsigned 16-bit integer Server UDP Port
isns.index DD ID Next ID Unsigned 32-bit integer DD ID Next ID
isns.iscsi.node_type iSCSI Node Type Unsigned 32-bit integer iSCSI Node Type
isns.iscsi_alias iSCSI Alias String iSCSI Alias of device
isns.iscsi_auth_method iSCSI Auth Method String Authentication Method required by this device
isns.iscsi_name iSCSI Name String iSCSI Name of device
isns.isnt.control Control Boolean Control
isns.isnt.initiator Initiator Boolean Initiator
isns.isnt.target Target Boolean Target
isns.member_fc_port_name Member FC Port Name Unsigned 32-bit integer Member FC Port Name
isns.member_iscsi_index Member iSCSI Index Unsigned 32-bit integer Member iSCSI Index
isns.member_portal_index Member Portal Index Unsigned 32-bit integer Member Portal Index
isns.mgmt.ip_address Management IP Address IPv6 address Management IPv4/IPv6 Address
isns.node.index Node Index Unsigned 32-bit integer Node Index
isns.node.ip_address Node IP Address IPv6 address Node IPv4/IPv6 Address
isns.node.next_index Node Next Index Unsigned 32-bit integer Node INext ndex
isns.node.symbolic_name Symbolic Node Name String Symbolic name of this node
isns.node_ipa Node IPA Unsigned 64-bit integer Node IPA
isns.not_decoded_yet Not Decoded Yet No value This tag is not yet decoded by ethereal
isns.payload Payload Byte array Payload
isns.pdulength PDU Length Unsigned 16-bit integer iSNS PDU Length
isns.permanent_port_name Permanent Port Name Unsigned 64-bit integer Permanent Port Name
isns.pg.portal_port PG Portal Port Unsigned 32-bit integer PG Portal TCP/UDP Port
isns.pg_index PG Index Unsigned 32-bit integer PG Index
isns.pg_iscsi_name PG iSCSI Name String PG iSCSI Name
isns.pg_next_index PG Next Index Unsigned 32-bit integer PG Next Index
isns.pg_portal.ip_address PG Portal IP Address IPv6 address PG Portal IPv4/IPv6 Address
isns.port.ip_address Port IP Address IPv6 address Port IPv4/IPv6 Address
isns.port.port_type Port Type Boolean Port Type
isns.port.symbolic_name Symbolic Port Name String Symbolic name of this port
isns.port_id Port ID Unsigned 24-bit integer Port ID
isns.portal.index Portal Index Unsigned 32-bit integer Portal Index
isns.portal.ip_address Portal IP Address IPv6 address Portal IPv4/IPv6 Address
isns.portal.next_index Portal Next Index Unsigned 32-bit integer Portal Next Index
isns.portal.symbolic_name Portal Symbolic Name String Symbolic name of this portal
isns.portal_group_tag PG Tag Unsigned 32-bit integer Portal Group Tag
isns.portal_port Portal Port Unsigned 32-bit integer TCP/UDP Portal Port
isns.preferred_id Preferred ID Unsigned 32-bit integer Preferred ID
isns.proxy_iscsi_name Proxy iSCSI Name String Proxy iSCSI Name
isns.psb Portal Security Bitmap Unsigned 32-bit integer Portal Security Bitmap
isns.psb.aggressive_mode Aggressive Mode Boolean Aggressive Mode
isns.psb.bitmap Bitmap Boolean Bitmap
isns.psb.ike_ipsec IKE/IPSec Boolean IKE/IPSec
isns.psb.main_mode Main Mode Boolean Main Mode
isns.psb.pfs PFS Boolean PFS
isns.psb.transport Transport Mode Boolean Transport Mode
isns.psb.tunnel Tunnel Mode Boolean Tunnel Mode Preferred
isns.registration_period Registration Period Unsigned 32-bit integer Registration Period in Seconds
isns.scn_bitmap iSCSI SCN Bitmap Unsigned 32-bit integer iSCSI SCN Bitmap
isns.scn_bitmap.dd_dds_member_added DD/DDS Member Added (Mgmt Reg/SCN only) Boolean DD/DDS Member Added (Mgmt Reg/SCN only)
isns.scn_bitmap.dd_dds_member_removed DD/DDS Member Removed (Mgmt Reg/SCN only) Boolean DD/DDS Member Removed (Mgmt Reg/SCN only)
isns.scn_bitmap.initiator_and_self_information_only Initiator And Self Information Only Boolean Initiator And Self Information Only
isns.scn_bitmap.management_registration_scn Management Registration/SCN Boolean Management Registration/SCN
isns.scn_bitmap.object_added Object Added Boolean Object Added
isns.scn_bitmap.object_removed Object Removed Boolean Object Removed
isns.scn_bitmap.object_updated Object Updated Boolean Object Updated
isns.scn_bitmap.target_and_self_information_only Target And Self Information Only Boolean Target And Self Information Only
isns.scn_port SCN Port Unsigned 32-bit integer TCP/UDP SCN Port
isns.sequenceid Sequence ID Unsigned 16-bit integer iSNS sequence ID
isns.switch_name Switch Name Unsigned 64-bit integer Switch Name
isns.timestamp Timestamp Unsigned 64-bit integer Timestamp in Seconds
isns.transactionid Transaction ID Unsigned 16-bit integer iSNS transaction ID
isns.virtual_fabric_id Virtual Fabric ID String Virtual fabric ID
isns.wwnn_token WWNN Token Unsigned 64-bit integer WWNN Token
The ethereal-filters manpage is part of the Ethereal distribution. The latest version of Ethereal can be found at http://www.ethereal.com.
Regular expressions in the ``matches'' operator are provided with libpcre, the Perl-Compatible Regular Expressions library: see http://www.pcre.org/.
This manpage does not describe the capture filter syntax, which is
different. See the tcpdump(8)
manpage for a description of capture
filters. Microsoft Windows versions use WinPcap from
http://winpcap.polito.it/ for which the capture filter syntax is described
in http://winpcap.polito.it/docs/man/html/group__language.html.
ethereal(1), tethereal(1), editcap(1), tcpdump(8), pcap(3)
See the list of authors in the Ethereal man page for a list of authors of that code.